| OLD | NEW |
| (Empty) |
| 1 .fullscreen { | |
| 2 background-image: url('../../app/theme/fullscreen_menu_button.png'); | |
| 3 background-position: center center; | |
| 4 background-repeat: no-repeat; | |
| 5 border: solid 1px rgba(0, 0, 0, 0.3); | |
| 6 border-radius: 3px; | |
| 7 width: 23px; | |
| 8 height: 23px; | |
| 9 -webkit-margin-start: 4px; | |
| 10 } | |
| 11 | |
| 12 .edit-button { | |
| 13 padding: 2px; | |
| 14 text-align: center; | |
| 15 min-width: 35px; | |
| 16 } | |
| 17 | |
| 18 .left-button { | |
| 19 border: solid 1px rgba(0, 0, 0, 0.3); | |
| 20 border-top-left-radius: 3px; | |
| 21 border-bottom-left-radius: 3px; | |
| 22 } | |
| 23 | |
| 24 .right-button { | |
| 25 border: solid 1px rgba(0, 0, 0, 0.3); | |
| 26 border-top-right-radius: 3px; | |
| 27 border-bottom-right-radius: 3px; | |
| 28 } | |
| 29 | |
| 30 .center-button { | |
| 31 border-top: solid 1px rgba(0, 0, 0, 0.3); | |
| 32 border-bottom: solid 1px rgba(0, 0, 0, 0.3); | |
| 33 } | |
| 34 | |
| 35 .zoom-button { | |
| 36 text-align: center; | |
| 37 width: 15px; | |
| 38 } | |
| 39 | |
| 40 .zoom-percent { | |
| 41 min-width: 40px; | |
| 42 text-align: center; | |
| 43 } | |
| OLD | NEW |