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

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: String fix. 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..d77316a6e26dad12658ae6797ee3fb2421c8118a
--- /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('chrome://theme/IDR_UPDATE_AVAILALBE');
+}
+
+#update-status-icon.up-to-date {
+ background-image: url('chrome://theme/IDR_UPDATE_UPTODATE');
+}

Powered by Google App Engine
This is Rietveld 408576698