| 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 14 matching lines...) Expand all Loading... |
| 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 25 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 .console-view { | 30 .console-view { |
| 31 background-color: white; | 31 background-color: white; |
| 32 overflow: hidden; | 32 overflow: hidden; |
| 33 } | 33 } |
| 34 | 34 |
| 35 .console-view > .toolbar { |
| 36 border-bottom: 1px solid #dadada; |
| 37 } |
| 38 |
| 35 .console-view-wrapper { | 39 .console-view-wrapper { |
| 36 background-color: #eee; | 40 background-color: #eee; |
| 37 } | 41 } |
| 38 | 42 |
| 39 .console-view-fix-select-all { | 43 .console-view-fix-select-all { |
| 40 height: 0; | 44 height: 0; |
| 41 overflow: hidden; | 45 overflow: hidden; |
| 42 } | 46 } |
| 43 | 47 |
| 44 .console-filters-header { | |
| 45 overflow: hidden; | |
| 46 flex: none; | |
| 47 } | |
| 48 | |
| 49 #console-messages { | 48 #console-messages { |
| 50 flex: 1 1; | 49 flex: 1 1; |
| 51 padding: 2px 0; | 50 padding: 2px 0; |
| 52 overflow-y: auto; | 51 overflow-y: auto; |
| 53 word-wrap: break-word; | 52 word-wrap: break-word; |
| 54 -webkit-user-select: text; | 53 -webkit-user-select: text; |
| 55 border-top: 1px solid rgb(230, 230, 230); | |
| 56 transform: translateZ(0); | 54 transform: translateZ(0); |
| 57 } | 55 } |
| 58 | 56 |
| 59 #console-prompt { | 57 #console-prompt { |
| 60 clear: right; | 58 clear: right; |
| 61 position: relative; | 59 position: relative; |
| 62 padding: 3px 22px 1px 0; | 60 padding: 3px 22px 1px 0; |
| 63 margin-left: 24px; | 61 margin-left: 24px; |
| 64 min-height: 18px; /* Sync with ConsoleViewMessage.js */ | 62 min-height: 18px; /* Sync with ConsoleViewMessage.js */ |
| 65 white-space: pre-wrap; | 63 white-space: pre-wrap; |
| (...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 font-size: 9px; | 442 font-size: 9px; |
| 445 } | 443 } |
| 446 | 444 |
| 447 .object-info-state-note::before { | 445 .object-info-state-note::before { |
| 448 content: "i"; | 446 content: "i"; |
| 449 } | 447 } |
| 450 | 448 |
| 451 .console-view-object-properties-section:not(.expanded) .object-info-state-note { | 449 .console-view-object-properties-section:not(.expanded) .object-info-state-note { |
| 452 display: none; | 450 display: none; |
| 453 } | 451 } |
| OLD | NEW |