OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
4 | 4 |
5 body { | 5 body { |
6 overflow: hidden; | 6 overflow: hidden; |
7 padding-top: 20px; | 7 padding-top: 20px; |
8 } | 8 } |
9 | 9 |
10 html.changing-content body { | 10 html.changing-content body { |
(...skipping 23 matching lines...) Expand all Loading... |
34 li:hover { | 34 li:hover { |
35 color: #777; | 35 color: #777; |
36 } | 36 } |
37 | 37 |
38 li.selected { | 38 li.selected { |
39 -webkit-border-start-color: rgb(78, 87, 100); | 39 -webkit-border-start-color: rgb(78, 87, 100); |
40 cursor: default; | 40 cursor: default; |
41 pointer-events: none; | 41 pointer-events: none; |
42 } | 42 } |
43 | 43 |
44 #helpNavItem { | 44 /* Separates the Help nav item if there are at least 3 items. */ |
| 45 li:not([hidden]) ~ li:not([hidden]) ~ #helpNavItem { |
45 margin-top: 27px; | 46 margin-top: 27px; |
46 } | 47 } |
47 | 48 |
48 button { | 49 button { |
49 background-color: white; | 50 background-color: white; |
50 border: 0; | 51 border: 0; |
51 color: #999; | 52 color: #999; |
52 cursor: pointer; | 53 cursor: pointer; |
53 font: inherit; | 54 font: inherit; |
54 line-height: 1.417em; /* 17px based on default 12px font size. */ | 55 line-height: 1.417em; /* 17px based on default 12px font size. */ |
55 margin: 6px 0; | 56 margin: 6px 0; |
56 padding: 0; | 57 padding: 0; |
57 } | 58 } |
58 | 59 |
59 .selected > button { | 60 .selected > button { |
60 color: rgb(70, 78, 90); | 61 color: rgb(70, 78, 90); |
61 } | 62 } |
OLD | NEW |