Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(587)

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/security/sidebar.css

Issue 1412093008: Fix regression: background artifact for origin glyphs of the '.security-property-unknown' persuasio… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: No background treatment for security-property-unknown origin sidebar items Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2015 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2015 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 5
6 .tree-outline { 6 .tree-outline {
7 padding: 0; 7 padding: 0;
8 } 8 }
9 9
10 .tree-outline:focus li.selected .lock-icon-neutral { 10 .tree-outline:focus li.selected .lock-icon-neutral {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 .tree-outline .sidebar-tree-section + .children > .sidebar-tree-item { 42 .tree-outline .sidebar-tree-section + .children > .sidebar-tree-item {
43 padding-left: 16px; 43 padding-left: 16px;
44 } 44 }
45 45
46 .tree-outline .sidebar-tree-item .lock-icon, 46 .tree-outline .sidebar-tree-item .lock-icon,
47 .tree-outline .sidebar-tree-item .security-property { 47 .tree-outline .sidebar-tree-item .security-property {
48 float: left; 48 float: left;
49 margin-right: 2px; 49 margin-right: 2px;
50 } 50 }
51 51
52 .tree-outline .security-sidebar-tree-item.selected .icon { 52 .tree-outline .security-sidebar-tree-item.selected .icon:not(.security-property- unknown) {
53 background-image: none; 53 background-image: none;
54 background-color: #fff; 54 background-color: #fff;
55 } 55 }
56 56
57 .tree-outline li.selected .lock-icon-neutral { 57 .tree-outline li.selected .lock-icon-neutral {
58 background-image: none; 58 background-image: none;
59 background-color: #5a5a5a; 59 background-color: #5a5a5a;
60 -webkit-mask-image: url(Images/securityStateNeutral.svg); 60 -webkit-mask-image: url(Images/securityStateNeutral.svg);
61 -webkit-mask-size: cover; 61 -webkit-mask-size: cover;
62 } 62 }
63 63
64 .tree-outline .security-sidebar-tree-item.selected .security-property-insecure { 64 .tree-outline .security-sidebar-tree-item.selected .security-property-insecure {
65 -webkit-mask-image: url(Images/securityPropertyInsecure.svg); 65 -webkit-mask-image: url(Images/securityPropertyInsecure.svg);
66 } 66 }
67 67
68 .security-sidebar-tree-item.selected .security-property-neutral, 68 .security-sidebar-tree-item.selected .security-property-neutral,
69 .security-sidebar-tree-item.selected .security-property-warning { 69 .security-sidebar-tree-item.selected .security-property-warning {
70 -webkit-mask-image: url(Images/securityPropertyWarning.svg); 70 -webkit-mask-image: url(Images/securityPropertyWarning.svg);
71 } 71 }
72 72
73 .security-sidebar-tree-item.selected .security-property-secure { 73 .security-sidebar-tree-item.selected .security-property-secure {
74 -webkit-mask-image: url(Images/securityPropertySecure.svg); 74 -webkit-mask-image: url(Images/securityPropertySecure.svg);
75 } 75 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698