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

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

Issue 2849973003: DevTools: remove continue to location from behind experiment. (Closed)
Patch Set: same? Created 3 years, 7 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/sources/JavaScriptSourceFrame.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 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 border-left-width: 0; 44 border-left-width: 0;
45 border-right-width: 0; 45 border-right-width: 0;
46 background-color: rgb(230, 236, 255); 46 background-color: rgb(230, 236, 255);
47 cursor: pointer; 47 cursor: pointer;
48 } 48 }
49 49
50 .CodeMirror .source-frame-continue-to-location:hover { 50 .CodeMirror .source-frame-continue-to-location:hover {
51 border: 1px solid rgb(121, 141, 254); 51 border: 1px solid rgb(121, 141, 254);
52 background-color: rgb(171, 191, 254); 52 background-color: rgb(171, 191, 254);
53 } 53 }
54
54 .CodeMirror .source-frame-continue-to-location-start { 55 .CodeMirror .source-frame-continue-to-location-start {
55 border-left-width: 1px; 56 border-left-width: 1px;
56 margin-left: -1px; 57 margin-left: -1px;
57 } 58 }
58 59
59 .CodeMirror .source-frame-continue-to-location-end { 60 .CodeMirror .source-frame-continue-to-location-end {
60 border-right-width: 1px; 61 border-right-width: 1px;
61 margin-right: -1px; 62 margin-right: -1px;
62 } 63 }
63 64
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 left: 5%; 238 left: 5%;
238 } 239 }
239 240
240 .show-whitespaces .CodeMirror .cm-tab:before { 241 .show-whitespaces .CodeMirror .cm-tab:before {
241 display: block !important; 242 display: block !important;
242 } 243 }
243 244
244 .cm-execution-line, 245 .cm-execution-line,
245 .-theme-selection-color { 246 .-theme-selection-color {
246 background-color: rgb(230, 236, 255); 247 background-color: rgb(230, 236, 255);
248 }
249
250 .cm-execution-line-outline,
251 .-theme-selection-color {
247 outline: 1px solid rgb(64, 115, 244); 252 outline: 1px solid rgb(64, 115, 244);
248 } 253 }
249 254
250 .cm-execution-line-tail, 255 .cm-execution-line-tail,
251 .-theme-selection-color { 256 .-theme-selection-color {
252 background-color: rgb(171, 191, 254); 257 background-color: rgb(171, 191, 254);
253 } 258 }
254 259
255 .cm-execution-line .CodeMirror-linenumber, 260 .cm-execution-line .CodeMirror-linenumber,
256 .-theme-selection-color { 261 .-theme-selection-color {
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
457 462
458 .CodeMirror .auto-complete-text { 463 .CodeMirror .auto-complete-text {
459 color: rgb(128,128,128); 464 color: rgb(128,128,128);
460 } 465 }
461 466
462 /** Prevent the codemirror textarea from stealing PageUp events **/ 467 /** Prevent the codemirror textarea from stealing PageUp events **/
463 .CodeMirror textarea { 468 .CodeMirror textarea {
464 resize: none; 469 resize: none;
465 overflow: hidden; 470 overflow: hidden;
466 } 471 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698