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 input:focus, | 5 input:focus, |
6 button:focus { | 6 button:focus { |
7 outline-color: rgb(77, 144, 254); | 7 outline-color: rgb(77, 144, 254); |
8 } | 8 } |
9 | 9 |
10 .action-choice { | 10 .action-choice { |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 } | 163 } |
164 | 164 |
165 #actions-list > :hover { | 165 #actions-list > :hover { |
166 background-color: #f1f1f1; | 166 background-color: #f1f1f1; |
167 border-color: hsl(214, 91%, 85%); | 167 border-color: hsl(214, 91%, 85%); |
168 } | 168 } |
169 | 169 |
170 #actions-list > li > div.disabled { | 170 #actions-list > li > div.disabled { |
171 opacity: 0.5; | 171 opacity: 0.5; |
172 } | 172 } |
OLD | NEW |