Chromium Code Reviews| Index: chrome/browser/resources/help/help.css |
| diff --git a/chrome/browser/resources/help/help.css b/chrome/browser/resources/help/help.css |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a22326a80c054c91ba7f03c685d3c03c9898f77f |
| --- /dev/null |
| +++ b/chrome/browser/resources/help/help.css |
| @@ -0,0 +1,82 @@ |
| +body { |
| + -webkit-user-select: text; |
| +} |
| + |
| +h2 { |
| + color: rgb(48, 57, 66); |
| + font-size: 16px; |
| + font-weight: normal; |
| + margin-bottom: 3px; |
| +} |
| + |
| +#about-container { |
| + -webkit-box-align: center; |
| + display: -webkit-box; |
| +} |
| + |
| +#product-description { |
| + -webkit-margin-start: 10px; |
| +} |
| + |
| +#version-container { |
| + margin-top: 20px; |
| +} |
| + |
| +#update-status { |
| + vertical-align: middle; |
| +} |
| + |
| +#update-percentage { |
| + font-size: 90%; |
| + position: absolute; |
| +} |
| + |
| +#relaunch { |
| + margin-top: 5px; |
| + position: absolute; |
| +} |
| + |
| +#help-container { |
| + margin-top: 40px; |
| +} |
| + |
| +#update-percentage { |
| + -webkit-margin-start: 33px; |
| +} |
| + |
| +#get-help { |
| + -webkit-margin-end: 10px; |
| +} |
| + |
| +#version-container, |
| +#help-container { |
| + /* 32px icon + 10px margin-left to match #product-container */ |
| + -webkit-margin-start: 42px; |
| +} |
| + |
| +#product-container { |
| + line-height: 1.8em; |
| + margin-top: 200px; |
| +} |
| + |
| +#browser-version { |
| + font-size: 90%; |
| + margin-bottom: 5px; |
| +} |
| + |
| +#update-status-icon { |
| + background-repeat: no-repeat; |
| + display: inline-block; |
| + height: 17px; |
| + margin-right: 13px; |
| + vertical-align: middle; |
| + width: 17px; |
| +} |
| + |
| +#update-status-icon.available { |
| + 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.
|
| +} |
| + |
| +#update-status-icon.up-to-date { |
| + 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.
|
| +} |