Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: example/todomvc/base.css

Issue 12474002: Support for parsing all CSS and producing one CSS file (Closed) Base URL: https://github.com/dart-lang/web-ui.git@master
Patch Set: bumped version Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | lib/src/analyzer.dart » ('j') | pubspec.yaml » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 html, 1 html,
2 body { 2 body {
3 margin: 0; 3 margin: 0;
4 padding: 0; 4 padding: 0;
5 } 5 }
6 6
7 button { 7 button {
8 margin: 0; 8 margin: 0;
9 padding: 0; 9 padding: 0;
10 border: 0; 10 border: 0;
11 background: none; 11 background: none;
12 font-size: 100%; 12 font-size: 100%;
13 vertical-align: baseline; 13 vertical-align: baseline;
14 font-family: inherit; 14 font-family: inherit;
15 color: inherit; 15 color: inherit;
16 -webkit-appearance: none; 16 -webkit-appearance: none;
17 /*-moz-appearance: none;*/ 17 /*-moz-appearance: none;*/
18 -ms-appearance: none; 18 -ms-appearance: none;
19 -o-appearance: none; 19 -o-appearance: none;
20 appearance: none; 20 appearance: none;
21 } 21 }
22 22
23 body { 23 body {
24 font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif; 24 font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif;
25 line-height: 1.4em; 25 line-height: 1.4em;
26 background: #eaeaea url('bg.png'); 26 background: #eaeaea url('bg.png');
27 color: #4d4d4d; 27 color: #4d4d4d;
28 width: 550px; 28 width: 550px;
29 margin: 0 auto; 29 margin: 0 auto;
30 -webkit-font-smoothing: antialiased; 30 -webkit-font-smoothing: antialiased;
31 -moz-font-smoothing: antialiased; 31 -moz-font-smoothing: antialiased;
32 -ms-font-smoothing: antialiased; 32 -ms-font-smoothing: antialiased;
33 -o-font-smoothing: antialiased; 33 -o-font-smoothing: antialiased;
34 font-smoothing: antialiased; 34 font-smoothing: antialiased;
35 } 35 }
36 36
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 top: -56px; 317 top: -56px;
318 left: -15px; 318 left: -15px;
319 width: 65px; 319 width: 65px;
320 height: 41px; 320 height: 41px;
321 -webkit-transform: rotate(90deg); 321 -webkit-transform: rotate(90deg);
322 transform: rotate(90deg); 322 transform: rotate(90deg);
323 -webkit-appearance: none; 323 -webkit-appearance: none;
324 appearance: none; 324 appearance: none;
325 } 325 }
326 } 326 }
OLDNEW
« no previous file with comments | « no previous file | lib/src/analyzer.dart » ('j') | pubspec.yaml » ('J')

Powered by Google App Engine
This is Rietveld 408576698