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