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

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

Issue 399973004: Advanced printing destination settings modal dialog (non-functional yet, just the skeleton). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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) 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 #advanced-settings {
6 z-index: 3;
7 }
8
9 #advanced-settings.transparent {
10 opacity: 0;
11 overflow: hidden;
12 pointer-events: none;
13 }
14
15 #advanced-settings .page {
16 width: 640px;
17 }
18
19 #advanced-settings > .page > .close-button {
20 top: 9px;
21 }
22
23 #advanced-settings .search-box {
24 -webkit-user-select: none;
25 margin: 14px;
26 }
27
28 #advanced-settings .lists {
29 flex: 1;
30 overflow-y: auto;
31 }
32
33 #advanced-settings .lists > * {
34 -webkit-user-select: none;
35 padding: 0 14px 18px;
36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698