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

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

Issue 2472213005: DevTools: introduce "Track CSS Usage" experiment (Closed)
Patch Set: Unused CSS highlight in sources panel Created 4 years, 1 month 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
11 .CodeMirror-gutter-performance { 11 .CodeMirror-gutter-performance {
12 width: 74px; 12 width: 74px;
13 background-color: white; 13 background-color: white;
14 margin-left: 3px; 14 margin-left: 3px;
15 } 15 }
16 16
17 .CodeMirror-gutter-coverage {
18 width: 5px;
19 background-color: white;
20 margin-left: 3px;
21 }
22
17 .CodeMirror .source-frame-eval-expression { 23 .CodeMirror .source-frame-eval-expression {
18 outline: 0; 24 outline: 0;
19 border: 1px solid rgb(163, 41, 34); 25 border: 1px solid rgb(163, 41, 34);
20 border-left-width: 0; 26 border-left-width: 0;
21 border-right-width: 0; 27 border-right-width: 0;
22 background-color: rgb(255, 255, 194); 28 background-color: rgb(255, 255, 194);
23 } 29 }
24 30
25 .CodeMirror .source-frame-eval-expression-end { 31 .CodeMirror .source-frame-eval-expression-end {
26 border-right-width: 1px; 32 border-right-width: 1px;
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 267
262 .-theme-with-dark-background .cm-line-with-selection .cm-search-highlight { 268 .-theme-with-dark-background .cm-line-with-selection .cm-search-highlight {
263 color: #eee; 269 color: #eee;
264 } 270 }
265 271
266 .CodeMirror .text-editor-line-marker-performance { 272 .CodeMirror .text-editor-line-marker-performance {
267 text-align: right; 273 text-align: right;
268 padding-right: 3px; 274 padding-right: 3px;
269 } 275 }
270 276
277 .CodeMirror .text-editor-line-marker-coverage {
278 text-align: right;
279 padding-right: 2px;
280 background-color: darkred;
281 }
282
283 .CodeMirror .text-editor-line-marker-coverage::after {
284 content: " ";
285 }
286
271 .CodeMirror .text-editor-line-decoration { 287 .CodeMirror .text-editor-line-decoration {
272 position: absolute; 288 position: absolute;
273 } 289 }
274 290
275 .CodeMirror .text-editor-line-decoration-wave { 291 .CodeMirror .text-editor-line-decoration-wave {
276 position: absolute; 292 position: absolute;
277 top: -2px; 293 top: -2px;
278 right: -4px; 294 right: -4px;
279 left: 4px; 295 left: 4px;
280 cursor: pointer; 296 cursor: pointer;
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 388
373 .CodeMirror .auto-complete-text { 389 .CodeMirror .auto-complete-text {
374 color: rgb(128,128,128); 390 color: rgb(128,128,128);
375 } 391 }
376 392
377 /** Prevent the codemirror textarea from stealing PageUp events **/ 393 /** Prevent the codemirror textarea from stealing PageUp events **/
378 .CodeMirror textarea { 394 .CodeMirror textarea {
379 resize: none; 395 resize: none;
380 overflow: hidden; 396 overflow: hidden;
381 } 397 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698