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

Unified Diff: chrome/browser/resources/uber/uber.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/shared/js/jstemplate_compiled.js ('k') | chrome/browser/resources/uber/uber.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/uber/uber.css
diff --git a/chrome/browser/resources/uber/uber.css b/chrome/browser/resources/uber/uber.css
index 16e1a9827b0431a85c574be8b75b8b9a0dee25f0..f9f335cd8900b22dfdf62c32e3cbaf46710176d8 100644
--- a/chrome/browser/resources/uber/uber.css
+++ b/chrome/browser/resources/uber/uber.css
@@ -2,45 +2,24 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file. */
-#navigation h1 {
- -webkit-margin-start: 23px;
- color: rgb(92, 97, 102);
-}
-
-#navigation ol {
- list-style-type: none;
- padding: 0;
-}
-
-#navigation li {
- -webkit-border-start: 6px solid white;
- -webkit-padding-start: 18px;
- color: #999;
- cursor: pointer;
- line-height: 17px;
- margin: 5px 0;
- text-transform: uppercase;
-}
-
-#navigation li:hover {
- color: #777;
-}
-
-#navigation li.selected {
- -webkit-border-start-color: rgb(78, 87, 100);
- color: rgb(70, 78, 90);
+#navigation {
+ height: 100%;
+ left: 0;
+ position: absolute;
+ right: 0;
+ width: 155px;
+ z-index: 3;
}
-#navigation #aboutPageNavItem {
- margin-top: 27px;
+#navigation.background {
+ z-index: 1;
}
.iframe-container {
-webkit-margin-start: -20px;
-webkit-transition: margin 100ms, opacity 100ms;
- background-color: white;
bottom: 0;
- left: 155px;
+ left: 0;
opacity: 0;
position: absolute;
right: 0;
@@ -48,11 +27,6 @@
z-index: 1;
}
-html[dir="rtl"] .iframe-container {
- left: 0;
- right: 155px;
-}
-
.iframe-container.selected {
-webkit-margin-start: 0;
-webkit-transition: margin 200ms, opacity 200ms;
@@ -61,20 +35,13 @@ html[dir="rtl"] .iframe-container {
z-index: 2;
}
+.iframe-container.expanded {
+ left: 0;
+}
+
iframe {
border: none;
display: block;
height: 100%;
width: 100%;
}
-
-#uber .overlay {
- opacity: 0;
- pointer-events: none;
- z-index: 1;
-}
-
-#uber .overlay.showing {
- opacity: 1;
- pointer-events: visible;
-}
« no previous file with comments | « chrome/browser/resources/shared/js/jstemplate_compiled.js ('k') | chrome/browser/resources/uber/uber.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698