Chromium Code Reviews| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 110 text-align: center; | 110 text-align: center; |
| 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 .disabled-button { | |
|
mthiesse
2017/03/08 16:15:17
nit: newline before this
acondor_
2017/03/08 16:42:26
Done.
| |
| 121 background-color: #aaa; | |
| 122 } | |
| 120 | 123 |
| 121 #back-button, | 124 #back-button, |
| 122 #forward-button { | 125 #forward-button { |
| 123 background-image: url(../../../../ui/webui/resources/images/vr_back.svg); | 126 background-image: url(../../../../ui/webui/resources/images/vr_back.svg); |
| 124 } | 127 } |
| 125 | 128 |
| 126 #reload-button { | 129 #reload-button { |
| 127 background-image: url(../../../../ui/webui/resources/images/vr_reload.svg); | 130 background-image: url(../../../../ui/webui/resources/images/vr_reload.svg); |
| 128 } | 131 } |
| 129 | 132 |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 302 outline: none; /* Do not show an outline when focused. */ | 305 outline: none; /* Do not show an outline when focused. */ |
| 303 overflow: hidden; | 306 overflow: hidden; |
| 304 white-space: nowrap; | 307 white-space: nowrap; |
| 305 width: 100%; | 308 width: 100%; |
| 306 } | 309 } |
| 307 | 310 |
| 308 #omnibox-clear-button { | 311 #omnibox-clear-button { |
| 309 background: url(../../../../ui/webui/resources/images/x-hover.png) no-repeat c enter center; | 312 background: url(../../../../ui/webui/resources/images/x-hover.png) no-repeat c enter center; |
| 310 width: 18px; | 313 width: 18px; |
| 311 } | 314 } |
| OLD | NEW |