| 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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 line-height: 13px; | 381 line-height: 13px; |
| 382 } | 382 } |
| 383 | 383 |
| 384 .console-group-messages .section .properties li .info { | 384 .console-group-messages .section .properties li .info { |
| 385 padding-top: 0; | 385 padding-top: 0; |
| 386 padding-bottom: 0; | 386 padding-bottom: 0; |
| 387 color: rgb(60%, 60%, 60%); | 387 color: rgb(60%, 60%, 60%); |
| 388 } | 388 } |
| 389 | 389 |
| 390 .console-object-preview { | 390 .console-object-preview { |
| 391 font-style: italic; | |
| 392 white-space: normal; | 391 white-space: normal; |
| 393 word-wrap: break-word; | 392 word-wrap: break-word; |
| 394 } | 393 } |
| 395 | 394 |
| 396 .console-object-preview .name { | 395 .console-object-preview .name { |
| 397 /* Follows .section .properties .name, .event-properties .name */ | 396 /* Follows .section .properties .name, .event-properties .name */ |
| 398 color: rgb(136, 19, 145); | 397 color: rgb(136, 19, 145); |
| 399 flex-shrink: 0; | 398 flex-shrink: 0; |
| 400 } | 399 } |
| 401 | 400 |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 482 | 481 |
| 483 @media (-webkit-min-device-pixel-ratio: 1.1) { | 482 @media (-webkit-min-device-pixel-ratio: 1.1) { |
| 484 .console-message-stack-trace-toggle .console-message-text::before { | 483 .console-message-stack-trace-toggle .console-message-text::before { |
| 485 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); | 484 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); |
| 486 } | 485 } |
| 487 } /* media */ | 486 } /* media */ |
| 488 | 487 |
| 489 .console-message-stack-trace-toggle.expanded .console-message-text::before { | 488 .console-message-stack-trace-toggle.expanded .console-message-text::before { |
| 490 -webkit-mask-position: -20px -96px; | 489 -webkit-mask-position: -20px -96px; |
| 491 } | 490 } |
| OLD | NEW |