| 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 #copies-settings input.copies { | 5 #copies-settings input.copies { |
| 6 height: 29px; |
| 6 position: relative; | 7 position: relative; |
| 7 width: 2.75em; | 8 width: 2.75em; |
| 8 } | 9 } |
| 9 | 10 |
| 11 #copies-settings-box { |
| 12 margin: 10px 0; |
| 13 } |
| 14 |
| 10 #copies-settings input.copies.invalid { | 15 #copies-settings input.copies.invalid { |
| 11 background: rgb(255, 240, 240); | 16 background: rgb(255, 240, 240); |
| 12 color: rgb(140, 20, 20); | 17 color: rgb(140, 20, 20); |
| 13 } | 18 } |
| 14 | 19 |
| 15 #copies-settings button.increment:focus, | 20 #copies-settings button.increment:focus, |
| 16 #copies-settings button.decrement:focus, | 21 #copies-settings button.decrement:focus, |
| 17 #copies-settings:focus { | 22 #copies-settings:focus { |
| 18 z-index: 1; | 23 z-index: 1; |
| 19 } | 24 } |
| 20 | 25 |
| 21 #copies-settings .collate-container { | 26 #copies-settings .collate-container { |
| 22 -webkit-padding-start: 16px; | 27 -webkit-padding-start: 16px; |
| 23 display: inline-block; | 28 display: inline-block; |
| 24 } | 29 } |
| 25 | 30 |
| 26 #copies-settings button.increment, | 31 #copies-settings button.increment, |
| 27 #copies-settings button.decrement { | 32 #copies-settings button.decrement { |
| 28 -webkit-padding-end: 0; | 33 -webkit-padding-end: 0; |
| 29 -webkit-padding-start: 0; | 34 -webkit-padding-start: 0; |
| 30 font-weight: 600; | 35 font-weight: 600; |
| 36 height: 29px; |
| 31 margin: 0; | 37 margin: 0; |
| 32 min-width: 0; | 38 min-width: 0; |
| 33 position: relative; | 39 position: relative; |
| 34 width: 2em; | 40 width: 2em; |
| 35 } | 41 } |
| 36 | 42 |
| 37 #copies-settings button.increment { | 43 #copies-settings button.increment { |
| 38 -webkit-margin-start: -5px; | 44 -webkit-margin-start: -5px; |
| 39 border-radius: 0; | 45 border-radius: 0; |
| 40 } | 46 } |
| 41 | 47 |
| 42 #copies-settings button.decrement { | 48 #copies-settings button.decrement { |
| 43 -webkit-margin-start: -5px; | 49 -webkit-margin-start: -5px; |
| 44 border-bottom-left-radius: 0; | 50 border-bottom-left-radius: 0; |
| 45 border-bottom-right-radius: 3px; | 51 border-bottom-right-radius: 3px; |
| 46 border-top-left-radius: 0; | 52 border-top-left-radius: 0; |
| 47 border-top-right-radius: 3px; | 53 border-top-right-radius: 3px; |
| 48 } | 54 } |
| 49 | 55 |
| 50 html[dir='rtl'] #copies-settings button.decrement { | 56 html[dir='rtl'] #copies-settings button.decrement { |
| 51 border-bottom-left-radius: 3px; | 57 border-bottom-left-radius: 3px; |
| 52 border-bottom-right-radius: 0; | 58 border-bottom-right-radius: 0; |
| 53 border-top-left-radius: 3px; | 59 border-top-left-radius: 3px; |
| 54 border-top-right-radius: 0; | 60 border-top-right-radius: 0; |
| 55 } | 61 } |
| OLD | NEW |