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

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

Issue 10108001: Refactor print preview web ui (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Resolve conflicts Created 8 years, 7 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
6 #copies-settings .copies-settings-copies {
7 position: relative;
8 width: 2.75em;
9 }
10
11 #copies-settings .copies-settings-copies.invalid {
12 background: rgb(255, 240, 240);
13 color: rgb(140, 20, 20);
14 }
15
16 #copies-settings .copies-settings-increment:focus,
17 #copies-settings .copies-settings-decrement:focus,
18 .copies-settings:focus {
19 z-index: 1;
20 }
21
22 #copies-settings .copies-settings-collate {
23 -webkit-padding-start: 16px;
24 display: inline-block;
25 }
26
27 #copies-settings .copies-settings-increment,
28 #copies-settings .copies-settings-decrement {
29 -webkit-padding-end: 0;
30 -webkit-padding-start: 0;
31 font-weight: 600;
32 margin: 0;
33 min-width: 0;
34 position: relative;
35 width: 2em;
36 }
37
38 #copies-settings .copies-settings-increment {
39 -webkit-margin-start: -5px;
40 border-radius: 0;
41 }
42
43 #copies-settings .copies-settings-decrement {
44 -webkit-margin-start: -5px;
45 border-bottom-left-radius: 0;
46 border-bottom-right-radius: 3px;
47 border-top-left-radius: 0;
48 border-top-right-radius: 3px;
49 }
50
51 html[dir='rtl'] #copies-settings .copies-settings-decrement {
52 border-bottom-left-radius: 3px;
53 border-bottom-right-radius: 0;
54 border-top-left-radius: 3px;
55 border-top-right-radius: 0;
56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698