OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright 2016 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. |
| 5 */ |
| 6 |
| 7 .tree-outline { |
| 8 padding: 0; |
| 9 } |
| 10 |
| 11 .tree-outline li::before { |
| 12 display: none; |
| 13 } |
| 14 |
| 15 .tree-outline ol { |
| 16 padding-left: 0; |
| 17 } |
| 18 |
| 19 .tree-outline li .tree-element-title { |
| 20 margin-left: 4px; |
| 21 } |
| 22 |
| 23 li.audits-sidebar-header { |
| 24 padding-left: 10px; |
| 25 height: 36px; |
| 26 } |
| 27 |
| 28 .audits-sidebar-header .icon { |
| 29 content: url(Images/resourcesTimeGraphIcon.png); |
| 30 } |
| 31 |
| 32 li.audits-sidebar-results { |
| 33 height: 18px; |
| 34 padding: 1px 10px; |
| 35 margin-top: 1px; |
| 36 color: rgb(92, 110, 129); |
| 37 text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0; |
| 38 } |
| 39 |
| 40 li.audit-result-sidebar-tree-item { |
| 41 padding-left: 10px; |
| 42 height: 36px; |
| 43 margin-top: 1px; |
| 44 line-height: 34px; |
| 45 border-top: 1px solid transparent; |
| 46 } |
| 47 |
| 48 .audit-result-sidebar-tree-item .icon { |
| 49 content: url(Images/resourceDocumentIcon.png); |
| 50 } |
OLD | NEW |