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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 } /* media */ | 123 } /* media */ |
124 | 124 |
125 .console-message > .outline-disclosure li.parent { | 125 .console-message > .outline-disclosure li.parent { |
126 margin-top: 0; | 126 margin-top: 0; |
127 } | 127 } |
128 | 128 |
129 .console-message > .outline-disclosure li.parent::before { | 129 .console-message > .outline-disclosure li.parent::before { |
130 top: 0; | 130 top: 0; |
131 } | 131 } |
132 | 132 |
133 .bubble-repeat-count { | 133 .console-message .console-message-repeat-count { |
134 display: inline-block; | 134 margin-right: 4px; |
135 height: 14px; | 135 margin-left: -18px; |
136 background-color: rgb(128, 151, 189); | |
137 vertical-align: middle; | |
138 white-space: nowrap; | |
139 padding: 1px 4px; | |
140 text-align: left; | |
141 font-size: 11px; | |
142 line-height: normal; | |
143 font-weight: bold; | |
144 text-shadow: none; | |
145 color: white; | |
146 margin-top: -1px; | |
147 border-radius: 7px; | |
148 flex: none; | 136 flex: none; |
149 } | 137 } |
150 | 138 |
151 .console-message .bubble-repeat-count { | |
152 margin-right: 4px; | |
153 margin-left: -18px; | |
154 } | |
155 | |
156 .console-error-level .repeated-message::before, | 139 .console-error-level .repeated-message::before, |
157 .console-revokedError-level .repeated-message::before, | 140 .console-revokedError-level .repeated-message::before, |
158 .console-warning-level .repeated-message::before, | 141 .console-warning-level .repeated-message::before, |
159 .console-debug-level .repeated-message::before, | 142 .console-debug-level .repeated-message::before, |
160 .console-info-level .repeated-message::before { | 143 .console-info-level .repeated-message::before { |
161 visibility: hidden; | 144 visibility: hidden; |
162 } | 145 } |
163 | 146 |
164 .repeated-message .outline-disclosure, | 147 .repeated-message .outline-disclosure, |
165 .repeated-message > .console-message-text { | 148 .repeated-message > .console-message-text { |
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
449 background-color: rgb(179, 203, 247); | 432 background-color: rgb(179, 203, 247); |
450 } | 433 } |
451 | 434 |
452 .info-note::before { | 435 .info-note::before { |
453 content: "i"; | 436 content: "i"; |
454 } | 437 } |
455 | 438 |
456 .console-view-object-properties-section { | 439 .console-view-object-properties-section { |
457 padding: 0px; | 440 padding: 0px; |
458 } | 441 } |
OLD | NEW |