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

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-cssTracking {
caseq 2016/11/04 21:10:02 I don't think that CodeMirror should be concerned
18 width: 20px;
19 background-color: white;
20 margin-left: 3px;
21 }
22
23 .CodeMirror-gutter-cssTracking::after{
24 content: " ";
25 }
26
17 .CodeMirror .source-frame-eval-expression { 27 .CodeMirror .source-frame-eval-expression {
18 outline: 0; 28 outline: 0;
19 border: 1px solid rgb(163, 41, 34); 29 border: 1px solid rgb(163, 41, 34);
20 border-left-width: 0; 30 border-left-width: 0;
21 border-right-width: 0; 31 border-right-width: 0;
22 background-color: rgb(255, 255, 194); 32 background-color: rgb(255, 255, 194);
23 } 33 }
24 34
25 .CodeMirror .source-frame-eval-expression-end { 35 .CodeMirror .source-frame-eval-expression-end {
26 border-right-width: 1px; 36 border-right-width: 1px;
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 271
262 .-theme-with-dark-background .cm-line-with-selection .cm-search-highlight { 272 .-theme-with-dark-background .cm-line-with-selection .cm-search-highlight {
263 color: #eee; 273 color: #eee;
264 } 274 }
265 275
266 .CodeMirror .text-editor-line-marker-performance { 276 .CodeMirror .text-editor-line-marker-performance {
267 text-align: right; 277 text-align: right;
268 padding-right: 3px; 278 padding-right: 3px;
269 } 279 }
270 280
281 .CodeMirror .text-editor-line-marker-cssTracking {
282 text-align: right;
283 padding-right: 3px;
284 background-color: red;
285 }
286
287 .CodeMirror .text-editor-line-marker-cssTracking::after{
288 content: " ";
289 }
290
271 .CodeMirror .text-editor-line-decoration { 291 .CodeMirror .text-editor-line-decoration {
272 position: absolute; 292 position: absolute;
273 } 293 }
274 294
275 .CodeMirror .text-editor-line-decoration-wave { 295 .CodeMirror .text-editor-line-decoration-wave {
276 position: absolute; 296 position: absolute;
277 top: -2px; 297 top: -2px;
278 right: -4px; 298 right: -4px;
279 left: 4px; 299 left: 4px;
280 cursor: pointer; 300 cursor: pointer;
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 } 391 }
372 392
373 .CodeMirror .auto-complete-text { 393 .CodeMirror .auto-complete-text {
374 color: rgb(128,128,128); 394 color: rgb(128,128,128);
375 } 395 }
376 396
377 /** Prevent the codemirror textarea from stealing PageUp events **/ 397 /** Prevent the codemirror textarea from stealing PageUp events **/
378 .CodeMirror textarea { 398 .CodeMirror textarea {
379 resize: none; 399 resize: none;
380 overflow: hidden; 400 overflow: hidden;
381 } 401 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698