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

Unified Diff: chrome/browser/resources/uber/uber_frame.css

Issue 9265020: [uber] make the navigation controls an iframe (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: opt = 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
« no previous file with comments | « chrome/browser/resources/uber/uber.js ('k') | chrome/browser/resources/uber/uber_frame.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/uber/uber_frame.css
diff --git a/chrome/browser/resources/uber/uber_frame.css b/chrome/browser/resources/uber/uber_frame.css
new file mode 100644
index 0000000000000000000000000000000000000000..ebeb5e65ed78cdaff718ded4d56ea50fff202756
--- /dev/null
+++ b/chrome/browser/resources/uber/uber_frame.css
@@ -0,0 +1,40 @@
+/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file. */
+
+body {
+ overflow: hidden;
+}
+
+h1 {
+ -webkit-margin-start: 23px;
+ color: rgb(92, 97, 102);
+}
+
+ol {
+ list-style-type: none;
+ padding: 0;
+}
+
+li {
+ -webkit-border-start: 6px solid white;
+ -webkit-padding-start: 18px;
+ color: #999;
+ cursor: pointer;
+ line-height: 17px;
+ margin: 5px 0;
+ text-transform: uppercase;
+}
+
+li:hover {
+ color: #777;
+}
+
+li.selected {
+ -webkit-border-start-color: rgb(78, 87, 100);
+ color: rgb(70, 78, 90);
+}
+
+#aboutPageNavItem {
+ margin-top: 27px;
+}
« no previous file with comments | « chrome/browser/resources/uber/uber.js ('k') | chrome/browser/resources/uber/uber_frame.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698