 Chromium Code Reviews
 Chromium Code Reviews Issue 158083002:
  introduce web_components pkg for consolidated polyfills  (Closed) 
  Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
    
  
    Issue 158083002:
  introduce web_components pkg for consolidated polyfills  (Closed) 
  Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart| OLD | NEW | 
|---|---|
| 1 /* base.css overrides */ | 1 /* base.css overrides */ | 
| 2 | 2 | 
| 3 html, | 3 html, | 
| 4 body { | 4 body { | 
| 5 margin: 0; | 5 margin: 0; | 
| 6 padding: 0; | 6 padding: 0; | 
| 7 } | 7 } | 
| 8 | 8 | 
| 9 body { | 9 body { | 
| 10 font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif; | 10 font: 14px 'Helvetica Neue', Helvetica, Arial, sans-serif; | 
| 11 line-height: 1.4em; | 11 line-height: 1.4em; | 
| 12 background: #eaeaea url('bg.png'); | 12 background: #eaeaea url('bg.png'); | 
| 13 color: #4d4d4d; | 13 color: #4d4d4d; | 
| 14 width: 550px; | 14 width: 550px; | 
| 15 margin: 0 auto; | 15 margin: 0 auto; | 
| 16 -webkit-font-smoothing: antialiased; | 16 -webkit-font-smoothing: antialiased; | 
| 17 -moz-font-smoothing: antialiased; | 17 -moz-font-smoothing: antialiased; | 
| 18 -ms-font-smoothing: antialiased; | 18 -ms-font-smoothing: antialiased; | 
| 19 -o-font-smoothing: antialiased; | 19 -o-font-smoothing: antialiased; | 
| 20 /* font-smoothing: antialiased; */ | 20 font-smoothing: antialiased; | 
| 
Jennifer Messerly
2014/02/08 01:13:29
I updated TodoMVC's CSS file
 
Siggi Cherem (dart-lang)
2014/02/10 20:49:23
why were we commenting these out? were we getting
 
Jennifer Messerly
2014/02/10 22:17:11
ah, probably! Still, that isn't a good reason :)
 | |
| 21 } | 21 } | 
| 22 | 22 | 
| 23 body > header { | 23 body > header { | 
| 24 padding-top: 22px; | 24 padding-top: 22px; | 
| 25 margin-bottom: -5px; | 25 margin-bottom: -5px; | 
| 26 } | 26 } | 
| 27 | 27 | 
| 28 h1 { | 28 h1 { | 
| 29 /* position: absolute; | 29 /* position: absolute; | 
| 30 top: -120px;*/ | 30 top: -120px;*/ | 
| 31 width: 100%; | 31 width: 100%; | 
| 32 font-size: 70px; | 32 font-size: 70px; | 
| 33 font-weight: bold; | 33 font-weight: bold; | 
| 34 text-align: center; | 34 text-align: center; | 
| 35 color: #b3b3b3; | 35 color: #b3b3b3; | 
| 36 color: rgba(255, 255, 255, 0.3); | 36 color: rgba(255, 255, 255, 0.3); | 
| 37 text-shadow: -1px -1px rgba(0, 0, 0, 0.2); | 37 text-shadow: -1px -1px rgba(0, 0, 0, 0.2); | 
| 38 /* -webkit-text-rendering: optimizeLegibility; */ | 38 -webkit-text-rendering: optimizeLegibility; | 
| 39 -moz-text-rendering: optimizeLegibility; | 39 -moz-text-rendering: optimizeLegibility; | 
| 40 -ms-text-rendering: optimizeLegibility; | 40 -ms-text-rendering: optimizeLegibility; | 
| 41 -o-text-rendering: optimizeLegibility; | 41 -o-text-rendering: optimizeLegibility; | 
| 42 text-rendering: optimizeLegibility; | 42 text-rendering: optimizeLegibility; | 
| 43 } | 43 } | 
| 44 | 44 | 
| 45 #info { | 45 #info { | 
| 46 margin: 65px auto 0; | 46 margin: 65px auto 0; | 
| 47 color: #a6a6a6; | 47 color: #a6a6a6; | 
| 48 font-size: 12px; | 48 font-size: 12px; | 
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 196 width: auto; | 196 width: auto; | 
| 197 margin: 0 0 0 300px; | 197 margin: 0 0 0 300px; | 
| 198 } | 198 } | 
| 199 /**body*/.learn-bar > .learn { | 199 /**body*/.learn-bar > .learn { | 
| 200 left: 8px; | 200 left: 8px; | 
| 201 } | 201 } | 
| 202 /**body*/.learn-bar #todoapp { | 202 /**body*/.learn-bar #todoapp { | 
| 203 width: 550px; | 203 width: 550px; | 
| 204 margin: 130px auto 40px auto; | 204 margin: 130px auto 40px auto; | 
| 205 } | 205 } | 
| 206 } | 206 } | 
| OLD | NEW |