OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> | 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 1390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1401 .outline-disclosure ol.children { | 1401 .outline-disclosure ol.children { |
1402 display: none; | 1402 display: none; |
1403 } | 1403 } |
1404 | 1404 |
1405 .outline-disclosure ol.children.expanded { | 1405 .outline-disclosure ol.children.expanded { |
1406 display: block; | 1406 display: block; |
1407 } | 1407 } |
1408 | 1408 |
1409 .placard { | 1409 .placard { |
1410 position: relative; | 1410 position: relative; |
1411 border-top: 1px solid transparent; | |
1412 padding: 3px 8px 4px 18px; | 1411 padding: 3px 8px 4px 18px; |
1413 min-height: 18px; | 1412 min-height: 18px; |
1414 white-space: nowrap; | 1413 white-space: nowrap; |
1415 } | 1414 } |
1416 | 1415 |
1417 .placard:nth-of-type(2n) { | |
1418 background-color: rgb(234, 243, 255); | |
1419 } | |
1420 | |
1421 .placard.selected { | 1416 .placard.selected { |
1422 border-top: 1px solid rgb(172, 172, 172); | 1417 background-color: rgb(212, 212, 212); |
1423 background-image: linear-gradient(to bottom, rgb(182, 182, 182), rgb(162, 16
2, 162)); | |
1424 background-origin: padding-box; | |
1425 background-clip: padding-box; | 1418 background-clip: padding-box; |
1426 } | 1419 } |
1427 | 1420 |
1428 :focus .placard.selected { | |
1429 border-top: 1px solid rgb(70, 103, 215); | |
1430 background-image: linear-gradient(to bottom, rgb(92, 147, 213), rgb(56, 121,
217)); | |
1431 } | |
1432 | |
1433 .placard .title { | 1421 .placard .title { |
1434 font-weight: normal; | 1422 font-weight: normal; |
1435 word-wrap: break-word; | 1423 word-wrap: break-word; |
1436 white-space: normal; | 1424 white-space: normal; |
1437 } | 1425 } |
1438 | 1426 |
1439 .placard.selected .title { | |
1440 color: white; | |
1441 font-weight: bold; | |
1442 } | |
1443 | |
1444 .placard .subtitle { | 1427 .placard .subtitle { |
1445 float: right; | 1428 float: right; |
1446 font-size: 10px; | |
1447 margin-left: 5px; | 1429 margin-left: 5px; |
1448 color: rgba(0, 0, 0, 0.7); | 1430 color: rgba(0, 0, 0, 0.7); |
1449 text-overflow: ellipsis; | 1431 text-overflow: ellipsis; |
1450 overflow: hidden; | 1432 overflow: hidden; |
1451 } | 1433 } |
1452 | 1434 |
1453 .placard.selected .subtitle { | |
1454 color: rgba(255, 255, 255, 0.7); | |
1455 } | |
1456 | |
1457 .placard .subtitle a { | 1435 .placard .subtitle a { |
1458 color: inherit; | 1436 color: inherit; |
1459 } | 1437 } |
1460 | 1438 |
1461 .placard-label { | 1439 .placard-label { |
1462 text-align: center; | 1440 text-align: center; |
1463 } | 1441 } |
1464 | 1442 |
1465 .placard-label .title, | 1443 .placard-label .title, |
1466 .placard-label .subtitle { | 1444 .placard-label .subtitle { |
(...skipping 1329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2796 } | 2774 } |
2797 | 2775 |
2798 body.inactive select.chrome-select, | 2776 body.inactive select.chrome-select, |
2799 .chrome-select:disabled { | 2777 .chrome-select:disabled { |
2800 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x,
url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3
8%, #e6e6e6); | 2778 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x,
url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3
8%, #e6e6e6); |
2801 border-color: rgba(80, 80, 80, 0.2); | 2779 border-color: rgba(80, 80, 80, 0.2); |
2802 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), | 2780 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), |
2803 inset 0 1px 2px rgba(255, 255, 255, 0.75); | 2781 inset 0 1px 2px rgba(255, 255, 255, 0.75); |
2804 color: #aaa; | 2782 color: #aaa; |
2805 } | 2783 } |
OLD | NEW |