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

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

Issue 2222173002: DevTools: fix blurry breakpoint tip on retina (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 color: #222; 4 color: #222;
5 } 5 }
6 6
7 .CodeMirror-linewidget { 7 .CodeMirror-linewidget {
8 overflow: visible !important; 8 overflow: visible !important;
9 } 9 }
10 10
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 86
87 .cm-line-without-source-mapping .CodeMirror-linenumber { 87 .cm-line-without-source-mapping .CodeMirror-linenumber {
88 color: rgba(128, 128, 128, 0.4); 88 color: rgba(128, 128, 128, 0.4);
89 } 89 }
90 90
91 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber { 91 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber {
92 -webkit-border-image: url(Images/breakpointConditional.png) 1 4 1 1; 92 -webkit-border-image: url(Images/breakpointConditional.png) 1 4 1 1;
93 } 93 }
94 94
95 @media (-webkit-min-device-pixel-ratio: 1.5) { 95 @media (-webkit-min-device-pixel-ratio: 1.5) {
96 .cm-breakpoint .CodeMirror-linenumber { 96 .cm-breakpoint .CodeMirror-gutter-wrapper .CodeMirror-linenumber {
97 -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 } 98 }
99 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber { 99 .cm-breakpoint.cm-breakpoint-conditional .CodeMirror-linenumber {
100 -webkit-border-image: url(Images/breakpointConditional_2x.png) 2 8 2 2; 100 -webkit-border-image: url(Images/breakpointConditional_2x.png) 2 8 2 2;
101 } 101 }
102 } /* media */ 102 } /* media */
103 103
104 .cm-breakpoint-disabled .CodeMirror-linenumber { 104 .cm-breakpoint-disabled .CodeMirror-linenumber {
105 opacity: 0.5; 105 opacity: 0.5;
106 } 106 }
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 background-color: transparent; 350 background-color: transparent;
351 } 351 }
352 352
353 .-theme-with-dark-background .CodeMirror .CodeMirror-selected { 353 .-theme-with-dark-background .CodeMirror .CodeMirror-selected {
354 background-color: #454545; 354 background-color: #454545;
355 } 355 }
356 356
357 .CodeMirror .auto-complete-text{ 357 .CodeMirror .auto-complete-text{
358 color: rgb(128,128,128); 358 color: rgb(128,128,128);
359 } 359 }
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