Remove the old signature of NotificationManager::closePersistent().
[chromium-blink-merge.git] / chrome / browser / resources / uber / uber_frame.css
blob12a399695ce3b2d3246c1a3e611112056f7efbe5
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 html:not(.focus-outline-visible) :focus {
6 outline: none;
9 body {
10 overflow: hidden;
11 padding-top: 20px;
14 html.changing-content body {
15 -webkit-transition: -webkit-transform 100ms;
18 h1 {
19 -webkit-margin-start: 23px;
20 color: rgb(92, 97, 102);
21 margin-bottom: 1em;
22 /* This value must match the top padding of the uber page header. */
23 margin-top: 21px;
26 ul {
27 list-style-type: none;
28 padding: 0;
31 li {
32 -webkit-border-start: 6px solid transparent;
33 -webkit-padding-start: 18px;
34 -webkit-user-select: none;
35 cursor: pointer;
38 li:hover {
39 color: #777;
42 li.selected {
43 -webkit-border-start-color: rgb(78, 87, 100);
44 cursor: default;
45 pointer-events: none;
48 /* Separates the Help nav item if there are at least 3 items. */
49 li:not([hidden]) ~ li:not([hidden]) ~ #helpNavItem {
50 margin-top: 27px;
53 button {
54 background-color: white;
55 border: 0;
56 color: #999;
57 cursor: pointer;
58 font: inherit;
59 line-height: 1.417em; /* 17px based on default 12px font size. */
60 margin: 6px 0;
61 padding: 0;
64 .selected > button {
65 color: rgb(70, 78, 90);