| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 | 91 |
| 92 .console-message, | 92 .console-message, |
| 93 .console-user-command { | 93 .console-user-command { |
| 94 clear: right; | 94 clear: right; |
| 95 position: relative; | 95 position: relative; |
| 96 padding: 3px 22px 1px 0; | 96 padding: 3px 22px 1px 0; |
| 97 margin-left: 24px; | 97 margin-left: 24px; |
| 98 min-height: 18px; /* Sync with ConsoleViewMessage.js */ | 98 min-height: 18px; /* Sync with ConsoleViewMessage.js */ |
| 99 flex: auto; | 99 flex: auto; |
| 100 display: flex; | 100 display: flex; |
| 101 overflow: hidden; |
| 102 text-overflow: ellipsis; |
| 101 } | 103 } |
| 102 | 104 |
| 103 .console-message > * { | 105 .console-message > * { |
| 104 flex: auto; | 106 flex: auto; |
| 105 } | 107 } |
| 106 | 108 |
| 107 .console-timestamp { | 109 .console-timestamp { |
| 108 color: gray; | 110 color: gray; |
| 109 -webkit-user-select: none; | 111 -webkit-user-select: none; |
| 110 flex: none; | 112 flex: none; |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 line-height: 13px; | 290 line-height: 13px; |
| 289 } | 291 } |
| 290 | 292 |
| 291 .console-group-messages .section .properties li .info { | 293 .console-group-messages .section .properties li .info { |
| 292 padding-top: 0; | 294 padding-top: 0; |
| 293 padding-bottom: 0; | 295 padding-bottom: 0; |
| 294 color: rgb(60%, 60%, 60%); | 296 color: rgb(60%, 60%, 60%); |
| 295 } | 297 } |
| 296 | 298 |
| 297 .console-object-preview { | 299 .console-object-preview { |
| 298 white-space: normal; | |
| 299 word-wrap: break-word; | |
| 300 font-style: italic; | 300 font-style: italic; |
| 301 white-space: nowrap; |
| 301 } | 302 } |
| 302 | 303 |
| 303 .console-object-preview .name { | 304 .console-object-preview .name { |
| 304 /* Follows .section .properties .name, .event-properties .name */ | 305 /* Follows .section .properties .name, .event-properties .name */ |
| 305 color: rgb(136, 19, 145); | 306 color: rgb(136, 19, 145); |
| 306 flex-shrink: 0; | 307 flex-shrink: 0; |
| 307 } | 308 } |
| 308 | 309 |
| 309 .console-message-text .object-value-string { | 310 .console-message-text .object-value-string { |
| 310 white-space: pre-wrap; | 311 white-space: pre-wrap; |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 377 align-items: stretch; | 378 align-items: stretch; |
| 378 } | 379 } |
| 379 | 380 |
| 380 .console-message-stack-trace-wrapper > * { | 381 .console-message-stack-trace-wrapper > * { |
| 381 flex: none; | 382 flex: none; |
| 382 } | 383 } |
| 383 | 384 |
| 384 .console-message-expand-icon { | 385 .console-message-expand-icon { |
| 385 margin-bottom: -2px; | 386 margin-bottom: -2px; |
| 386 } | 387 } |
| OLD | NEW |