| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |