| OLD | NEW |
| (Empty) | |
| 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org> |
| 4 * |
| 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions |
| 7 * are met: |
| 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. |
| 11 * 2. Redistributions in binary form must reproduce the above copyright |
| 12 * notice, this list of conditions and the following disclaimer in the |
| 13 * documentation and/or other materials provided with the distribution. |
| 14 * 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of |
| 15 * its contributors may be used to endorse or promote products derived |
| 16 * from this software without specific prior written permission. |
| 17 * |
| 18 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY |
| 19 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 20 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 21 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY |
| 22 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 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 |
| 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. |
| 28 */ |
| 29 |
| 30 .scripts-pause-on-exceptions-status-bar-item .glyph { |
| 31 -webkit-mask-position: -256px 0; |
| 32 } |
| 33 |
| 34 .scripts-pause-on-exceptions-status-bar-item.toggled-all .glyph { |
| 35 background-color: rgb(66, 129, 235); |
| 36 } |
| 37 |
| 38 .scripts-pause-on-exceptions-status-bar-item.toggled-uncaught .glyph { |
| 39 background-color: purple; |
| 40 } |
| 41 |
| 42 .scripts-toggle-pretty-print-status-bar-item .glyph { |
| 43 -webkit-mask-position: -256px -24px; |
| 44 } |
| 45 |
| 46 .scripts-toggle-pretty-print-status-bar-item.toggled .glyph { |
| 47 background-color: rgb(66, 129, 235); |
| 48 } |
| 49 |
| 50 .evaluate-snippet-status-bar-item .glyph { |
| 51 -webkit-mask-position: -64px -48px; |
| 52 } |
| 53 |
| 54 .evaluate-snippet-status-bar-item.toggled .glyph { |
| 55 background-color: rgb(66, 129, 235); |
| 56 } |
| 57 |
| 58 #scripts-debug-toolbar { |
| 59 position: relative; |
| 60 margin-top: -1px; |
| 61 height: 24px; |
| 62 border-bottom: 1px solid rgb(202, 202, 202); |
| 63 } |
| 64 |
| 65 #scripts-editor-toolbar { |
| 66 position: relative; |
| 67 margin-top: -1px; |
| 68 height: 24px; |
| 69 } |
| 70 |
| 71 #scripts-status-bar .status-bar-item img { |
| 72 margin-top: 2px; |
| 73 } |
| 74 |
| 75 #scripts-debug-toolbar .glyph { |
| 76 opacity: 0.8; |
| 77 } |
| 78 |
| 79 .scripts-run-snippet .glyph { |
| 80 -webkit-mask-position: -64px -48px; |
| 81 } |
| 82 |
| 83 .scripts-pause .glyph { |
| 84 -webkit-mask-position: -32px -72px; |
| 85 } |
| 86 |
| 87 .scripts-pause.toggled-on .glyph { |
| 88 -webkit-mask-position: 0 -72px; |
| 89 } |
| 90 |
| 91 .scripts-step-over .glyph { |
| 92 -webkit-mask-position: -128px -72px; |
| 93 } |
| 94 |
| 95 .scripts-step-into .glyph { |
| 96 -webkit-mask-position: -64px -72px; |
| 97 } |
| 98 |
| 99 .scripts-step-out .glyph { |
| 100 -webkit-mask-position: -96px -72px; |
| 101 } |
| 102 |
| 103 .scripts-long-resume .glyph { |
| 104 -webkit-mask-position: -64px -48px; |
| 105 } |
| 106 |
| 107 .scripts-toggle-breakpoints.toggled-on .glyph { |
| 108 -webkit-mask-position: -32px 0; |
| 109 } |
| 110 |
| 111 .scripts-toggle-breakpoints .glyph { |
| 112 -webkit-mask-position: 0 -24px; |
| 113 } |
| 114 |
| 115 .status-bar-item.scripts-navigator-show-hide-button, |
| 116 .status-bar-item.scripts-debugger-show-hide-button { |
| 117 opacity: 0.7; |
| 118 } |
| 119 |
| 120 button.status-bar-item.scripts-navigator-show-hide-button { |
| 121 left: 0; |
| 122 } |
| 123 |
| 124 button.status-bar-item.scripts-navigator-show-hide-button.toggled-overlay { |
| 125 left: auto; |
| 126 right: 15px; |
| 127 } |
| 128 |
| 129 .scripts-views-container { |
| 130 position: absolute; |
| 131 top: 23px; |
| 132 right: 0; |
| 133 bottom: 0; |
| 134 left: 0; |
| 135 } |
| 136 |
| 137 .script-view { |
| 138 display: none; |
| 139 overflow: hidden; |
| 140 position: absolute; |
| 141 top: 0; |
| 142 right: 0; |
| 143 bottom: 0; |
| 144 left: 0; |
| 145 } |
| 146 |
| 147 .script-view.visible { |
| 148 display: block; |
| 149 } |
| 150 |
| 151 .dedicated-worker-item { |
| 152 margin: 5px 0 5px 1px; |
| 153 } |
| 154 |
| 155 #shared-workers-list { |
| 156 margin: 5px 0 5px 20px; |
| 157 font-style:italic; |
| 158 } |
| 159 |
| 160 #pause-workers-checkbox > input { |
| 161 position: relative; |
| 162 top: 2px; |
| 163 } |
| 164 |
| 165 #scripts-editor-container-tabbed-pane .tabbed-pane-header { |
| 166 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#F5F5F5), to
(#E5E5E5)); |
| 167 } |
| 168 |
| 169 #scripts-editor-container-tabbed-pane .tabbed-pane-header-contents { |
| 170 margin-left: 20px; |
| 171 margin-right: 36px; |
| 172 } |
| 173 |
| 174 #scripts-editor-container-tabbed-pane .tabbed-pane-header-tab { |
| 175 border-bottom: 1px solid #BBB; |
| 176 } |
| 177 |
| 178 .function-location-link { |
| 179 float: right; |
| 180 margin-left: 10px; |
| 181 } |
| 182 |
| 183 .function-popover-title { |
| 184 border-bottom: 1px solid #AAA; |
| 185 margin-bottom: 3px; |
| 186 padding-bottom: 2px; |
| 187 } |
| 188 |
| 189 .function-popover-title .function-name { |
| 190 font-weight: bold; |
| 191 } |
| 192 |
| 193 button.status-bar-item.scripts-debugger-show-hide-button { |
| 194 right: 15px; |
| 195 } |
| 196 |
| 197 .split-view-horizontal button.status-bar-item.scripts-debugger-show-hide-button, |
| 198 .split-view-horizontal #scripts-debug-sidebar-resizer-widget { |
| 199 display: none; |
| 200 } |
| 201 |
| 202 button.status-bar-item.scripts-debugger-show-hide-button.toggled-left { |
| 203 right: 0; |
| 204 } |
| 205 |
| 206 div.sidebar-pane-stack#scripts-debug-sidebar-contents, |
| 207 #scripts-sidebar-stack-pane { |
| 208 top: 23px; |
| 209 overflow: auto; |
| 210 } |
| 211 |
| 212 .workers-list > li { |
| 213 overflow: hidden; |
| 214 text-overflow: ellipsis; |
| 215 white-space: nowrap; |
| 216 margin-left: 1em; |
| 217 font-size: 12px; |
| 218 } |
| 219 |
| 220 a.worker-item { |
| 221 color: rgb(33%, 33%, 33%); |
| 222 cursor: pointer; |
| 223 text-decoration: none; |
| 224 } |
| 225 |
| 226 a.worker-item:hover { |
| 227 color: rgb(15%, 15%, 15%); |
| 228 } |
| 229 |
| 230 .source-frame-debugger-script { |
| 231 background-color: rgba(255, 255, 194, 0.5); |
| 232 } |
| 233 |
| 234 .source-frame-unsaved-committed-changes { |
| 235 background-color: rgba(255, 225, 205, 0.40); |
| 236 } |
| 237 |
| 238 .tabbed-pane-placeholder { |
| 239 font-size: 14px; |
| 240 text-align: center; |
| 241 margin-top: 20px; |
| 242 text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0; |
| 243 } |
| 244 |
| 245 .tabbed-pane-header-tab-icon { |
| 246 width: 13px; |
| 247 height: 10px; |
| 248 margin-top: 3px; |
| 249 float: left; |
| 250 display: block; |
| 251 margin-right: 1px; |
| 252 } |
| 253 |
| 254 .editor-container-unsaved-committed-changes-icon { |
| 255 background-image: url(Images/statusbarButtonGlyphs.png); |
| 256 background-size: 320px 120px; |
| 257 background-position: -202px -107px; |
| 258 } |
| OLD | NEW |