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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 .CodeMirror { 1 .CodeMirror {
2 line-height: 1.2em !important; 2 line-height: 1.2em !important;
3 background-color: transparent !important; 3 background-color: transparent !important;
4 } 4 }
5 5
6 .CodeMirror-linewidget { 6 .CodeMirror-linewidget {
7 overflow: visible !important; 7 overflow: visible !important;
8 } 8 }
9 9
10 .CodeMirror-gutter-performance { 10 .CodeMirror-gutter-performance {
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 line-height: 12px !important; 82 line-height: 12px !important;
83 border-style: solid; 83 border-style: solid;
84 } 84 }
85 85
86 .cm-line-without-source-mapping { 86 .cm-line-without-source-mapping {
87 background-color: #fafafa; 87 background-color: #fafafa;
88 } 88 }
89 89
90 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber { 90 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber {
91 -webkit-border-image: url(Images/breakpointConditional.png) 1 4 1 1; 91 -webkit-border-image: url(Images/breakpointConditional.png) 1 4 1 1;
92 border-style: solid;
lushnikov 2016/03/24 04:05:57 no need for this - it's basically slightly more sp
92 } 93 }
93 94
94 @media (-webkit-min-device-pixel-ratio: 1.5) { 95 @media (-webkit-min-device-pixel-ratio: 1.5) {
95 .cm-breakpoint .CodeMirror-linenumber { 96 .cm-breakpoint .CodeMirror-linenumber {
96 -webkit-border-image: url(Images/breakpoint_2x.png) 2 8 2 2; 97 -webkit-border-image: url(Images/breakpoint_2x.png) 2 8 2 2;
98 border-style: solid;
lushnikov 2016/03/24 04:05:58 ditto
97 } 99 }
98 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber { 100 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber {
99 -webkit-border-image: url(Images/breakpointConditional_2x.png) 2 8 2 2; 101 -webkit-border-image: url(Images/breakpointConditional_2x.png) 2 8 2 2;
102 border-style: solid;
lushnikov 2016/03/24 04:05:58 ditto
100 } 103 }
101 } /* media */ 104 } /* media */
102 105
103 .cm-breakpoint-disabled .CodeMirror-linenumber { 106 .cm-breakpoint-disabled .CodeMirror-linenumber {
104 opacity: 0.5; 107 opacity: 0.5;
105 } 108 }
106 109
107 .breakpoints-deactivated .cm-breakpoint .CodeMirror-linenumber { 110 .breakpoints-deactivated .cm-breakpoint .CodeMirror-linenumber {
108 opacity: 0.5; 111 opacity: 0.5;
109 } 112 }
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 background-color: rgba(255, 0, 0, 0.05); 348 background-color: rgba(255, 0, 0, 0.05);
346 } 349 }
347 350
348 .CodeMirror-activeline .cm-trailing-whitespace { 351 .CodeMirror-activeline .cm-trailing-whitespace {
349 background-color: transparent; 352 background-color: transparent;
350 } 353 }
351 354
352 .-theme-with-dark-background .CodeMirror .CodeMirror-selected { 355 .-theme-with-dark-background .CodeMirror .CodeMirror-selected {
353 background-color: #454545; 356 background-color: #454545;
354 } 357 }
OLDNEW
« 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