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 1395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1406 display: block; | 1406 display: block; |
1407 } | 1407 } |
1408 | 1408 |
1409 .placard { | 1409 .placard { |
1410 position: relative; | 1410 position: relative; |
1411 padding: 3px 8px 4px 18px; | 1411 padding: 3px 8px 4px 18px; |
1412 min-height: 18px; | 1412 min-height: 18px; |
1413 white-space: nowrap; | 1413 white-space: nowrap; |
1414 } | 1414 } |
1415 | 1415 |
| 1416 .placard:nth-of-type(2n) { |
| 1417 background-color: rgb(234, 243, 255); |
| 1418 } |
| 1419 |
1416 .placard.selected { | 1420 .placard.selected { |
1417 background-color: rgb(212, 212, 212); | 1421 background-color: rgb(212, 212, 212); |
1418 background-clip: padding-box; | 1422 background-clip: padding-box; |
1419 } | 1423 } |
1420 | 1424 |
1421 .placard .title { | 1425 .placard .title { |
1422 font-weight: normal; | 1426 font-weight: normal; |
1423 word-wrap: break-word; | 1427 word-wrap: break-word; |
1424 white-space: normal; | 1428 white-space: normal; |
1425 } | 1429 } |
(...skipping 1344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2770 } | 2774 } |
2771 | 2775 |
2772 body.inactive select.chrome-select, | 2776 body.inactive select.chrome-select, |
2773 .chrome-select:disabled { | 2777 .chrome-select:disabled { |
2774 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); |
2775 border-color: rgba(80, 80, 80, 0.2); | 2779 border-color: rgba(80, 80, 80, 0.2); |
2776 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), | 2780 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), |
2777 inset 0 1px 2px rgba(255, 255, 255, 0.75); | 2781 inset 0 1px 2px rgba(255, 255, 255, 0.75); |
2778 color: #aaa; | 2782 color: #aaa; |
2779 } | 2783 } |
OLD | NEW |