| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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 * This is the stylesheet used by the network drop-down control. | 5 * This is the stylesheet used by the network drop-down control. */ |
| 6 */ | |
| 7 | 6 |
| 8 .dropdown-title { | 7 .dropdown-title { |
| 9 -webkit-appearance: none; | 8 -webkit-appearance: none; |
| 10 -webkit-box-align: start; | 9 -webkit-box-align: start; |
| 11 -webkit-padding-end: 20px; | 10 -webkit-padding-end: 20px; |
| 12 -webkit-padding-start: 1px; | 11 -webkit-padding-start: 1px; |
| 13 -webkit-user-select: none; | 12 -webkit-user-select: none; |
| 14 background-image: url(../../../../../ui/webui/resources/images/select.png), | 13 background-image: url(../../../../../ui/webui/resources/images/select.png), |
| 15 linear-gradient(to bottom, | 14 linear-gradient(to bottom, |
| 16 rgb(237, 237, 237), | 15 rgb(237, 237, 237), |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 } | 136 } |
| 138 | 137 |
| 139 .dropdown-overlay { | 138 .dropdown-overlay { |
| 140 bottom: 0; | 139 bottom: 0; |
| 141 left: 0; | 140 left: 0; |
| 142 position: fixed; | 141 position: fixed; |
| 143 right: 0; | 142 right: 0; |
| 144 top: 0; | 143 top: 0; |
| 145 z-index: 5; | 144 z-index: 5; |
| 146 } | 145 } |
| OLD | NEW |