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

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: Adding the CSS fix in compatibility script 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 a03ddad525972d2379fb00973451363a0e28210a..8536797a6e51cc5e51b360ad788d214a23416189 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
@@ -75,6 +75,7 @@
color: white;
border-width: 1px 4px 1px 1px !important;
-webkit-border-image: url(Images/breakpoint.png) 1 4 1 1;
+ border-style: solid;
margin: 0 0 0 3px !important;
padding-right: 3px;
padding-left: 1px;
@@ -88,14 +89,17 @@
.cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber {
-webkit-border-image: url(Images/breakpointConditional.png) 1 4 1 1;
+ border-style: solid;
}
@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;
}
.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/23 22:10:49 no need to change this file altogether - this has
}
} /* 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