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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 #reload-ui-button { | 134 #reload-ui-button { |
135 color: white; | 135 color: white; |
136 font-size: 24px; | 136 font-size: 24px; |
137 padding: 12px; | 137 padding: 12px; |
138 } | 138 } |
139 | 139 |
140 #reload-ui-button:hover { | 140 #reload-ui-button:hover { |
141 background-color: pink; | 141 background-color: pink; |
142 } | 142 } |
143 | 143 |
| 144 #content-interceptor { |
| 145 height: 1px; |
| 146 opacity: 0; |
| 147 width: 1px; |
| 148 } |
| 149 |
144 .tab { | 150 .tab { |
145 background-color: #eee; | 151 background-color: #eee; |
146 border-radius: 6px; | 152 border-radius: 6px; |
147 color: black; | 153 color: black; |
148 display: inline-block; | 154 display: inline-block; |
149 font-size: 20px; | 155 font-size: 20px; |
150 height: 30px; | 156 height: 30px; |
151 line-height: 30px; | 157 line-height: 30px; |
152 margin: 0 15px 0 15px; | 158 margin: 0 15px 0 15px; |
153 overflow: hidden; | 159 overflow: hidden; |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 outline: none; /* Do not show an outline when focused. */ | 308 outline: none; /* Do not show an outline when focused. */ |
303 overflow: hidden; | 309 overflow: hidden; |
304 white-space: nowrap; | 310 white-space: nowrap; |
305 width: 100%; | 311 width: 100%; |
306 } | 312 } |
307 | 313 |
308 #omnibox-clear-button { | 314 #omnibox-clear-button { |
309 background: url(../../../../ui/webui/resources/images/x-hover.png) no-repeat c
enter center; | 315 background: url(../../../../ui/webui/resources/images/x-hover.png) no-repeat c
enter center; |
310 width: 18px; | 316 width: 18px; |
311 } | 317 } |
OLD | NEW |