| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 /* Tree outline overrides */ | 7 /* Tree outline overrides */ |
| 8 | 8 |
| 9 :host { | 9 :host { |
| 10 padding: 0; | 10 padding: 0; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 margin-top: 1px; | 40 margin-top: 1px; |
| 41 color: rgb(92, 110, 129); | 41 color: rgb(92, 110, 129); |
| 42 text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0; | 42 text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0; |
| 43 line-height: 18px; | 43 line-height: 18px; |
| 44 } | 44 } |
| 45 | 45 |
| 46 .tree-outline li.profiles-tree-section::before { | 46 .tree-outline li.profiles-tree-section::before { |
| 47 display: none; | 47 display: none; |
| 48 } | 48 } |
| 49 | 49 |
| 50 .tree-outline ol { |
| 51 overflow: hidden; |
| 52 } |
| 53 |
| 50 /* Generic items styling */ | 54 /* Generic items styling */ |
| 51 | 55 |
| 52 .title-container > .save-link { | 56 .title-container > .save-link { |
| 53 text-decoration: underline; | 57 text-decoration: underline; |
| 54 margin-left: auto; | 58 margin-left: auto; |
| 55 display: none; | 59 display: none; |
| 56 } | 60 } |
| 57 | 61 |
| 58 li.selected .title-container > .save-link { | 62 li.selected .title-container > .save-link { |
| 59 display: block; | 63 display: block; |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 content: url(Images/profileIcon.png); | 180 content: url(Images/profileIcon.png); |
| 177 } | 181 } |
| 178 | 182 |
| 179 .profile-sidebar-tree-item.small .icon { | 183 .profile-sidebar-tree-item.small .icon { |
| 180 content: url(Images/profileSmallIcon.png); | 184 content: url(Images/profileSmallIcon.png); |
| 181 } | 185 } |
| 182 | 186 |
| 183 .profile-group-sidebar-tree-item .icon { | 187 .profile-group-sidebar-tree-item .icon { |
| 184 content: url(Images/profileGroupIcon.png); | 188 content: url(Images/profileGroupIcon.png); |
| 185 } | 189 } |
| OLD | NEW |