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 */ | 6 */ |
7 | 7 |
8 .dropdown-title { | 8 .dropdown-title { |
9 -webkit-appearance: none; | 9 -webkit-appearance: none; |
10 -webkit-box-align: start; | 10 -webkit-box-align: start; |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 padding-top: 4px; | 121 padding-top: 4px; |
122 text-overflow: ellipsis; | 122 text-overflow: ellipsis; |
123 white-space: nowrap; | 123 white-space: nowrap; |
124 } | 124 } |
125 | 125 |
126 .dropdown-divider { | 126 .dropdown-divider { |
127 height: 3px; | 127 height: 3px; |
128 } | 128 } |
129 | 129 |
130 .dropdown-divider hr { | 130 .dropdown-divider hr { |
131 -webkit-margin-after: 2px; | 131 margin-bottom: 2px; |
132 -webkit-margin-before: 2px; | 132 margin-top: 2px; |
133 } | 133 } |
134 | 134 |
135 .dropdown-item.disabled-item { | 135 .dropdown-item.disabled-item { |
136 color: graytext; | 136 color: graytext; |
137 } | 137 } |
138 | 138 |
139 .dropdown-overlay { | 139 .dropdown-overlay { |
140 bottom: 0; | 140 bottom: 0; |
141 left: 0; | 141 left: 0; |
142 position: fixed; | 142 position: fixed; |
143 right: 0; | 143 right: 0; |
144 top: 0; | 144 top: 0; |
145 z-index: 5; | 145 z-index: 5; |
146 } | 146 } |
OLD | NEW |