| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 font-size: 30px; | 129 font-size: 30px; |
| 130 color: #999; | 130 color: #999; |
| 131 display: flex; | 131 display: flex; |
| 132 justify-content: center; | 132 justify-content: center; |
| 133 align-items: center; | 133 align-items: center; |
| 134 margin: 20px; | 134 margin: 20px; |
| 135 border: 4px dashed #ddd; | 135 border: 4px dashed #ddd; |
| 136 pointer-events: none; | 136 pointer-events: none; |
| 137 } | 137 } |
| 138 | 138 |
| 139 ol.watch-expressions > li.hovered { | |
| 140 background-color: #F0F0F0; | |
| 141 } | |
| 142 | |
| 143 .sidebar-tabbed-pane .watch-expressions { | |
| 144 margin-top: 17px; | |
| 145 } | |
| 146 | |
| 147 .properties-tree.watch-expressions { | |
| 148 padding-left: 0 !important; | |
| 149 } | |
| 150 | |
| 151 .properties-tree.watch-expressions > li { | |
| 152 padding-left: 4px; | |
| 153 } | |
| 154 | |
| 155 .properties-tree.watch-expressions > li > .value { | |
| 156 display: inline; | |
| 157 position: static; | |
| 158 } | |
| 159 | |
| 160 .properties-tree.watch-expressions > li:not(.parent) { | |
| 161 margin-left: 1px; | |
| 162 padding-left: 15px; | |
| 163 } | |
| 164 | |
| 165 .properties-tree.watch-expressions > li.hovered { | |
| 166 padding-right: 14px; | |
| 167 } | |
| 168 | |
| 169 .watch-expressions > li.editing-sub-part .text-prompt { | |
| 170 display: block; | |
| 171 width: 100%; | |
| 172 overflow: hidden; | |
| 173 } | |
| 174 | |
| 175 .watch-expressions > li.editing-sub-part .value, | |
| 176 .watch-expressions > li.editing-sub-part .separator { | |
| 177 display: none; | |
| 178 } | |
| 179 | |
| 180 li.editing-sub-part .delete-button { | |
| 181 display: none !important; | |
| 182 } | |
| 183 | |
| 184 .section .properties .delete-button { | |
| 185 width: 10px; | |
| 186 height: 10px; | |
| 187 background-image: url(Images/deleteIcon.png); | |
| 188 background-position: 0 0; | |
| 189 background-color: transparent; | |
| 190 background-repeat: no-repeat; | |
| 191 border: 0 none transparent; | |
| 192 position: absolute; | |
| 193 right: 8px; | |
| 194 display: none; | |
| 195 } | |
| 196 | |
| 197 .section .properties li.hovered .delete-button { | |
| 198 display: inline; | |
| 199 } | |
| 200 | |
| 201 .source-frame-breakpoint-condition { | 139 .source-frame-breakpoint-condition { |
| 202 z-index: 30; | 140 z-index: 30; |
| 203 padding: 4px; | 141 padding: 4px; |
| 204 background-color: rgb(203, 226, 255); | 142 background-color: rgb(203, 226, 255); |
| 205 border-radius: 7px; | 143 border-radius: 7px; |
| 206 border: 2px solid rgb(169, 172, 203); | 144 border: 2px solid rgb(169, 172, 203); |
| 207 width: 90%; | 145 width: 90%; |
| 208 pointer-events: auto; | 146 pointer-events: auto; |
| 209 } | 147 } |
| 210 | 148 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 font-size: 90%; | 180 font-size: 90%; |
| 243 padding: 6px; | 181 padding: 6px; |
| 244 color: #888; | 182 color: #888; |
| 245 pointer-events: none; | 183 pointer-events: none; |
| 246 } | 184 } |
| 247 | 185 |
| 248 .callstack-info.status { | 186 .callstack-info.status { |
| 249 border-top: 1px solid rgb(189, 189, 189); | 187 border-top: 1px solid rgb(189, 189, 189); |
| 250 background-color: rgb(255, 255, 194); | 188 background-color: rgb(255, 255, 194); |
| 251 } | 189 } |
| 190 |
| 191 .watch-expression .delete-button { |
| 192 width: 10px; |
| 193 height: 10px; |
| 194 background-image: url(Images/deleteIcon.png); |
| 195 background-position: 0 0; |
| 196 background-color: transparent; |
| 197 background-repeat: no-repeat; |
| 198 border: 0 none transparent; |
| 199 position: absolute; |
| 200 right: 3px; |
| 201 display: none; |
| 202 } |
| 203 |
| 204 .watch-expression .primitive-value:hover .delete-button, |
| 205 .watch-expression .section .header:hover .delete-button { |
| 206 display: inline; |
| 207 } |
| 208 |
| 209 |
| 210 .watch-expressions { |
| 211 margin-top: 14px; |
| 212 overflow-x: hidden; |
| 213 padding: 3px 6px 6px 0px; |
| 214 } |
| 215 |
| 216 .watch-expressions .dimmed { |
| 217 opacity: 0.6; |
| 218 } |
| 219 |
| 220 .watch-expression-title { |
| 221 white-space: nowrap; |
| 222 text-overflow: ellipsis; |
| 223 overflow: hidden; |
| 224 line-height: 12px; |
| 225 padding-top: 1px; |
| 226 padding-bottom: 1px; |
| 227 margin-left: 16px; |
| 228 } |
| 229 |
| 230 .watch-expression { |
| 231 position: relative; |
| 232 } |
| 233 |
| 234 .watch-expression .section .header { |
| 235 min-height: 14px; |
| 236 padding-right: 0px; |
| 237 } |
| 238 |
| 239 .watch-expressions .name { |
| 240 color: rgb(136, 19, 145); |
| 241 flex: none; |
| 242 white-space: nowrap; |
| 243 text-overflow: ellipsis ; |
| 244 overflow: hidden; |
| 245 } |
| 246 |
| 247 .watch-expressions .separator { |
| 248 flex: none; |
| 249 } |
| 250 |
| 251 .watch-expressions .value { |
| 252 white-space: nowrap; |
| 253 display: inline; |
| 254 } |
| 255 |
| 256 .watch-expression .text-prompt { |
| 257 text-overflow: clip; |
| 258 overflow: hidden; |
| 259 white-space: nowrap; |
| 260 padding-left: 4px; |
| 261 -webkit-user-select: text; |
| 262 } |
| 263 |
| 264 .watch-expression .section > .header::before { |
| 265 margin-top: 0px; |
| 266 } |
| 267 |
| 268 .section .watch-expression-title { |
| 269 margin-left: 11px; |
| 270 } |
| 271 |
| 272 .watch-expression-text-prompt-proxy { |
| 273 margin-left: 12px; |
| 274 } |
| 275 |
| 276 .watch-expression .primitive-value:hover, |
| 277 .watch-expression .section .header:hover { |
| 278 background-color: #F0F0F0; |
| 279 padding-right: 14px; |
| 280 } |
| OLD | NEW |