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 13 matching lines...) Expand all Loading... |
24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 24 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
28 */ | 28 */ |
29 | 29 |
30 .scripts-pause-on-exceptions-status-bar-item .glyph { | 30 .scripts-pause-on-exceptions-status-bar-item .glyph { |
31 -webkit-mask-position: -256px 0; | 31 -webkit-mask-position: -256px 0; |
32 } | 32 } |
33 | 33 |
34 .scripts-pause-on-exceptions-status-bar-item.toggled-all .glyph { | 34 .scripts-pause-on-exceptions-status-bar-item.toggled-uncaught .glyph { |
35 background-color: rgb(66, 129, 235); | 35 background-color: rgb(66, 129, 235); |
36 } | 36 } |
37 | 37 |
38 .scripts-pause-on-exceptions-status-bar-item.toggled-uncaught .glyph { | 38 .scripts-pause-on-exceptions-status-bar-item.toggled-all .glyph { |
39 background-color: purple; | 39 background-color: purple; |
40 } | 40 } |
41 | 41 |
42 .evaluate-snippet-status-bar-item .glyph { | 42 .evaluate-snippet-status-bar-item .glyph { |
43 -webkit-mask-position: -64px -48px; | 43 -webkit-mask-position: -64px -48px; |
44 } | 44 } |
45 | 45 |
46 .evaluate-snippet-status-bar-item.toggled .glyph { | 46 .evaluate-snippet-status-bar-item.toggled .glyph { |
47 background-color: rgb(66, 129, 235); | 47 background-color: rgb(66, 129, 235); |
48 } | 48 } |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 top: 2px; | 240 top: 2px; |
241 right: 17px; | 241 right: 17px; |
242 } | 242 } |
243 | 243 |
244 .sources-status-bar .scripts-debugger-show-hide-button { | 244 .sources-status-bar .scripts-debugger-show-hide-button { |
245 margin-top: 1px !important; | 245 margin-top: 1px !important; |
246 height: 16px !important; | 246 height: 16px !important; |
247 -webkit-transform: rotate(90deg); | 247 -webkit-transform: rotate(90deg); |
248 right: 0 !important; | 248 right: 0 !important; |
249 } | 249 } |
OLD | NEW |