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

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

Issue 2120603002: DevTools: gray out linenumbers for the unmapped source code lines (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: disallow setting breakpoint on lines without sourcemapping Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/devtools/front_end/source_frame/cmdevtools.css
diff --git a/third_party/WebKit/Source/devtools/front_end/source_frame/cmdevtools.css b/third_party/WebKit/Source/devtools/front_end/source_frame/cmdevtools.css
index ef520c6f868cf282271b8c608c10fdbdfbead775..019adb69e0eda44d65df81ef65e85d6d32b27259 100644
--- a/third_party/WebKit/Source/devtools/front_end/source_frame/cmdevtools.css
+++ b/third_party/WebKit/Source/devtools/front_end/source_frame/cmdevtools.css
@@ -71,7 +71,7 @@
to { background-color: rgb(171, 191, 254); }
}
-.cm-breakpoint .CodeMirror-linenumber {
+.cm-breakpoint .CodeMirror-gutter-wrapper .CodeMirror-linenumber {
color: white;
border-width: 1px 4px 1px 1px !important;
-webkit-border-image: url(Images/breakpoint.png) 1 4 1 1;
@@ -83,8 +83,8 @@
border-style: solid;
}
-.cm-line-without-source-mapping {
- background-color: #fafafa;
+.cm-line-without-source-mapping .CodeMirror-linenumber {
+ color: rgba(128, 128, 128, 0.4);
}
.cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber {
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698