| 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 | 5 |
| 6 menu { | 6 menu { |
| 7 -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .50); | 7 -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .50); |
| 8 background: white; | 8 background: white; |
| 9 color: black; | 9 color: black; |
| 10 cursor: default; | 10 cursor: default; |
| 11 display: none; | |
| 12 left: 0; | 11 left: 0; |
| 13 margin: 0; | 12 margin: 0; |
| 14 outline: 1px solid rgba(0, 0, 0, 0.2); | 13 outline: 1px solid rgba(0, 0, 0, 0.2); |
| 15 padding: 8px 0; | 14 padding: 8px 0; |
| 16 position: fixed; | 15 position: fixed; |
| 17 white-space: nowrap; | 16 white-space: nowrap; |
| 18 z-index: 3; | 17 z-index: 3; |
| 19 } | 18 } |
| 20 | 19 |
| 21 menu > * { | 20 menu > * { |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 width: 9px; | 71 width: 9px; |
| 73 } | 72 } |
| 74 | 73 |
| 75 menu > [checked] { | 74 menu > [checked] { |
| 76 -webkit-padding-start: 0; | 75 -webkit-padding-start: 0; |
| 77 } | 76 } |
| 78 | 77 |
| 79 menu > [selected][checked]:active:before { | 78 menu > [selected][checked]:active:before { |
| 80 content: url('../images/checkbox_white.png'); | 79 content: url('../images/checkbox_white.png'); |
| 81 } | 80 } |
| OLD | NEW |