Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(282)

Unified Diff: chrome/browser/resources/help/help.css

Issue 9320056: Help: Implement the initial version of the cross-platform help/about page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove stale CSS. Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.
+}

Powered by Google App Engine
This is Rietveld 408576698