| 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 24 matching lines...) Expand all Loading... |
| 35 .console-view-wrapper { | 35 .console-view-wrapper { |
| 36 background-color: #eee; | 36 background-color: #eee; |
| 37 } | 37 } |
| 38 | 38 |
| 39 .console-view-fix-select-all { | 39 .console-view-fix-select-all { |
| 40 height: 0; | 40 height: 0; |
| 41 overflow: hidden; | 41 overflow: hidden; |
| 42 } | 42 } |
| 43 | 43 |
| 44 .console-filters-header { | 44 .console-filters-header { |
| 45 flex: 0 0 23px; | |
| 46 overflow: hidden; | 45 overflow: hidden; |
| 46 flex: none; |
| 47 } | 47 } |
| 48 | 48 |
| 49 #console-messages { | 49 #console-messages { |
| 50 flex: 1 1; | 50 flex: 1 1; |
| 51 padding: 2px 0; | 51 padding: 2px 0; |
| 52 overflow-y: auto; | 52 overflow-y: auto; |
| 53 word-wrap: break-word; | 53 word-wrap: break-word; |
| 54 -webkit-user-select: text; | 54 -webkit-user-select: text; |
| 55 border-top: 1px solid rgb(230, 230, 230); | 55 border-top: 1px solid rgb(230, 230, 230); |
| 56 transform: translateZ(0); | 56 transform: translateZ(0); |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 font-size: 9px; | 444 font-size: 9px; |
| 445 } | 445 } |
| 446 | 446 |
| 447 .object-info-state-note::before { | 447 .object-info-state-note::before { |
| 448 content: "i"; | 448 content: "i"; |
| 449 } | 449 } |
| 450 | 450 |
| 451 .console-view-object-properties-section:not(.expanded) .object-info-state-note { | 451 .console-view-object-properties-section:not(.expanded) .object-info-state-note { |
| 452 display: none; | 452 display: none; |
| 453 } | 453 } |
| OLD | NEW |