| 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 | 115 |
| 116 @media (-webkit-min-device-pixel-ratio: 1.5) { | 116 @media (-webkit-min-device-pixel-ratio: 1.5) { |
| 117 .console-message::before, | 117 .console-message::before, |
| 118 .console-user-command::before, | 118 .console-user-command::before, |
| 119 #console-prompt::before, | 119 #console-prompt::before, |
| 120 .console-group-title::before { | 120 .console-group-title::before { |
| 121 background-image: url(Images/toolbarButtonGlyphs_2x.png); | 121 background-image: url(Images/toolbarButtonGlyphs_2x.png); |
| 122 } | 122 } |
| 123 } /* media */ | 123 } /* media */ |
| 124 | 124 |
| 125 .console-message > .outline-disclosure li.parent { |
| 126 margin-top: 0; |
| 127 } |
| 128 |
| 125 .console-message > .outline-disclosure li.parent::before { | 129 .console-message > .outline-disclosure li.parent::before { |
| 126 top: 0; | 130 top: 0; |
| 127 } | 131 } |
| 128 | 132 |
| 129 .bubble-repeat-count { | 133 .bubble-repeat-count { |
| 130 display: inline-block; | 134 display: inline-block; |
| 131 height: 14px; | 135 height: 14px; |
| 132 background-color: rgb(128, 151, 189); | 136 background-color: rgb(128, 151, 189); |
| 133 vertical-align: middle; | 137 vertical-align: middle; |
| 134 white-space: nowrap; | 138 white-space: nowrap; |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 background-color: rgb(179, 203, 247); | 449 background-color: rgb(179, 203, 247); |
| 446 } | 450 } |
| 447 | 451 |
| 448 .info-note::before { | 452 .info-note::before { |
| 449 content: "i"; | 453 content: "i"; |
| 450 } | 454 } |
| 451 | 455 |
| 452 .console-view-object-properties-section:not(.expanded) .info-note { | 456 .console-view-object-properties-section:not(.expanded) .info-note { |
| 453 display: none; | 457 display: none; |
| 454 } | 458 } |
| 459 |
| 460 .console-view-object-properties-section { |
| 461 padding: 0px; |
| 462 } |
| OLD | NEW |