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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/sources/navigatorTree.css

Issue 2442543002: DevTools: New snippet button and icon (Closed)
Patch Set: space in css Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 90
91 .navigator-nw-folder-tree-item .icon { 91 .navigator-nw-folder-tree-item .icon {
92 background: linear-gradient(45deg, hsl(210, 82%, 65%), hsl(210, 82%, 80%)); 92 background: linear-gradient(45deg, hsl(210, 82%, 65%), hsl(210, 82%, 80%));
93 } 93 }
94 94
95 .navigator-worker-tree-item .icon { 95 .navigator-worker-tree-item .icon {
96 -webkit-mask-position: -320px -144px; 96 -webkit-mask-position: -320px -144px;
97 } 97 }
98 98
99 .navigator-sm-script-tree-item .icon, 99 .navigator-sm-script-tree-item .icon,
100 .navigator-script-tree-item .icon { 100 .navigator-script-tree-item .icon,
101 .navigator-snippet-tree-item .icon {
101 background: linear-gradient(45deg, hsl(48, 70%, 50%), hsl(48, 70%, 70%)); 102 background: linear-gradient(45deg, hsl(48, 70%, 50%), hsl(48, 70%, 70%));
102 } 103 }
103 104
105 .navigator-snippet-tree-item .icon {
106 -webkit-mask-position: -224px -96px;
107 }
108
104 .navigator-sm-stylesheet-tree-item .icon, 109 .navigator-sm-stylesheet-tree-item .icon,
105 .navigator-stylesheet-tree-item .icon { 110 .navigator-stylesheet-tree-item .icon {
106 background: linear-gradient(45deg, hsl(256, 50%, 50%), hsl(256, 50%, 70%)); 111 background: linear-gradient(45deg, hsl(256, 50%, 50%), hsl(256, 50%, 70%));
107 } 112 }
108 113
109 .navigator-image-tree-item .icon, 114 .navigator-image-tree-item .icon,
110 .navigator-font-tree-item .icon { 115 .navigator-font-tree-item .icon {
111 background: linear-gradient(45deg, hsl(109, 33%, 50%), hsl(109, 33%, 70%)); 116 background: linear-gradient(45deg, hsl(109, 33%, 50%), hsl(109, 33%, 70%));
112 } 117 }
113 118
114 .navigator-sm-folder-tree-item .tree-element-title, 119 .navigator-sm-folder-tree-item .tree-element-title,
115 .navigator-sm-script-tree-item .tree-element-title, 120 .navigator-sm-script-tree-item .tree-element-title,
116 .navigator-sm-stylesheet-tree-item .tree-element-title { 121 .navigator-sm-stylesheet-tree-item .tree-element-title {
117 font-style: italic; 122 font-style: italic;
118 } 123 }
124
125 :host{
126 overflow-y: auto;
127 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698