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

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

Issue 2844603002: DevTools: render continue to location as execution line instead of green dots. (Closed)
Patch Set: same Created 3 years, 8 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 004fa9970493f6ddbbdc549a48961c096491b222..f1a8984b07b60394675ed86e3b4dd4f25f44d8b0 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
@@ -28,16 +28,39 @@
background-color: rgb(255, 255, 194);
}
+.CodeMirror .source-frame-eval-expression-start {
+ border-left-width: 1px;
+ margin-left: -1px;
+}
+
.CodeMirror .source-frame-eval-expression-end {
border-right-width: 1px;
margin-right: -1px;
}
-.CodeMirror .source-frame-eval-expression-start {
+.CodeMirror .source-frame-continue-to-location {
+ outline: 0;
+ border: 1px solid transparent;
+ border-left-width: 0;
+ border-right-width: 0;
+ background-color: rgb(230, 236, 255);
+ cursor: pointer;
+}
+
+.CodeMirror .source-frame-continue-to-location:hover {
+ border: 1px solid rgb(121, 141, 254);
+ background-color: rgb(171, 191, 254);
+}
+.CodeMirror .source-frame-continue-to-location-start {
border-left-width: 1px;
margin-left: -1px;
}
+.CodeMirror .source-frame-continue-to-location-end {
+ border-right-width: 1px;
+ margin-right: -1px;
+}
+
.CodeMirror-readonly .CodeMirror-cursor {
display: none;
}

Powered by Google App Engine
This is Rietveld 408576698