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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/settings/settingsScreen.css

Issue 1422703003: [DevTools] Use ListWidget for rendering of EditFileSystemView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 /* 1 /*
2 * Copyright (c) 2015 The Chromium Authors. All rights reserved. 2 * Copyright (c) 2015 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 .help-window-main { 7 .help-window-main {
8 color: rgb(48, 57, 66); 8 color: rgb(48, 57, 66);
9 background-color: white; 9 background-color: white;
10 padding: 11px 0 0 0; 10 padding: 11px 0 0 0;
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 267
268 #workspace-tab-content .button:hover { 268 #workspace-tab-content .button:hover {
269 opacity: 1.0 !important; 269 opacity: 1.0 !important;
270 } 270 }
271 271
272 #workspace-tab-content .help-block { 272 #workspace-tab-content .help-block {
273 width: auto; 273 width: auto;
274 margin-right: 20px; 274 margin-right: 20px;
275 } 275 }
276 276
277 .file-system-mapping-view {
278 margin-left: 30px;
279 margin-right: 10px;
280 }
281
277 .settings-tab .settings-list { 282 .settings-tab .settings-list {
278 border: 1px solid hsl(0, 0%, 85%); 283 border: 1px solid hsl(0, 0%, 85%);
279 border-radius: 2px; 284 border-radius: 2px;
280 } 285 }
281 286
282 .settings-tab .settings-list .settings-list-item:not(.editable) { 287 .settings-tab .settings-list .settings-list-item:not(.editable) {
283 background-color: #eee; 288 background-color: #eee;
284 } 289 }
285 290
286 .excluded-folders-list .settings-list-item:not(.editable) .settings-list-column- path:before, 291 .excluded-folders-list .settings-list-item:not(.editable) .settings-list-column- path:before,
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 border-radius: 2px; 396 border-radius: 2px;
392 color: #444444; 397 color: #444444;
393 padding: 3px; 398 padding: 3px;
394 } 399 }
395 select.list-column-editor { 400 select.list-column-editor {
396 padding: 2px; 401 padding: 2px;
397 margin-left: 0; 402 margin-left: 0;
398 } 403 }
399 404
400 .settings-tab .file-system-container { 405 .settings-tab .file-system-container {
401 margin-bottom: 20px; 406 padding-bottom: 20px;
407 margin-bottom: 18px;
408 padding: 0 8px;
409 border-left: 1px solid hsl(0, 0%, 90%);
402 } 410 }
403 411
404 .settings-tab .file-system-header { 412 .settings-tab .file-system-header {
405 display: flex; 413 display: flex;
406 flex-direction: row; 414 flex-direction: row;
407 align-items: baseline; 415 align-items: center;
416 }
417
418 .settings-tab .file-system-name {
419 font-weight: bold;
420 flex: none;
421 margin-right: 10px;
422 font-size: 15px;
408 } 423 }
409 424
410 .settings-tab .file-system-path { 425 .settings-tab .file-system-path {
411 white-space: nowrap; 426 white-space: nowrap;
412 font-size: 1.4em;
413 padding-right: 5px;
414 -webkit-box-flex: 1;
415 color: hsl(210, 16%, 22%);
416 margin-bottom: 8px;
417 overflow: hidden; 427 overflow: hidden;
418 flex: 0 1 auto;
419 margin-right: 5px;
420 text-overflow: ellipsis; 428 text-overflow: ellipsis;
429 flex: auto;
421 } 430 }
422 431
423 .settings-tab .file-system-path-name { 432 .settings-tab .file-system-remove {
424 padding-right: 6px; 433 flex: none;
425 font-weight: bold; 434 margin-left: 10px;
426 } 435 }
427 436
428 .file-systems-list .settings-list-item .list-column.settings-list-column-path { 437 .file-systems-list .settings-list-item .list-column.settings-list-column-path {
429 width: 100%; 438 width: 100%;
430 } 439 }
431 440
432 .file-mappings-list .settings-list-item .list-column.settings-list-column-url {
433 width: 50%;
434 }
435
436 .file-mappings-list .settings-list-item .list-column.settings-list-column-path {
437 width: 50%;
438 }
439
440 .excluded-folders-header {
441 margin-top: 10px;
442 }
443
444 .excluded-folders-list .settings-list-item .list-column.settings-list-column-pat h {
445 width: 100%;
446 }
447
448 .settings-tab .settings-list .settings-list-item.disabled .settings-list-column- pattern .list-column-text { 441 .settings-tab .settings-list .settings-list-item.disabled .settings-list-column- pattern .list-column-text {
449 color: #666; 442 color: #666;
450 text-decoration: line-through; 443 text-decoration: line-through;
451 } 444 }
452 445
453 .settings-dialog { 446 .settings-dialog {
454 display: -webkit-flex; 447 display: -webkit-flex;
455 -webkit-flex-direction: column; 448 -webkit-flex-direction: column;
456 } 449 }
457 450
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 display: none; 499 display: none;
507 } 500 }
508 501
509 .settings-experiment-hidden label { 502 .settings-experiment-hidden label {
510 background-color: #ddd; 503 background-color: #ddd;
511 } 504 }
512 505
513 .settings-developer-mode .settings-experiment-hidden { 506 .settings-developer-mode .settings-experiment-hidden {
514 display: block; 507 display: block;
515 } 508 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698