| 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 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 | 281 |
| 282 .console-group-messages .section .properties li .info { | 282 .console-group-messages .section .properties li .info { |
| 283 padding-top: 0; | 283 padding-top: 0; |
| 284 padding-bottom: 0; | 284 padding-bottom: 0; |
| 285 color: rgb(60%, 60%, 60%); | 285 color: rgb(60%, 60%, 60%); |
| 286 } | 286 } |
| 287 | 287 |
| 288 .console-object-preview { | 288 .console-object-preview { |
| 289 white-space: normal; | 289 white-space: normal; |
| 290 word-wrap: break-word; | 290 word-wrap: break-word; |
| 291 font-style: italic; |
| 291 } | 292 } |
| 292 | 293 |
| 293 .console-object-preview .name { | 294 .console-object-preview .name { |
| 294 /* Follows .section .properties .name, .event-properties .name */ | 295 /* Follows .section .properties .name, .event-properties .name */ |
| 295 color: rgb(136, 19, 145); | 296 color: rgb(136, 19, 145); |
| 296 flex-shrink: 0; | 297 flex-shrink: 0; |
| 297 } | 298 } |
| 298 | 299 |
| 299 .console-message-text .object-value-string { | 300 .console-message-text .object-value-string { |
| 300 white-space: pre-wrap; | 301 white-space: pre-wrap; |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 } | 335 } |
| 335 | 336 |
| 336 .info-note { | 337 .info-note { |
| 337 background-color: rgb(179, 203, 247); | 338 background-color: rgb(179, 203, 247); |
| 338 } | 339 } |
| 339 | 340 |
| 340 .info-note::before { | 341 .info-note::before { |
| 341 content: "i"; | 342 content: "i"; |
| 342 } | 343 } |
| 343 | 344 |
| 345 .console-view-object-properties-section:not(.expanded) .info-note { |
| 346 display: none; |
| 347 } |
| 348 |
| 344 .console-view-object-properties-section { | 349 .console-view-object-properties-section { |
| 345 padding: 0px; | 350 padding: 0px; |
| 346 } | 351 } |
| 347 | 352 |
| 348 .console-message-stack-trace-toggle { | 353 .console-message-stack-trace-toggle { |
| 349 display: flex; | 354 display: flex; |
| 350 flex-direction: row; | 355 flex-direction: row; |
| 351 align-items: flex-start; | 356 align-items: flex-start; |
| 352 } | 357 } |
| 353 | 358 |
| 354 .console-message-stack-trace-wrapper { | 359 .console-message-stack-trace-wrapper { |
| 355 flex: 1 1 auto; | 360 flex: 1 1 auto; |
| 356 display: flex; | 361 display: flex; |
| 357 flex-direction: column; | 362 flex-direction: column; |
| 358 align-items: stretch; | 363 align-items: stretch; |
| 359 } | 364 } |
| 360 | 365 |
| 361 .console-message-stack-trace-wrapper > * { | 366 .console-message-stack-trace-wrapper > * { |
| 362 flex: none; | 367 flex: none; |
| 363 } | 368 } |
| OLD | NEW |