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

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

Issue 477133004: Printe Preview: add 'More/less options' button and make non-essential sections collapsible (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Print Preview UI tests adjusted. Created 6 years, 4 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 2014 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 #more-settings {
6 background-color: #fafafa;
7 border-bottom: 1px solid #e1e1e1;
8 border-top: 1px solid #e1e1e1;
9 margin-top: 4px;
10 min-height: 51px;
11 }
12
13 #more-settings .more-settings-icon {
14 background-repeat: no-repeat;
15 display: inline-block;
16 height: 11px;
17 margin: 20px 15px 20px 20px;
18 vertical-align: middle;
19 width: 11px;
20 }
21
22 #more-settings .more-settings-label {
23 display: inline;
24 height: 28px;
25 margin: 10px 0;
26 }
27
28 #more-settings .more-settings-icon-minus {
29 background-image: -webkit-image-set(
30 url('../images/1x/minus.png') 1x,
31 url('../images/2x/minus.png') 2x);
32 }
33
34 #more-settings .more-settings-icon-plus {
35 background-image: -webkit-image-set(
36 url('../images/1x/plus.png') 1x,
37 url('../images/2x/plus.png') 2x);
38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698