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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/main/nodeIcon.css

Issue 2939173002: Reland of [DevTools] Show icon in top toolbar when Node target is available (Closed)
Patch Set: Created 3 years, 6 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
(Empty)
1 /*
2 * Copyright 2017 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 .node-icon {
8 width: 28px;
9 height: 26px;
10 background-image: url(Images/nodeIcon.png);
11 background-size: 17px 17px;
12 background-repeat: no-repeat;
13 background-position: center;
14 opacity: 0.8;
15 }
16
17 .node-icon:hover {
18 opacity: 1.0;
19 }
20
21 .node-icon.inactive {
22 filter: grayscale(100%);
23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698