 Chromium Code Reviews
 Chromium Code Reviews| OLD | NEW | 
|---|---|
| 1 /* Apps */ | 1 /* Apps */ | 
| 2 | 2 | 
| 3 #apps-section .app, | 3 #apps-section .app, | 
| 4 #apps-section .app[new=installed] { | 4 #apps-section .app[new=installed] { | 
| 5 -webkit-box-sizing: border-box; | 5 -webkit-box-sizing: border-box; | 
| 6 -webkit-perspective: 400; | 6 -webkit-perspective: 400; | 
| 7 border-radius: 10px; | 7 border-radius: 10px; | 
| 8 color: black; | 8 color: black; | 
| 9 display: inline-block; | 9 display: inline-block; | 
| 10 margin: 5px 3px; | 10 margin: 5px 3px; | 
| (...skipping 17 matching lines...) Expand all Loading... | |
| 28 .app > .back { | 28 .app > .back { | 
| 29 -webkit-backface-visibility: hidden; | 29 -webkit-backface-visibility: hidden; | 
| 30 -webkit-transition: -webkit-transform .15s; | 30 -webkit-transition: -webkit-transform .15s; | 
| 31 } | 31 } | 
| 32 | 32 | 
| 33 .app a { | 33 .app a { | 
| 34 -webkit-transition: background-color .5s; | 34 -webkit-transition: background-color .5s; | 
| 35 background: rgba(255, 255, 255, 0) /* transparent white */ | 35 background: rgba(255, 255, 255, 0) /* transparent white */ | 
| 36 no-repeat center 10px; | 36 no-repeat center 10px; | 
| 37 background-size: 96px 96px; | 37 background-size: 96px 96px; | 
| 38 font-weight: bold; | 38 font-family: Helvetica, Arial; | 
| 
arv (Not doing code reviews)
2010/08/31 20:33:57
In general it is better to only set the font-famil
 | |
| 39 font-size: 14px; | |
| 39 overflow: hidden; | 40 overflow: hidden; | 
| 40 padding: 111px 10px 10px; /* 10 + 96 + 5 */ | 41 padding: 111px 10px 10px; /* 10 + 96 + 5 */ | 
| 41 text-align: center; | 42 text-align: center; | 
| 42 text-decoration: none; | 43 text-decoration: none; | 
| 43 text-overflow: ellipsis; | 44 text-overflow: ellipsis; | 
| 44 white-space: nowrap; | 45 white-space: nowrap; | 
| 45 } | 46 } | 
| 46 | 47 | 
| 47 .app .flip { | 48 .app .flip { | 
| 48 background-color: transparent; | 49 background-color: transparent; | 
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 148 display: none; | 149 display: none; | 
| 149 } | 150 } | 
| 150 | 151 | 
| 151 html[has_3d=false] .app > .back { | 152 html[has_3d=false] .app > .back { | 
| 152 display: none; | 153 display: none; | 
| 153 } | 154 } | 
| 154 | 155 | 
| 155 html[has_3d=false] .app.config > .back { | 156 html[has_3d=false] .app.config > .back { | 
| 156 display: block; | 157 display: block; | 
| 157 } | 158 } | 
| OLD | NEW |