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 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1335 margin: 0; | 1335 margin: 0; |
1336 } | 1336 } |
1337 | 1337 |
1338 .source-code { | 1338 .source-code { |
1339 font-family: monospace; | 1339 font-family: monospace; |
1340 font-size: 11px !important; | 1340 font-size: 11px !important; |
1341 white-space: pre-wrap; | 1341 white-space: pre-wrap; |
1342 } | 1342 } |
1343 | 1343 |
1344 .console-message-text { | 1344 .console-message-text { |
1345 white-space: pre; | 1345 white-space: pre-wrap; |
1346 } | 1346 } |
1347 | 1347 |
1348 .outline-disclosure li { | 1348 .outline-disclosure li { |
1349 padding: 0 0 0 14px; | 1349 padding: 0 0 0 14px; |
1350 margin-top: 1px; | 1350 margin-top: 1px; |
1351 margin-left: -2px; | 1351 margin-left: -2px; |
1352 word-wrap: break-word; | 1352 word-wrap: break-word; |
1353 } | 1353 } |
1354 | 1354 |
1355 .outline-disclosure ol:focus li.selected { | 1355 .outline-disclosure ol:focus li.selected { |
(...skipping 1423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2779 } | 2779 } |
2780 | 2780 |
2781 body.inactive select.chrome-select, | 2781 body.inactive select.chrome-select, |
2782 .chrome-select:disabled { | 2782 .chrome-select:disabled { |
2783 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x,
url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3
8%, #e6e6e6); | 2783 background-image: -webkit-image-set(url(Images/chromeDisabledSelect.png) 1x,
url(Images/chromeDisabledSelect_2x.png) 2x), linear-gradient(#f1f1f1, #f1f1f1 3
8%, #e6e6e6); |
2784 border-color: rgba(80, 80, 80, 0.2); | 2784 border-color: rgba(80, 80, 80, 0.2); |
2785 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), | 2785 box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), |
2786 inset 0 1px 2px rgba(255, 255, 255, 0.75); | 2786 inset 0 1px 2px rgba(255, 255, 255, 0.75); |
2787 color: #aaa; | 2787 color: #aaa; |
2788 } | 2788 } |
OLD | NEW |