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

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

Issue 6344008: DOMUI: Alter the focus and selected list item background colors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes. Created 9 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 body { 1 body {
2 cursor: default; 2 cursor: default;
3 font-size: 100%; 3 font-size: 100%;
4 } 4 }
5 5
6 #settings-title { 6 #settings-title {
7 -webkit-padding-end: 24px; 7 -webkit-padding-end: 24px;
8 color: #53637d; 8 color: #53637d;
9 cursor: pointer; 9 cursor: pointer;
10 font-size: 200%; 10 font-size: 200%;
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 -webkit-transition: .15s background-color; 350 -webkit-transition: .15s background-color;
351 box-sizing: border-box; 351 box-sizing: border-box;
352 border-radius: 0; 352 border-radius: 0;
353 display: -webkit-box; 353 display: -webkit-box;
354 height: 32px; 354 height: 32px;
355 border: none; 355 border: none;
356 margin: 0; 356 margin: 0;
357 } 357 }
358 358
359 list:not([disabled]) > :hover { 359 list:not([disabled]) > :hover {
360 background-color: #f2f2f2; 360 background-color: rgb(228, 236, 247);
361 } 361 }
362 362
363 list > [selected], 363 list > [selected],
364 list:focus > [selected], 364 list:focus > [selected],
365 list:focus > [lead][selected], 365 list:focus > [lead][selected],
366 list > [selected]:hover { 366 list > [selected]:hover {
367 background-color: #f2f2f2; 367 background-color: rgb(187, 206, 233);
368 background-image: none; 368 background-image: none;
369 } 369 }
370 370
371 list:focus > [lead], 371 list:focus > [lead],
372 list:focus > [lead][selected], 372 list:focus > [lead][selected],
373 list [lead][selected][editing] { 373 list [lead][selected][editing] {
374 border-top: 1px solid #b2b2b2; 374 border-top: 1px solid #7892b4;
375 border-bottom: 1px solid #b2b2b2; 375 border-bottom: 1px solid #7892b4;
stuartmorgan 2011/01/19 19:48:51 Why rgb() for the backgrounds and hex for the bord
James Hawkins 2011/01/19 20:00:24 Done.
376 } 376 }
377 377
378 list:focus > [lead]:nth-child(2), 378 list:focus > [lead]:nth-child(2),
379 list:focus > [lead][selected]:nth-child(2), 379 list:focus > [lead][selected]:nth-child(2),
380 list [lead][selected][editing]:nth-child(2) { 380 list [lead][selected][editing]:nth-child(2) {
381 border-top: 1px solid #f2f2f2; 381 border-top: 1px transparent;
382 } 382 }
383 383
384 list:focus > [lead]:nth-last-child(2), 384 list:focus > [lead]:nth-last-child(2),
385 list:focus > [lead][selected]:nth-last-child(2), 385 list:focus > [lead][selected]:nth-last-child(2),
386 list [lead][selected][editing]:nth-last-child(2) { 386 list [lead][selected][editing]:nth-last-child(2) {
387 border-bottom: 1px solid #f2f2f2; 387 border-bottom: 1px transparent;
388 } 388 }
389 389
390 list[disabled] > [lead][selected], 390 list[disabled] > [lead][selected],
391 list[disabled]:focus > [lead][selected] { 391 list[disabled]:focus > [lead][selected] {
392 border: none; 392 border: none;
393 } 393 }
394 394
395 list[disabled] { 395 list[disabled] {
396 opacity: 0.6; 396 opacity: 0.6;
397 } 397 }
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
530 } 530 }
531 531
532 .suboption { 532 .suboption {
533 -webkit-margin-start: 16px; 533 -webkit-margin-start: 16px;
534 } 534 }
535 535
536 html[os=mac] label > input[type=checkbox], 536 html[os=mac] label > input[type=checkbox],
537 html[os=mac] label > input[type=radio] { 537 html[os=mac] label > input[type=radio] {
538 margin-top: 2px; 538 margin-top: 2px;
539 } 539 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698