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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 .dropdown-title div { | 73 .dropdown-title div { |
74 -webkit-box-flex: 1; | 74 -webkit-box-flex: 1; |
75 margin-top: 1px; | 75 margin-top: 1px; |
76 overflow: hidden; | 76 overflow: hidden; |
77 text-overflow: ellipsis; | 77 text-overflow: ellipsis; |
78 } | 78 } |
79 | 79 |
80 .dropdown-container { | 80 .dropdown-container { |
81 background: #f7f7f7; | 81 background: #f7f7f7; |
82 border: 1px solid rgb(124, 145, 191); | 82 border: 1px solid rgb(124, 145, 191); |
83 max-height: 330px; | 83 max-height: 300px; |
84 overflow-x: hidden; | 84 overflow-x: hidden; |
85 overflow-y: auto; | 85 overflow-y: auto; |
86 padding-bottom: 2px; | 86 padding-bottom: 2px; |
87 padding-top: 2px; | 87 padding-top: 2px; |
88 position: absolute; | 88 position: absolute; |
89 top: 100%; | 89 top: 100%; |
90 width: 99.5%; | 90 width: 99.5%; |
91 z-index: 10; | 91 z-index: 10; |
92 } | 92 } |
93 | 93 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 } | 129 } |
130 | 130 |
131 .dropdown-overlay { | 131 .dropdown-overlay { |
132 bottom: 0; | 132 bottom: 0; |
133 left: 0; | 133 left: 0; |
134 position: fixed; | 134 position: fixed; |
135 right: 0; | 135 right: 0; |
136 top: 0; | 136 top: 0; |
137 z-index: 5; | 137 z-index: 5; |
138 } | 138 } |
139 | |
OLD | NEW |