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

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

Issue 2881893002: [DevTools] Support async step in from arbitrary position (Closed)
Patch Set: addressed comments Created 3 years, 7 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
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 aac305cae4b6a75bb503e14f1afa633eef358576..de84ee1dd3badb065cf99f7869a3f3097f3d3a6f 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
@@ -64,23 +64,26 @@
.CodeMirror .source-frame-async-step-in {
outline: 0;
- background-color: hsl(100, 46%, 77%);
+ background-color: hsla(100, 46%, 80%, 1);
cursor: pointer;
+ border: 1px solid transparent;
+ border-left-width: 0;
+ border-right-width: 0;
}
-.CodeMirror :not(.source-frame-async-step-in) + .source-frame-async-step-in:before {
- -webkit-user-select: none;
- background-image: -webkit-image-set(url(Images/smallIcons.png) 1x, url(Images/smallIcons_2x.png) 2x);
- background-position: 1px 51px;
- content: "aa";
- color: transparent;
- text-shadow: none;
- height: 10px;
- width: 10px;
+.source-frame-async-step-in-hovered .source-frame-async-step-in {
+ background-color: hsl(96, 53%, 65%);
+ border-color: rgb(100, 154, 100);
}
-.source-frame-async-step-in-hovered .source-frame-async-step-in {
- background-color: hsl(100, 79%, 77%);
+.source-frame-async-step-in-hovered .source-frame-async-step-in-start {
+ border-left-width: 1px;
+ margin-left: -1px;
+}
+
+.source-frame-async-step-in-hovered .source-frame-async-step-in-end {
+ border-right-width: 1px;
+ margin-right: -1px;
}
.CodeMirror-readonly .CodeMirror-cursor {
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698