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/navigatorView.css

Issue 2442543002: DevTools: New snippet button and icon (Closed)
Patch Set: Undo security stuff Created 4 years, 2 months 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
dgozman 2016/10/20 20:19:27 nit: extra blank line
einbinder 2016/10/20 20:56:13 Done.
109
104 .navigator-sm-stylesheet-tree-item .icon, 110 .navigator-sm-stylesheet-tree-item .icon,
105 .navigator-stylesheet-tree-item .icon { 111 .navigator-stylesheet-tree-item .icon {
106 background: linear-gradient(45deg, hsl(256, 50%, 50%), hsl(256, 50%, 70%)); 112 background: linear-gradient(45deg, hsl(256, 50%, 50%), hsl(256, 50%, 70%));
107 } 113 }
108 114
109 .navigator-image-tree-item .icon, 115 .navigator-image-tree-item .icon,
110 .navigator-font-tree-item .icon { 116 .navigator-font-tree-item .icon {
111 background: linear-gradient(45deg, hsl(109, 33%, 50%), hsl(109, 33%, 70%)); 117 background: linear-gradient(45deg, hsl(109, 33%, 50%), hsl(109, 33%, 70%));
112 } 118 }
113 119
114 .navigator-sm-folder-tree-item .tree-element-title, 120 .navigator-sm-folder-tree-item .tree-element-title,
115 .navigator-sm-script-tree-item .tree-element-title, 121 .navigator-sm-script-tree-item .tree-element-title,
116 .navigator-sm-stylesheet-tree-item .tree-element-title { 122 .navigator-sm-stylesheet-tree-item .tree-element-title {
117 font-style: italic; 123 font-style: italic;
118 } 124 }
125
126 .snippets-navigator-toolbar {
127 border-bottom: 1px solid #ccc;
128 padding-left: 8px;
129 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698