| 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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 | 106 |
| 107 #reload .button { | 107 #reload .button { |
| 108 background-image: url(../../../../ui/webui/resources/images/vr_reload.svg); | 108 background-image: url(../../../../ui/webui/resources/images/vr_reload.svg); |
| 109 } | 109 } |
| 110 | 110 |
| 111 #forward .button { | 111 #forward .button { |
| 112 transform: scaleX(-1); | 112 transform: scaleX(-1); |
| 113 } | 113 } |
| 114 | 114 |
| 115 #reload-ui-button { | 115 #reload-ui-button { |
| 116 background-color: #555; | 116 --tranX: 0; |
| 117 --tranY: -1.2; |
| 118 --tranZ: -1.2; |
| 117 color: white; | 119 color: white; |
| 118 font-size: 24px; | 120 font-size: 24px; |
| 119 padding: 12px; | 121 padding: 12px; |
| 120 } | 122 } |
| 121 | 123 |
| 122 #url-indicator-container { | 124 #url-indicator-container { |
| 123 --tranX: 0; | 125 --tranX: 0; |
| 124 --tranY: -0.65; | 126 --tranY: -0.65; |
| 125 --tranZ: -1.2; | 127 --tranZ: -1.2; |
| 126 } | 128 } |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 color: #252525; | 184 color: #252525; |
| 183 font-size: 34px; | 185 font-size: 34px; |
| 184 overflow: hidden; | 186 overflow: hidden; |
| 185 white-space: nowrap; | 187 white-space: nowrap; |
| 186 } | 188 } |
| 187 | 189 |
| 188 #url-indicator #path { | 190 #url-indicator #path { |
| 189 color: #868686; | 191 color: #868686; |
| 190 } | 192 } |
| 191 | 193 |
| 194 #omnibox-ui-element { |
| 195 --tranX: 0; |
| 196 --tranY: -0.2; |
| 197 --tranZ: -1.0; |
| 198 font-family: arial; |
| 199 } |
| 200 |
| 201 #omnibox-url-divider { |
| 202 background-color: black; |
| 203 height: 1px; |
| 204 } |
| 205 |
| 206 #omnibox-url-element { |
| 207 background-color: white; |
| 208 display: flex; |
| 209 padding: 5px; |
| 210 width: 100%; |
| 211 } |
| 212 |
| 213 .omnibox-suggestion { |
| 214 background-color: white; |
| 215 height: 22px; |
| 216 overflow: hidden; |
| 217 padding-left: 5px; |
| 218 padding-right: 5px; |
| 219 white-space: nowrap; |
| 220 width: 100%; |
| 221 } |
| 222 |
| 223 #omnibox-input-field { |
| 224 border: none; |
| 225 font-size: 16px; |
| 226 margin: 3px; |
| 227 overflow: hidden; |
| 228 padding: 0; |
| 229 white-space: nowrap; |
| 230 width: 280px; |
| 231 } |
| 232 |
| 233 #omnibox-clear-button { |
| 234 background: url(../../../../ui/webui/resources/images/x-hover.png) no-repeat c
enter center; |
| 235 width: 15px; |
| 236 } |
| OLD | NEW |