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

Side by Side Diff: chrome/browser/resources/vr_shell/vr_shell_ui.css

Issue 2622593003: Move the omnibox natively when showing or hiding. (Closed)
Patch Set: Add comment; rebase. Created 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/vr_shell/vr_shell_ui.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright 2016 The Chromium Authors. All rights reserved. 1 /* Copyright 2016 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 html { 5 html {
6 background-color: rgba(255, 255, 255, 0); 6 background-color: rgba(255, 255, 255, 0);
7 } 7 }
8 8
9 #ui { 9 #ui {
10 left: 0; 10 left: 0;
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 padding: 12px; 119 padding: 12px;
120 } 120 }
121 121
122 #omnibox-container { 122 #omnibox-container {
123 --tranX: 0; 123 --tranX: 0;
124 --tranY: -0.65; 124 --tranY: -0.65;
125 --tranZ: -1.2; 125 --tranZ: -1.2;
126 } 126 }
127 127
128 #omnibox-border { 128 #omnibox-border {
129 --fadeTimeMs: 500;
130 --fadeYOffset: -0.1;
129 --statusBarColor: rgb(66, 133, 244); 131 --statusBarColor: rgb(66, 133, 244);
130 background-color: #ececec; 132 background-color: #ececec;
131 border-radius: 200px; 133 border-radius: 200px;
132 opacity: 0.9; 134 opacity: 0.9;
133 padding: 6px; 135 padding: 6px;
134 transition: opacity 500ms ease; 136 transition: opacity 500ms ease;
135 } 137 }
136 138
137 #omnibox-border.hidden { 139 #omnibox-border.hidden {
138 opacity: 0; 140 opacity: 0;
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 color: #252525; 187 color: #252525;
186 font-size: 34px; 188 font-size: 34px;
187 overflow: hidden; 189 overflow: hidden;
188 white-space: nowrap; 190 white-space: nowrap;
189 } 191 }
190 192
191 #omnibox #path { 193 #omnibox #path {
192 color: #868686; 194 color: #868686;
193 } 195 }
194 196
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/vr_shell/vr_shell_ui.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698