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

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

Issue 6198005: DOMUI Prefs: Add a visual indication of the lead element (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 -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 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 } 371 }
372 372
373 list > [selected], 373 list > [selected],
374 list:focus > [selected], 374 list:focus > [selected],
375 list:focus > [lead][selected], 375 list:focus > [lead][selected],
376 list > [selected]:hover { 376 list > [selected]:hover {
377 background-color: #f2f2f2; 377 background-color: #f2f2f2;
378 background-image: none; 378 background-image: none;
379 } 379 }
380 380
381 list:focus > [lead],
382 list:focus > [lead][selected] {
383 border-top: 1px solid #b2b2b2;
384 border-bottom: 1px solid #b2b2b2;
385 }
386
387 list:focus > [lead]:nth-child(2),
388 list:focus > [lead][selected]:nth-child(2) {
389 border-top: 1px solid #f2f2f2;
390 }
391
392 list:focus > [lead]:nth-last-child(2),
393 list:focus > [lead][selected]:nth-last-child(2) {
394 border-bottom: 1px solid #f2f2f2;
395 }
396
381 list[disabled] > [lead][selected], 397 list[disabled] > [lead][selected],
382 list[disabled]:focus > [lead][selected] { 398 list[disabled]:focus > [lead][selected] {
383 border: none; 399 border: none;
384 } 400 }
385 401
386 list[disabled] { 402 list[disabled] {
387 opacity: 0.6; 403 opacity: 0.6;
388 } 404 }
389 405
390 list > .heading { 406 list > .heading {
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
504 } 520 }
505 521
506 .suboption { 522 .suboption {
507 -webkit-margin-start: 16px; 523 -webkit-margin-start: 16px;
508 } 524 }
509 525
510 html[os=mac] label > input[type=checkbox], 526 html[os=mac] label > input[type=checkbox],
511 html[os=mac] label > input[type=radio] { 527 html[os=mac] label > input[type=radio] {
512 margin-top: 2px; 528 margin-top: 2px;
513 } 529 }
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