| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 text-transform: uppercase; | 111 text-transform: uppercase; |
| 112 vertical-align: middle; | 112 vertical-align: middle; |
| 113 white-space: nowrap; | 113 white-space: nowrap; |
| 114 width: 300px; | 114 width: 300px; |
| 115 } | 115 } |
| 116 | 116 |
| 117 .rect-button:hover { | 117 .rect-button:hover { |
| 118 opacity: 1; | 118 opacity: 1; |
| 119 } | 119 } |
| 120 | 120 |
| 121 .disabled-button { |
| 122 background-color: #aaa; |
| 123 } |
| 124 |
| 121 #back-button, | 125 #back-button, |
| 122 #forward-button { | 126 #forward-button { |
| 123 background-image: url(../../../../ui/webui/resources/images/vr_back.svg); | 127 background-image: url(../../../../ui/webui/resources/images/vr_back.svg); |
| 124 } | 128 } |
| 125 | 129 |
| 126 #reload-button { | 130 #reload-button { |
| 127 background-image: url(../../../../ui/webui/resources/images/vr_reload.svg); | 131 background-image: url(../../../../ui/webui/resources/images/vr_reload.svg); |
| 128 } | 132 } |
| 129 | 133 |
| 130 #forward-button { | 134 #forward-button { |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 outline: none; /* Do not show an outline when focused. */ | 306 outline: none; /* Do not show an outline when focused. */ |
| 303 overflow: hidden; | 307 overflow: hidden; |
| 304 white-space: nowrap; | 308 white-space: nowrap; |
| 305 width: 100%; | 309 width: 100%; |
| 306 } | 310 } |
| 307 | 311 |
| 308 #omnibox-clear-button { | 312 #omnibox-clear-button { |
| 309 background: url(../../../../ui/webui/resources/images/x-hover.png) no-repeat c
enter center; | 313 background: url(../../../../ui/webui/resources/images/x-hover.png) no-repeat c
enter center; |
| 310 width: 18px; | 314 width: 18px; |
| 311 } | 315 } |
| OLD | NEW |