| 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 { |
| 11 -webkit-transition: -webkit-transform 100ms; | 11 -webkit-transition: -webkit-transform 100ms; |
| 12 } | 12 } |
| 13 | 13 |
| 14 h1 { | 14 h1 { |
| 15 -webkit-margin-after: 1em; | 15 -webkit-margin-after: 1em; |
| 16 /* This value must match the top padding of the uber page header. */ | 16 /* This value must match the top padding of the uber page header. */ |
| 17 -webkit-margin-before: 21px; | 17 -webkit-margin-before: 21px; |
| 18 -webkit-margin-start: 23px; | 18 -webkit-margin-start: 23px; |
| 19 color: rgb(92, 97, 102); | 19 color: rgb(92, 97, 102); |
| 20 } | 20 } |
| 21 | 21 |
| 22 ul { | 22 ul { |
| 23 list-style-type: none; | 23 list-style-type: none; |
| 24 padding: 0; | 24 padding: 0; |
| 25 } | 25 } |
| 26 | 26 |
| 27 li { | 27 li { |
| 28 -webkit-border-start: 6px solid transparent; | 28 -webkit-border-start: 6px solid transparent; |
| 29 -webkit-padding-start: 18px; | 29 -webkit-padding-start: 18px; |
| 30 -webkit-user-select: none; |
| 30 color: #999; | 31 color: #999; |
| 31 cursor: pointer; | 32 cursor: pointer; |
| 32 line-height: 17px; | 33 line-height: 17px; |
| 33 margin: 5px 0; | 34 margin: 5px 0; |
| 34 } | 35 } |
| 35 | 36 |
| 36 li:hover { | 37 li:hover { |
| 37 color: #777; | 38 color: #777; |
| 38 } | 39 } |
| 39 | 40 |
| 40 li.selected { | 41 li.selected { |
| 41 -webkit-border-start-color: rgb(78, 87, 100); | 42 -webkit-border-start-color: rgb(78, 87, 100); |
| 42 color: rgb(70, 78, 90); | 43 color: rgb(70, 78, 90); |
| 44 cursor: default; |
| 45 pointer-events: none; |
| 43 } | 46 } |
| 44 | 47 |
| 45 #helpNavItem { | 48 #helpNavItem { |
| 46 margin-top: 27px; | 49 margin-top: 27px; |
| 47 } | 50 } |
| OLD | NEW |