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

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

Issue 1822653004: DevTools: fix breakpoints rendering (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « no previous file | 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 73
74 .cm-breakpoint .CodeMirror-linenumber { 74 .cm-breakpoint .CodeMirror-linenumber {
75 color: white; 75 color: white;
76 border-width: 1px 4px 1px 1px !important; 76 border-width: 1px 4px 1px 1px !important;
77 -webkit-border-image: url(Images/breakpoint.png) 1 4 1 1; 77 -webkit-border-image: url(Images/breakpoint.png) 1 4 1 1;
78 margin: 0 0 0 3px !important; 78 margin: 0 0 0 3px !important;
79 padding-right: 3px; 79 padding-right: 3px;
80 padding-left: 1px; 80 padding-left: 1px;
81 height: 11px; 81 height: 11px;
82 line-height: 12px !important; 82 line-height: 12px !important;
83 border-style: solid;
83 } 84 }
84 85
85 .cm-line-without-source-mapping { 86 .cm-line-without-source-mapping {
86 background-color: #fafafa; 87 background-color: #fafafa;
87 } 88 }
88 89
89 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber { 90 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber {
90 -webkit-border-image: url(Images/breakpointConditional.png) 1 4 1 1; 91 -webkit-border-image: url(Images/breakpointConditional.png) 1 4 1 1;
91 } 92 }
92 93
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 background-color: rgba(255, 0, 0, 0.05); 345 background-color: rgba(255, 0, 0, 0.05);
345 } 346 }
346 347
347 .CodeMirror-activeline .cm-trailing-whitespace { 348 .CodeMirror-activeline .cm-trailing-whitespace {
348 background-color: transparent; 349 background-color: transparent;
349 } 350 }
350 351
351 .-theme-with-dark-background .CodeMirror .CodeMirror-selected { 352 .-theme-with-dark-background .CodeMirror .CodeMirror-selected {
352 background-color: #454545; 353 background-color: #454545;
353 } 354 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698