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

Side by Side Diff: chrome/browser/resources/options/options_page.css

Issue 5685003: DOMUI Prefs: Add a deletable item list type, and use it for startup pages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Whitespace fix Created 10 years 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 | Annotate | Revision Log
OLDNEW
1 body { 1 body {
2 -webkit-user-select: none; 2 -webkit-user-select: none;
3 cursor: default; 3 cursor: default;
4 font-size: 100%; 4 font-size: 100%;
5 } 5 }
6 6
7 #settings-title { 7 #settings-title {
8 -webkit-padding-end: 24px; 8 -webkit-padding-end: 24px;
9 color: #53637d; 9 color: #53637d;
10 font-size: 200%; 10 font-size: 200%;
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 390
391 list > .heading { 391 list > .heading {
392 color: #666666; 392 color: #666666;
393 } 393 }
394 394
395 list > .heading:hover { 395 list > .heading:hover {
396 background-color: transparent; 396 background-color: transparent;
397 border-color: transparent; 397 border-color: transparent;
398 } 398 }
399 399
400 list .deletable-item {
401 display: -webkit-box;
402 }
403
404 list .deletable-item > :first-child {
405 -webkit-box-flex: 1;
406 }
407
408 list .close-button {
409 background-color: transparent;
410 /* TODO(stuartmorgan): Replace with real images once they are available. */
411 background-image: url("../../../app/theme/close_bar.png");
412 border: none;
413 height: 16px;
414 width: 16px;
415 }
416
417 list > *:not(:hover) .close-button {
418 display: none;
419 }
420
421 list .close-button:hover {
422 background-image: url("../../../app/theme/close_bar_h.png");
423 }
424
425 list .close-button:active {
426 background-image: url("../../../app/theme/close_bar_p.png");
427 }
428
400 .left-side-table { 429 .left-side-table {
401 display: -webkit-box; 430 display: -webkit-box;
402 } 431 }
403 432
404 .left-side-table > div:first-child { 433 .left-side-table > div:first-child {
405 -webkit-box-flex: 1; 434 -webkit-box-flex: 1;
406 } 435 }
407 436
408 .left-side-table > :last-child { 437 .left-side-table > :last-child {
409 -webkit-padding-start: 20px; 438 -webkit-padding-start: 20px;
(...skipping 13 matching lines...) Expand all
423 452
424 .favicon-cell { 453 .favicon-cell {
425 -webkit-padding-start: 20px; 454 -webkit-padding-start: 20px;
426 background-position: left; 455 background-position: left;
427 background-repeat: no-repeat; 456 background-repeat: no-repeat;
428 } 457 }
429 458
430 list .favicon-cell { 459 list .favicon-cell {
431 -webkit-margin-start: 7px; 460 -webkit-margin-start: 7px;
432 -webkit-padding-start: 26px; 461 -webkit-padding-start: 26px;
462 display: block;
463 text-overflow: ellipsis;
464 overflow: hidden;
465 white-space: nowrap;
433 } 466 }
434 467
435 html[dir=rtl] .favicon-cell { 468 html[dir=rtl] .favicon-cell {
436 background-position: right; 469 background-position: right;
437 } 470 }
438 471
439 html[enable-background-mode=false] #background-mode-section { 472 html[enable-background-mode=false] #background-mode-section {
440 display: none; 473 display: none;
441 } 474 }
442 475
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
482 label.radio > span, 515 label.radio > span,
483 .suboption { 516 .suboption {
484 -webkit-margin-start: 16px; 517 -webkit-margin-start: 16px;
485 display: block; 518 display: block;
486 } 519 }
487 520
488 html[os=mac] label.checkbox > input, 521 html[os=mac] label.checkbox > input,
489 html[os=mac] label.radio > input { 522 html[os=mac] label.radio > input {
490 margin-top: 2px; 523 margin-top: 2px;
491 } 524 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698