| OLD | NEW |
| 1 body { | 1 body { |
| 2 background: -webkit-gradient(linear, left top, left bottom, | 2 background: -webkit-gradient(linear, left top, left bottom, |
| 3 from(white), | 3 from(white), |
| 4 to(#EEE)); | 4 to(#EEE)); |
| 5 cursor: default; |
| 5 margin: 0; | 6 margin: 0; |
| 6 -webkit-user-select: none; | 7 -webkit-user-select: none; |
| 7 overflow: hidden; | 8 overflow: hidden; |
| 8 } | 9 } |
| 9 | 10 |
| 10 .menu-item { | 11 .menu-item { |
| 11 white-space: nowrap; | 12 white-space: nowrap; |
| 12 margin: 0; | 13 margin: 0; |
| 13 padding-top: 1px; | 14 padding-top: 1px; |
| 14 padding-bottom: 1px; | 15 padding-bottom: 1px; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 25 | 26 |
| 26 .no-icon { | 27 .no-icon { |
| 27 -webkit-padding-start: 19px; | 28 -webkit-padding-start: 19px; |
| 28 } | 29 } |
| 29 | 30 |
| 30 .menu-label { | 31 .menu-label { |
| 31 -webkit-box-flex: 1; | 32 -webkit-box-flex: 1; |
| 32 vertical-align: middle; | 33 vertical-align: middle; |
| 33 } | 34 } |
| 34 | 35 |
| 35 .accelerator { | 36 .accelerator { |
| 36 opacity: 0.3; | 37 opacity: 0.3; |
| 37 -webkit-margin-start: 15px; | 38 -webkit-margin-start: 15px; |
| 38 } | 39 } |
| 39 | 40 |
| 40 .left-icon { | 41 .left-icon { |
| 41 background-position: 4px center; | 42 background-position: 4px center; |
| 42 } | 43 } |
| 43 | 44 |
| 44 .right-icon { | 45 .right-icon { |
| 45 background-position: right center; | 46 background-position: right center; |
| 46 } | 47 } |
| 47 | 48 |
| 48 .separator { | 49 .separator { |
| 49 background: -webkit-gradient(linear, 0 0, 96% 0, from(rgba(0, 0, 0, .10)), | 50 background: -webkit-gradient(linear, 0 0, 96% 0, from(rgba(0, 0, 0, .10)), |
| 50 to(rgba(0, 0, 0, .02))); | 51 to(rgba(0, 0, 0, .02))); |
| 51 border: 0; | 52 border: 0; |
| 52 height: 1px; | 53 height: 1px; |
| 53 margin: 4px 0; | 54 margin: 4px 0; |
| 54 } | 55 } |
| (...skipping 29 matching lines...) Expand all Loading... |
| 84 } | 85 } |
| 85 | 86 |
| 86 .scroll-button:hover { | 87 .scroll-button:hover { |
| 87 background-color: #DCE5FA; | 88 background-color: #DCE5FA; |
| 88 } | 89 } |
| 89 | 90 |
| 90 .hidden { | 91 .hidden { |
| 91 display: none; | 92 display: none; |
| 92 } | 93 } |
| 93 | 94 |
| OLD | NEW |