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

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

Issue 2721153002: DevTools: render continue-to-location decoration as an arrow. (Closed)
Patch Set: Created 3 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
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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 .cm-inline-breakpoint.cm-inline-conditional { 155 .cm-inline-breakpoint.cm-inline-conditional {
156 background-color: #ef9d0d; 156 background-color: #ef9d0d;
157 } 157 }
158 158
159 .cm-inline-breakpoint.cm-inline-disabled { 159 .cm-inline-breakpoint.cm-inline-disabled {
160 opacity: 0.5; 160 opacity: 0.5;
161 } 161 }
162 162
163 .cm-continue-to-location { 163 .cm-continue-to-location {
164 cursor: pointer; 164 cursor: pointer;
165 transform: scale(0.7); 165 opacity: 0.5;
166 position: relative;
167 top: 2px;
168 }
169
170 .cm-continue-to-location:hover {
171 opacity: 1;
166 } 172 }
167 173
168 div.CodeMirror span.CodeMirror-matchingbracket { 174 div.CodeMirror span.CodeMirror-matchingbracket {
169 background-color: rgba(0, 0, 0, 0.07); 175 background-color: rgba(0, 0, 0, 0.07);
170 border-bottom: 1px solid rgba(0, 0, 0, 0.5); 176 border-bottom: 1px solid rgba(0, 0, 0, 0.5);
171 color: unset; 177 color: unset;
172 } 178 }
173 179
174 div.CodeMirror span.CodeMirror-nonmatchingbracket { 180 div.CodeMirror span.CodeMirror-nonmatchingbracket {
175 background-color: rgba(255, 0, 0, 0.07); 181 background-color: rgba(255, 0, 0, 0.07);
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 429
424 .CodeMirror .auto-complete-text { 430 .CodeMirror .auto-complete-text {
425 color: rgb(128,128,128); 431 color: rgb(128,128,128);
426 } 432 }
427 433
428 /** Prevent the codemirror textarea from stealing PageUp events **/ 434 /** Prevent the codemirror textarea from stealing PageUp events **/
429 .CodeMirror textarea { 435 .CodeMirror textarea {
430 resize: none; 436 resize: none;
431 overflow: hidden; 437 overflow: hidden;
432 } 438 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698