| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 padding: 12px; | 119 padding: 12px; |
| 120 } | 120 } |
| 121 | 121 |
| 122 #omnibox-container { | 122 #omnibox-container { |
| 123 --tranX: 0; | 123 --tranX: 0; |
| 124 --tranY: -0.65; | 124 --tranY: -0.65; |
| 125 --tranZ: -1.2; | 125 --tranZ: -1.2; |
| 126 } | 126 } |
| 127 | 127 |
| 128 #omnibox-border { | 128 #omnibox-border { |
| 129 --fadeTimeMs: 500; |
| 130 --fadeYOffset: -0.1; |
| 129 --statusBarColor: rgb(66, 133, 244); | 131 --statusBarColor: rgb(66, 133, 244); |
| 130 background-color: #ececec; | 132 background-color: #ececec; |
| 131 border-radius: 200px; | 133 border-radius: 200px; |
| 132 opacity: 0.9; | 134 opacity: 0.9; |
| 133 padding: 6px; | 135 padding: 6px; |
| 134 transition: opacity 500ms ease; | 136 transition: opacity 500ms ease; |
| 135 } | 137 } |
| 136 | 138 |
| 137 #omnibox-border.hidden { | 139 #omnibox-border.hidden { |
| 138 opacity: 0; | 140 opacity: 0; |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 color: #252525; | 187 color: #252525; |
| 186 font-size: 34px; | 188 font-size: 34px; |
| 187 overflow: hidden; | 189 overflow: hidden; |
| 188 white-space: nowrap; | 190 white-space: nowrap; |
| 189 } | 191 } |
| 190 | 192 |
| 191 #omnibox #path { | 193 #omnibox #path { |
| 192 color: #868686; | 194 color: #868686; |
| 193 } | 195 } |
| 194 | 196 |
| OLD | NEW |