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

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

Issue 1748993002: DevTools: Initial implementation of line-level CPU profile. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove JSSF to sdk dependency Created 4 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 } 4 }
5 5
6 .CodeMirror-linewidget { 6 .CodeMirror-linewidget {
7 overflow: visible !important; 7 overflow: visible !important;
8 } 8 }
9 9
10 .CodeMirror-profile-info {
11 width: 74px;
12 background-color: white;
13 margin-left: 3px;
14 }
15
16 .CodeMirror-profile-line-info {
17 text-align: right;
18 padding-right: 3px;
19 }
20
10 .CodeMirror .source-frame-eval-expression { 21 .CodeMirror .source-frame-eval-expression {
11 outline: 0; 22 outline: 0;
12 border: 1px solid rgb(163, 41, 34); 23 border: 1px solid rgb(163, 41, 34);
13 border-left-width: 0; 24 border-left-width: 0;
14 border-right-width: 0; 25 border-right-width: 0;
15 background-color: rgb(255, 255, 194); 26 background-color: rgb(255, 255, 194);
16 } 27 }
17 28
18 .CodeMirror .source-frame-eval-expression-end { 29 .CodeMirror .source-frame-eval-expression-end {
19 border-right-width: 1px; 30 border-right-width: 1px;
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 background-color: rgba(255, 0, 0, 0.05); 344 background-color: rgba(255, 0, 0, 0.05);
334 } 345 }
335 346
336 .CodeMirror-activeline .cm-trailing-whitespace { 347 .CodeMirror-activeline .cm-trailing-whitespace {
337 background-color: transparent; 348 background-color: transparent;
338 } 349 }
339 350
340 .-theme-with-dark-background .CodeMirror .CodeMirror-selected { 351 .-theme-with-dark-background .CodeMirror .CodeMirror-selected {
341 background-color: #454545; 352 background-color: #454545;
342 } 353 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698