-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reland of [DevTools] Show icon in top toolbar when Node target is ava…
…ilable (patchset #1 id:1 of https://codereview.chromium.org/2932703002/ ) Reason for revert: Fixed the original crash cause Original issue's description: > Revert of [DevTools] Show icon in top toolbar when Node target is available (patchset #3 id:40001 of https://codereview.chromium.org/2890973002/ ) > > Reason for revert: > See issue 727517 > > Original issue's description: > > [DevTools] Show icon in top toolbar when Node target is available > > > > Clicking on it opens dedicated Node frontend. > > > > BUG=706916 > > > > Review-Url: https://codereview.chromium.org/2890973002 > > Cr-Commit-Position: refs/heads/master@{#472739} > > Committed: https://chromium.googlesource.com/chromium/src/+/ad3ffab411cc396ffb20c1d35dcff6de038f14b4 > > [email protected] > # Not skipping CQ checks because original CL landed more than 1 days ago. > BUG=706916 > > Review-Url: https://codereview.chromium.org/2932703002 > Cr-Commit-Position: refs/heads/master@{#478017} > Committed: https://chromium.googlesource.com/chromium/src/+/24309d877571d159bc14f871671ff0630d6f8d32 [email protected] # Not skipping CQ checks because original CL landed more than 1 days ago. BUG=706916,727517 Review-Url: https://codereview.chromium.org/2939173002 Cr-Commit-Position: refs/heads/master@{#479882}
- Loading branch information
Showing
8 changed files
with
78 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* | ||
* Copyright 2017 The Chromium Authors. All rights reserved. | ||
* Use of this source code is governed by a BSD-style license that can be | ||
* found in the LICENSE file. | ||
*/ | ||
|
||
.node-icon { | ||
width: 28px; | ||
height: 26px; | ||
background-image: url(Images/nodeIcon.png); | ||
background-size: 17px 17px; | ||
background-repeat: no-repeat; | ||
background-position: center; | ||
opacity: 0.8; | ||
} | ||
|
||
.node-icon:hover { | ||
opacity: 1.0; | ||
} | ||
|
||
.node-icon.inactive { | ||
filter: grayscale(100%); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters