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

Unified Diff: third_party/WebKit/Source/devtools/front_end/text_editor/cmdevtools.css

Issue 2721153002: DevTools: render continue-to-location decoration as an arrow. (Closed)
Patch Set: Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/text_editor/cmdevtools.css
diff --git a/third_party/WebKit/Source/devtools/front_end/text_editor/cmdevtools.css b/third_party/WebKit/Source/devtools/front_end/text_editor/cmdevtools.css
index 48e272a4f6353d2cf6a067f3ea2d39ccbde0af22..869ecc96ba9a04ba31698aa325c44db8c2f5d480 100644
--- a/third_party/WebKit/Source/devtools/front_end/text_editor/cmdevtools.css
+++ b/third_party/WebKit/Source/devtools/front_end/text_editor/cmdevtools.css
@@ -162,7 +162,13 @@
.cm-continue-to-location {
cursor: pointer;
- transform: scale(0.7);
+ opacity: 0.5;
+ position: relative;
+ top: 2px;
+}
+
+.cm-continue-to-location:hover {
+ opacity: 1;
}
div.CodeMirror span.CodeMirror-matchingbracket {

Powered by Google App Engine
This is Rietveld 408576698