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