| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 width: 512px; | 145 width: 512px; |
| 146 } | 146 } |
| 147 | 147 |
| 148 #omni-content { | 148 #omni-content { |
| 149 align-items: center; | 149 align-items: center; |
| 150 display: flex; | 150 display: flex; |
| 151 max-width: 448px; | 151 max-width: 448px; |
| 152 } | 152 } |
| 153 | 153 |
| 154 #omni .connection-security { | 154 #omni .connection-security { |
| 155 display: none; |
| 156 flex: none; |
| 155 height: 50px; | 157 height: 50px; |
| 156 margin-right: 10px; | 158 margin-right: 10px; |
| 157 width: 50px; | 159 width: 50px; |
| 158 } | 160 } |
| 159 | 161 |
| 160 #omni #url { | 162 #omni #url { |
| 161 color: #252525; | 163 color: #252525; |
| 162 font-size: 34px; | 164 font-size: 34px; |
| 163 overflow: hidden; | 165 overflow: hidden; |
| 164 white-space: nowrap; | 166 white-space: nowrap; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 178 border: 4px solid rgb(86, 203, 255); | 180 border: 4px solid rgb(86, 203, 255); |
| 179 } | 181 } |
| 180 | 182 |
| 181 #omni.idle { | 183 #omni.idle { |
| 182 background-color: #ececec; | 184 background-color: #ececec; |
| 183 } | 185 } |
| 184 | 186 |
| 185 #omni.idle #domain { | 187 #omni.idle #domain { |
| 186 color: black; | 188 color: black; |
| 187 } | 189 } |
| OLD | NEW |