Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Side by Side Diff: chrome/browser/resources/print_preview/settings/copies_settings.css

Issue 2441493004: Add copies changes to prepare for scaling (Closed)
Patch Set: Fix final issues Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 {
6 height: 29px;
7 position: relative;
8 width: 2.75em;
9 }
10
11 #copies-settings-box {
12 margin: 10px 0;
13 }
14
15 #copies-settings input.copies.invalid {
16 background: rgb(255, 240, 240);
17 color: rgb(140, 20, 20);
18 }
19
20 #copies-settings button.increment:focus,
21 #copies-settings button.decrement:focus,
22 #copies-settings:focus {
23 z-index: 1;
24 }
25
26 #copies-settings .collate-container { 5 #copies-settings .collate-container {
27 -webkit-padding-start: 16px; 6 -webkit-padding-start: 16px;
28 display: inline-block; 7 display: inline-block;
29 } 8 }
30 9
31 #copies-settings button.increment,
32 #copies-settings button.decrement {
33 -webkit-padding-end: 0;
34 -webkit-padding-start: 0;
35 font-weight: 600;
36 height: 29px;
37 margin: 0;
38 min-width: 0;
39 position: relative;
40 width: 2em;
41 }
42
43 #copies-settings button.increment {
44 -webkit-margin-start: -5px;
45 border-radius: 0;
46 }
47
48 #copies-settings button.decrement {
49 -webkit-margin-start: -5px;
50 border-bottom-left-radius: 0;
51 border-bottom-right-radius: 3px;
52 border-top-left-radius: 0;
53 border-top-right-radius: 3px;
54 }
55
56 html[dir='rtl'] #copies-settings button.decrement {
57 border-bottom-left-radius: 3px;
58 border-bottom-right-radius: 0;
59 border-top-left-radius: 3px;
60 border-top-right-radius: 0;
61 }
62
63 #copies-settings .collate-container label { 10 #copies-settings .collate-container label {
64 padding-top: 6px; 11 padding-top: 6px;
65 } 12 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698