| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 border-radius: 7px; | 145 border-radius: 7px; |
| 146 flex: none; | 146 flex: none; |
| 147 } | 147 } |
| 148 | 148 |
| 149 .console-message .bubble-repeat-count { | 149 .console-message .bubble-repeat-count { |
| 150 margin-right: 4px; | 150 margin-right: 4px; |
| 151 margin-left: -18px; | 151 margin-left: -18px; |
| 152 } | 152 } |
| 153 | 153 |
| 154 .console-error-level .repeated-message::before, | 154 .console-error-level .repeated-message::before, |
| 155 .console-revokedError-level .repeated-message::before, |
| 155 .console-warning-level .repeated-message::before, | 156 .console-warning-level .repeated-message::before, |
| 156 .console-debug-level .repeated-message::before, | 157 .console-debug-level .repeated-message::before, |
| 157 .console-info-level .repeated-message::before { | 158 .console-info-level .repeated-message::before { |
| 158 visibility: hidden; | 159 visibility: hidden; |
| 159 } | 160 } |
| 160 | 161 |
| 161 .repeated-message .outline-disclosure, | 162 .repeated-message .outline-disclosure, |
| 162 .repeated-message > .console-message-text { | 163 .repeated-message > .console-message-text { |
| 163 flex: 1; | 164 flex: 1; |
| 164 } | 165 } |
| 165 | 166 |
| 166 .console-warning-level .repeated-message, | 167 .console-warning-level .repeated-message, |
| 167 .console-error-level .repeated-message, | 168 .console-error-level .repeated-message, |
| 169 .console-revokedError-level .repeated-message, |
| 168 .console-log-level .repeated-message, | 170 .console-log-level .repeated-message, |
| 169 .console-debug-level .repeated-message, | 171 .console-debug-level .repeated-message, |
| 170 .console-info-level .repeated-message { | 172 .console-info-level .repeated-message { |
| 171 display: flex; | 173 display: flex; |
| 172 } | 174 } |
| 173 | 175 |
| 174 .console-info { | 176 .console-info { |
| 175 color: rgb(128, 128, 128); | 177 color: rgb(128, 128, 128); |
| 176 font-style: italic; | 178 font-style: italic; |
| 177 } | 179 } |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 | 241 |
| 240 .console-message-wrapper .nesting-level-marker { | 242 .console-message-wrapper .nesting-level-marker { |
| 241 width: 14px; | 243 width: 14px; |
| 242 flex: 0 0 auto; | 244 flex: 0 0 auto; |
| 243 border-right: 1px solid #A3A3A3; | 245 border-right: 1px solid #A3A3A3; |
| 244 position: relative; | 246 position: relative; |
| 245 margin-bottom: -1px; | 247 margin-bottom: -1px; |
| 246 } | 248 } |
| 247 | 249 |
| 248 .console-message-wrapper:last-child .nesting-level-marker::before, | 250 .console-message-wrapper:last-child .nesting-level-marker::before, |
| 249 .console-message-wrapper .nesting-level-marker.group-closed::before | 251 .console-message-wrapper .nesting-level-marker.group-closed::before { |
| 250 { | |
| 251 content: ""; | 252 content: ""; |
| 252 } | 253 } |
| 253 | 254 |
| 254 .console-message-wrapper .nesting-level-marker::before { | 255 .console-message-wrapper .nesting-level-marker::before { |
| 255 border-bottom: 1px solid #A3A3A3; | 256 border-bottom: 1px solid #A3A3A3; |
| 256 position: absolute; | 257 position: absolute; |
| 257 top: 0; | 258 top: 0; |
| 258 left: 0; | 259 left: 0; |
| 259 margin-left: 100%; | 260 margin-left: 100%; |
| 260 width: 3px; | 261 width: 3px; |
| (...skipping 20 matching lines...) Expand all Loading... |
| 281 | 282 |
| 282 .console-debug-level .console-message-text { | 283 .console-debug-level .console-message-text { |
| 283 color: blue; | 284 color: blue; |
| 284 } | 285 } |
| 285 | 286 |
| 286 .console-message.console-warning-level { | 287 .console-message.console-warning-level { |
| 287 background-color: rgb(255, 250, 224); | 288 background-color: rgb(255, 250, 224); |
| 288 } | 289 } |
| 289 | 290 |
| 290 .console-error-level .console-message::before, | 291 .console-error-level .console-message::before, |
| 292 .console-revokedError-level .console-message::before, |
| 291 .console-warning-level .console-message::before, | 293 .console-warning-level .console-message::before, |
| 292 .console-debug-level .console-message::before, | 294 .console-debug-level .console-message::before, |
| 293 .console-info-level .console-message::before { | 295 .console-info-level .console-message::before { |
| 294 background-image: url(Images/toolbarButtonGlyphs.png); | 296 background-image: url(Images/toolbarButtonGlyphs.png); |
| 295 background-size: 320px 144px; | 297 background-size: 320px 144px; |
| 296 width: 10px; | 298 width: 10px; |
| 297 height: 10px; | 299 height: 10px; |
| 298 } | 300 } |
| 299 | 301 |
| 300 @media (-webkit-min-device-pixel-ratio: 1.5) { | 302 @media (-webkit-min-device-pixel-ratio: 1.5) { |
| 301 .console-error-level .console-message::before, | 303 .console-error-level .console-message::before, |
| 304 .console-revokedError-level .console-message::before, |
| 302 .console-warning-level .console-message::before, | 305 .console-warning-level .console-message::before, |
| 303 .console-debug-level .console-message::before, | 306 .console-debug-level .console-message::before, |
| 304 .console-info-level .console-message::before { | 307 .console-info-level .console-message::before { |
| 305 background-image: url(Images/toolbarButtonGlyphs_2x.png); | 308 background-image: url(Images/toolbarButtonGlyphs_2x.png); |
| 306 } | 309 } |
| 307 } /* media */ | 310 } /* media */ |
| 308 | 311 |
| 309 .console-warning-level .console-message::before { | 312 .console-warning-level .console-message::before { |
| 310 background-position: -202px -107px; | 313 background-position: -202px -107px; |
| 311 } | 314 } |
| 312 | 315 |
| 313 .console-error-level .console-message::before { | 316 .console-error-level .console-message::before { |
| 314 background-position: -213px -96px; | 317 background-position: -213px -96px; |
| 315 } | 318 } |
| 316 | 319 |
| 320 .console-revokedError-level .console-message::before { |
| 321 background-position: -245px -107px; |
| 322 } |
| 323 |
| 317 .console-info-level .console-message::before { | 324 .console-info-level .console-message::before { |
| 318 background-position: -213px -107px; | 325 background-position: -213px -107px; |
| 319 } | 326 } |
| 320 | 327 |
| 321 .console-user-command .console-message { | 328 .console-user-command .console-message { |
| 322 margin-left: -24px; | 329 margin-left: -24px; |
| 323 padding-right: 0; | 330 padding-right: 0; |
| 324 border-bottom: none; | 331 border-bottom: none; |
| 325 } | 332 } |
| 326 | 333 |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 441 font-size: 9px; | 448 font-size: 9px; |
| 442 } | 449 } |
| 443 | 450 |
| 444 .object-info-state-note::before { | 451 .object-info-state-note::before { |
| 445 content: "i"; | 452 content: "i"; |
| 446 } | 453 } |
| 447 | 454 |
| 448 .console-view-object-properties-section:not(.expanded) .object-info-state-note { | 455 .console-view-object-properties-section:not(.expanded) .object-info-state-note { |
| 449 display: none; | 456 display: none; |
| 450 } | 457 } |
| OLD | NEW |