Extract code handling PrinterProviderAPI from PrintPreviewHandler
[chromium-blink-merge.git] / chrome / browser / resources / uber / uber_frame.css
blob76477ddc398b9b3fec8829fadc267d33553f5ab6
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. */
5 body {
6 overflow: hidden;
7 padding-top: 20px;
10 html.changing-content body {
11 -webkit-transition: -webkit-transform 100ms;
14 h1 {
15 -webkit-margin-start: 23px;
16 color: rgb(92, 97, 102);
17 margin-bottom: 1em;
18 /* This value must match the top padding of the uber page header. */
19 margin-top: 21px;
22 ul {
23 list-style-type: none;
24 padding: 0;
27 li {
28 -webkit-border-start: 6px solid transparent;
29 -webkit-padding-start: 18px;
30 -webkit-user-select: none;
31 cursor: pointer;
34 li:hover {
35 color: #777;
38 li.selected {
39 -webkit-border-start-color: rgb(78, 87, 100);
40 cursor: default;
41 pointer-events: none;
44 /* Separates the Help nav item if there are at least 3 items. */
45 li:not([hidden]) ~ li:not([hidden]) ~ #helpNavItem {
46 margin-top: 27px;
49 button {
50 background-color: white;
51 border: 0;
52 color: #999;
53 cursor: pointer;
54 font: inherit;
55 line-height: 1.417em; /* 17px based on default 12px font size. */
56 margin: 6px 0;
57 padding: 0;
60 .selected > button {
61 color: rgb(70, 78, 90);