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 .dropdown-title { | 7 .dropdown-title { |
8 -webkit-appearance: none; | 8 -webkit-appearance: none; |
9 -webkit-box-align: start; | 9 -webkit-box-align: start; |
10 -webkit-padding-end: 20px; | 10 -webkit-padding-end: 20px; |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 background-image: url(../../../../../ui/webui/resources/images/select.png), | 57 background-image: url(../../../../../ui/webui/resources/images/select.png), |
58 linear-gradient(to bottom, | 58 linear-gradient(to bottom, |
59 rgb(231, 231, 231), | 59 rgb(231, 231, 231), |
60 rgb(231, 231, 231) 38%, | 60 rgb(231, 231, 231) 38%, |
61 rgb(215, 215, 215)); | 61 rgb(215, 215, 215)); |
62 box-shadow: none; | 62 box-shadow: none; |
63 text-shadow: none; | 63 text-shadow: none; |
64 } | 64 } |
65 | 65 |
66 .dropdown-title:focus { | 66 .dropdown-title:focus { |
67 -webkit-transition: border-color 200ms; | |
68 border-color: rgb(77, 144, 254); | 67 border-color: rgb(77, 144, 254); |
69 outline: none; | 68 outline: none; |
| 69 transition: border-color 200ms; |
70 } | 70 } |
71 | 71 |
72 html[highlight=strong] .dropdown-title:focus { | 72 html[highlight=strong] .dropdown-title:focus { |
73 box-shadow: 0 0 23px rgb(77, 144, 254); | 73 box-shadow: 0 0 23px rgb(77, 144, 254); |
74 } | 74 } |
75 | 75 |
76 .dropdown-title img { | 76 .dropdown-title img { |
77 margin-top: -1px; | 77 margin-top: -1px; |
78 } | 78 } |
79 | 79 |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 } | 136 } |
137 | 137 |
138 .dropdown-overlay { | 138 .dropdown-overlay { |
139 bottom: 0; | 139 bottom: 0; |
140 left: 0; | 140 left: 0; |
141 position: fixed; | 141 position: fixed; |
142 right: 0; | 142 right: 0; |
143 top: 0; | 143 top: 0; |
144 z-index: 5; | 144 z-index: 5; |
145 } | 145 } |
OLD | NEW |