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

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: rebaseline 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-linemarkers-performance {
11 width: 74px;
pfeldman 2016/03/07 19:57:50 4 space indent?
alph 2016/03/08 00:57:42 Done.
12 background-color: white;
13 margin-left: 3px;
14 }
15
10 .CodeMirror .source-frame-eval-expression { 16 .CodeMirror .source-frame-eval-expression {
11 outline: 0; 17 outline: 0;
12 border: 1px solid rgb(163, 41, 34); 18 border: 1px solid rgb(163, 41, 34);
13 border-left-width: 0; 19 border-left-width: 0;
14 border-right-width: 0; 20 border-right-width: 0;
15 background-color: rgb(255, 255, 194); 21 background-color: rgb(255, 255, 194);
16 } 22 }
17 23
18 .CodeMirror .source-frame-eval-expression-end { 24 .CodeMirror .source-frame-eval-expression-end {
19 border-right-width: 1px; 25 border-right-width: 1px;
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 padding-left: 5px; 272 padding-left: 5px;
267 color: #222; 273 color: #222;
268 -webkit-user-select: text; 274 -webkit-user-select: text;
269 } 275 }
270 276
271 .CodeMirror .cm-execution-line .text-editor-value-decoration { 277 .CodeMirror .cm-execution-line .text-editor-value-decoration {
272 background-color: transparent; 278 background-color: transparent;
273 opacity: 0.5; 279 opacity: 0.5;
274 } 280 }
275 281
282 .text-editor-performance-info {
283 text-align: right;
pfeldman 2016/03/07 19:57:50 ditto
alph 2016/03/08 00:57:42 Done.
284 padding-right: 3px;
285 }
286
276 .text-editor-messages-description-container { 287 .text-editor-messages-description-container {
277 display: inline-block; 288 display: inline-block;
278 } 289 }
279 290
280 .text-editor-row-message:first-child { 291 .text-editor-row-message:first-child {
281 border-top-width: 0; 292 border-top-width: 0;
282 } 293 }
283 294
284 .text-editor-row-message { 295 .text-editor-row-message {
285 border-top: 1px solid rgb(215, 215, 215); 296 border-top: 1px solid rgb(215, 215, 215);
(...skipping 47 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