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

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

Issue 2881893002: [DevTools] Support async step in from arbitrary position (Closed)
Patch Set: addressed comments 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 margin-left: -1px; 57 margin-left: -1px;
58 } 58 }
59 59
60 .CodeMirror .source-frame-continue-to-location-end { 60 .CodeMirror .source-frame-continue-to-location-end {
61 border-right-width: 1px; 61 border-right-width: 1px;
62 margin-right: -1px; 62 margin-right: -1px;
63 } 63 }
64 64
65 .CodeMirror .source-frame-async-step-in { 65 .CodeMirror .source-frame-async-step-in {
66 outline: 0; 66 outline: 0;
67 background-color: hsl(100, 46%, 77%); 67 background-color: hsla(100, 46%, 80%, 1);
68 cursor: pointer; 68 cursor: pointer;
69 } 69 border: 1px solid transparent;
70 70 border-left-width: 0;
71 .CodeMirror :not(.source-frame-async-step-in) + .source-frame-async-step-in:befo re { 71 border-right-width: 0;
72 -webkit-user-select: none;
73 background-image: -webkit-image-set(url(Images/smallIcons.png) 1x, url(Image s/smallIcons_2x.png) 2x);
74 background-position: 1px 51px;
75 content: "aa";
76 color: transparent;
77 text-shadow: none;
78 height: 10px;
79 width: 10px;
80 } 72 }
81 73
82 .source-frame-async-step-in-hovered .source-frame-async-step-in { 74 .source-frame-async-step-in-hovered .source-frame-async-step-in {
83 background-color: hsl(100, 79%, 77%); 75 background-color: hsl(96, 53%, 65%);
76 border-color: rgb(100, 154, 100);
77 }
78
79 .source-frame-async-step-in-hovered .source-frame-async-step-in-start {
80 border-left-width: 1px;
81 margin-left: -1px;
82 }
83
84 .source-frame-async-step-in-hovered .source-frame-async-step-in-end {
85 border-right-width: 1px;
86 margin-right: -1px;
84 } 87 }
85 88
86 .CodeMirror-readonly .CodeMirror-cursor { 89 .CodeMirror-readonly .CodeMirror-cursor {
87 display: none; 90 display: none;
88 } 91 }
89 92
90 .CodeMirror .CodeMirror-gutters { 93 .CodeMirror .CodeMirror-gutters {
91 border-right: 1px solid rgb(187, 187, 187); 94 border-right: 1px solid rgb(187, 187, 187);
92 background-color: #eee; 95 background-color: #eee;
93 } 96 }
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 481
479 .CodeMirror .auto-complete-text { 482 .CodeMirror .auto-complete-text {
480 color: rgb(128,128,128); 483 color: rgb(128,128,128);
481 } 484 }
482 485
483 /** Prevent the codemirror textarea from stealing PageUp events **/ 486 /** Prevent the codemirror textarea from stealing PageUp events **/
484 .CodeMirror textarea { 487 .CodeMirror textarea {
485 resize: none; 488 resize: none;
486 overflow: hidden; 489 overflow: hidden;
487 } 490 }
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