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/text_editor/cmdevtools.css

Issue 2844603002: DevTools: render continue to location as execution line instead of green dots. (Closed)
Patch Set: same Created 3 years, 8 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 10 matching lines...) Expand all
21 } 21 }
22 22
23 .CodeMirror .source-frame-eval-expression { 23 .CodeMirror .source-frame-eval-expression {
24 outline: 0; 24 outline: 0;
25 border: 1px solid rgb(163, 41, 34); 25 border: 1px solid rgb(163, 41, 34);
26 border-left-width: 0; 26 border-left-width: 0;
27 border-right-width: 0; 27 border-right-width: 0;
28 background-color: rgb(255, 255, 194); 28 background-color: rgb(255, 255, 194);
29 } 29 }
30 30
31 .CodeMirror .source-frame-eval-expression-start {
32 border-left-width: 1px;
33 margin-left: -1px;
34 }
35
31 .CodeMirror .source-frame-eval-expression-end { 36 .CodeMirror .source-frame-eval-expression-end {
32 border-right-width: 1px; 37 border-right-width: 1px;
33 margin-right: -1px; 38 margin-right: -1px;
34 } 39 }
35 40
36 .CodeMirror .source-frame-eval-expression-start { 41 .CodeMirror .source-frame-continue-to-location {
42 outline: 0;
43 border: 1px solid transparent;
44 border-left-width: 0;
45 border-right-width: 0;
46 background-color: rgb(230, 236, 255);
47 cursor: pointer;
48 }
49
50 .CodeMirror .source-frame-continue-to-location:hover {
51 border: 1px solid rgb(121, 141, 254);
52 background-color: rgb(171, 191, 254);
53 }
54 .CodeMirror .source-frame-continue-to-location-start {
37 border-left-width: 1px; 55 border-left-width: 1px;
38 margin-left: -1px; 56 margin-left: -1px;
39 } 57 }
40 58
59 .CodeMirror .source-frame-continue-to-location-end {
60 border-right-width: 1px;
61 margin-right: -1px;
62 }
63
41 .CodeMirror-readonly .CodeMirror-cursor { 64 .CodeMirror-readonly .CodeMirror-cursor {
42 display: none; 65 display: none;
43 } 66 }
44 67
45 .CodeMirror .CodeMirror-gutters { 68 .CodeMirror .CodeMirror-gutters {
46 border-right: 1px solid rgb(187, 187, 187); 69 border-right: 1px solid rgb(187, 187, 187);
47 background-color: #eee; 70 background-color: #eee;
48 } 71 }
49 72
50 .CodeMirror .CodeMirror-linenumber { 73 .CodeMirror .CodeMirror-linenumber {
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 457
435 .CodeMirror .auto-complete-text { 458 .CodeMirror .auto-complete-text {
436 color: rgb(128,128,128); 459 color: rgb(128,128,128);
437 } 460 }
438 461
439 /** Prevent the codemirror textarea from stealing PageUp events **/ 462 /** Prevent the codemirror textarea from stealing PageUp events **/
440 .CodeMirror textarea { 463 .CodeMirror textarea {
441 resize: none; 464 resize: none;
442 overflow: hidden; 465 overflow: hidden;
443 } 466 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698