| OLD | NEW |
| 1 menu { | 1 menu { |
| 2 -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, .50); | 2 -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, .50); |
| 3 background: -webkit-linear-gradient(#fff, #eee); | 3 background: white; |
| 4 border-radius: 3px; | |
| 5 border: 1px solid rgba(0, 0, 0, .50); | |
| 6 color: black; | 4 color: black; |
| 7 cursor: default; | 5 cursor: default; |
| 8 display: none; | 6 display: none; |
| 9 left: 0; | 7 left: 0; |
| 10 margin: 0; | 8 margin: 0; |
| 9 outline: 1px solid rgba(0, 0, 0, 0.2); |
| 11 padding: 8px 0; | 10 padding: 8px 0; |
| 12 position: fixed; | 11 position: fixed; |
| 13 white-space: nowrap; | 12 white-space: nowrap; |
| 14 z-index: 3; | 13 z-index: 3; |
| 15 } | 14 } |
| 16 | 15 |
| 17 menu > * { | 16 menu > * { |
| 18 box-sizing: border-box; | 17 box-sizing: border-box; |
| 19 display: block; | 18 display: block; |
| 20 margin: 0; | 19 margin: 0; |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 width: 9px; | 74 width: 9px; |
| 76 } | 75 } |
| 77 | 76 |
| 78 menu > [checked] { | 77 menu > [checked] { |
| 79 -webkit-padding-start: 0; | 78 -webkit-padding-start: 0; |
| 80 } | 79 } |
| 81 | 80 |
| 82 menu > [selected][checked]:active:before { | 81 menu > [selected][checked]:active:before { |
| 83 content: url("../images/checkbox_white.png"); | 82 content: url("../images/checkbox_white.png"); |
| 84 } | 83 } |
| OLD | NEW |