diff options
Diffstat (limited to 'chrome/browser/resources/options2/about_page.css')
-rw-r--r-- | chrome/browser/resources/options2/about_page.css | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/chrome/browser/resources/options2/about_page.css b/chrome/browser/resources/options2/about_page.css new file mode 100644 index 0000000..a64f9b8 --- /dev/null +++ b/chrome/browser/resources/options2/about_page.css @@ -0,0 +1,34 @@ +#aboutPage { + -webkit-user-select: text; +} + +.loading { + font-style: italic; +} + +#channelSelect { + margin-bottom: 5px; +} + +#channelWarning { + color: red; + font-weight: bold; +} + +.update-icon { + width: 17px; + height: 17px; + display: inline-block; + vertical-align: middle; + background-repeat: no-repeat; +} + +.update-icon.fail { + background-image: url('../../../app/theme/update_fail.png'); +} +.update-icon.available { + background-image: url('../../../app/theme/update_available.png'); +} +.update-icon.up-to-date { + background-image: url('../../../app/theme/update_uptodate.png'); +} |