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

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

Issue 1818263002: Fix regression in inspector breakpoints. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removing duplicated border-style Created 4 years, 9 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/devtools.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/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..89d797fe07db40fe9a451f1a0fea42ac3b7b44e9 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
@@ -89,14 +89,17 @@
.cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber {
-webkit-border-image: url(Images/breakpointConditional.png) 1 4 1 1;
+ border-style: solid;
lushnikov 2016/03/24 04:05:57 no need for this - it's basically slightly more sp
}
@media (-webkit-min-device-pixel-ratio: 1.5) {
.cm-breakpoint .CodeMirror-linenumber {
-webkit-border-image: url(Images/breakpoint_2x.png) 2 8 2 2;
+ border-style: solid;
lushnikov 2016/03/24 04:05:58 ditto
}
.cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber {
-webkit-border-image: url(Images/breakpointConditional_2x.png) 2 8 2 2;
+ border-style: solid;
lushnikov 2016/03/24 04:05:58 ditto
}
} /* media */
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/devtools.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698