Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 body { | |
| 2 -webkit-user-select: text; | |
| 3 } | |
| 4 | |
| 5 h2 { | |
| 6 color: rgb(48, 57, 66); | |
| 7 font-size: 16px; | |
| 8 font-weight: normal; | |
| 9 margin-bottom: 3px; | |
| 10 } | |
| 11 | |
| 12 #about-container { | |
| 13 -webkit-box-align: center; | |
| 14 display: -webkit-box; | |
| 15 } | |
| 16 | |
| 17 #product-description { | |
| 18 -webkit-margin-start: 10px; | |
| 19 } | |
| 20 | |
| 21 #version-container { | |
| 22 margin-top: 20px; | |
| 23 } | |
| 24 | |
| 25 #update-status { | |
| 26 vertical-align: middle; | |
| 27 } | |
| 28 | |
| 29 #update-percentage { | |
| 30 font-size: 90%; | |
| 31 position: absolute; | |
| 32 } | |
| 33 | |
| 34 #relaunch { | |
| 35 margin-top: 5px; | |
| 36 position: absolute; | |
| 37 } | |
| 38 | |
| 39 #help-container { | |
| 40 margin-top: 40px; | |
| 41 } | |
| 42 | |
| 43 #update-percentage { | |
| 44 -webkit-margin-start: 33px; | |
| 45 } | |
| 46 | |
| 47 #get-help { | |
| 48 -webkit-margin-end: 10px; | |
| 49 } | |
| 50 | |
| 51 #version-container, | |
| 52 #help-container { | |
| 53 /* 32px icon + 10px margin-left to match #product-container */ | |
| 54 -webkit-margin-start: 42px; | |
| 55 } | |
| 56 | |
| 57 #product-container { | |
| 58 line-height: 1.8em; | |
| 59 margin-top: 200px; | |
| 60 } | |
| 61 | |
| 62 #browser-version { | |
| 63 font-size: 90%; | |
| 64 margin-bottom: 5px; | |
| 65 } | |
| 66 | |
| 67 #update-status-icon { | |
| 68 background-repeat: no-repeat; | |
| 69 display: inline-block; | |
| 70 height: 17px; | |
| 71 margin-right: 13px; | |
| 72 vertical-align: middle; | |
| 73 width: 17px; | |
| 74 } | |
| 75 | |
| 76 #update-status-icon.available { | |
| 77 background-image: url('../../../app/theme/update_available.png'); | |
|
csilv
2012/02/03 19:43:52
chrome://theme/IDR_UPDATE_AVAILABLE
James Hawkins
2012/02/03 22:48:40
Done.
| |
| 78 } | |
| 79 | |
| 80 #update-status-icon.up-to-date { | |
| 81 background-image: url('../../../app/theme/update_uptodate.png'); | |
|
csilv
2012/02/03 19:43:52
chrome://theme/IDR_UPDATE_UPTODATE
James Hawkins
2012/02/03 22:48:40
Done.
| |
| 82 } | |
| OLD | NEW |