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

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

Issue 2737183002: Separate VR omnibox and suggestion UI elements. (Closed)
Patch Set: Add an explanatory comment. Created 3 years, 9 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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 align-items: center; /* Vertically center text in div. */ 271 align-items: center; /* Vertically center text in div. */
272 background-color: white; 272 background-color: white;
273 /* Use a transparent border to hide text overflow, but allow background to 273 /* Use a transparent border to hide text overflow, but allow background to
274 * color show through. */ 274 * color show through. */
275 border-left: 5px solid transparent; 275 border-left: 5px solid transparent;
276 border-right: 5px solid transparent; 276 border-right: 5px solid transparent;
277 box-sizing: border-box; 277 box-sizing: border-box;
278 display: flex; 278 display: flex;
279 height: 24px; 279 height: 24px;
280 overflow: hidden; 280 overflow: hidden;
281 visibility: hidden;
282 white-space: nowrap; 281 white-space: nowrap;
283 } 282 }
284 283
285 .suggestion:hover { 284 .suggestion:hover {
286 background-color: orange; 285 background-color: orange;
287 } 286 }
288 287
289 #omnibox-url-element { 288 #omnibox-url-element {
290 background-color: white; 289 background-color: white;
291 border: 1px solid grey; 290 border: 1px solid grey;
(...skipping 10 matching lines...) Expand all
302 outline: none; /* Do not show an outline when focused. */ 301 outline: none; /* Do not show an outline when focused. */
303 overflow: hidden; 302 overflow: hidden;
304 white-space: nowrap; 303 white-space: nowrap;
305 width: 100%; 304 width: 100%;
306 } 305 }
307 306
308 #omnibox-clear-button { 307 #omnibox-clear-button {
309 background: url(../../../../ui/webui/resources/images/x-hover.png) no-repeat c enter center; 308 background: url(../../../../ui/webui/resources/images/x-hover.png) no-repeat c enter center;
310 width: 18px; 309 width: 18px;
311 } 310 }
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