| 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.1) { | 116 @media (-webkit-min-device-pixel-ratio: 1.1) { |
| 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/smallIcons_2x.png); | 121 background-image: url(Images/smallIcons_2x.png); |
| 122 } | 122 } |
| 123 } /* media */ | 123 } /* media */ |
| 124 | 124 |
| 125 .console-message .console-message-repeat-count { | 125 .console-message-repeat-count { |
| 126 margin-right: 4px; | 126 margin: 2px 0 0 10px; |
| 127 margin-left: -18px; | |
| 128 flex: none; | 127 flex: none; |
| 129 } | 128 } |
| 130 | 129 |
| 130 .repeated-message { |
| 131 margin-left: 4px; |
| 132 } |
| 133 |
| 131 .console-error-level .repeated-message::before, | 134 .console-error-level .repeated-message::before, |
| 132 .console-revokedError-level .repeated-message::before, | 135 .console-revokedError-level .repeated-message::before, |
| 133 .console-warning-level .repeated-message::before, | 136 .console-warning-level .repeated-message::before, |
| 134 .console-debug-level .repeated-message::before, | 137 .console-debug-level .repeated-message::before, |
| 135 .console-info-level .repeated-message::before { | 138 .console-info-level .repeated-message::before { |
| 136 visibility: hidden; | 139 visibility: hidden; |
| 137 } | 140 } |
| 138 | 141 |
| 139 .repeated-message .console-message-stack-trace-toggle, | 142 .repeated-message .console-message-stack-trace-toggle, |
| 140 .repeated-message > .console-message-text { | 143 .repeated-message > .console-message-text { |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 | 468 |
| 466 @media (-webkit-min-device-pixel-ratio: 1.1) { | 469 @media (-webkit-min-device-pixel-ratio: 1.1) { |
| 467 .console-message-stack-trace-triangle { | 470 .console-message-stack-trace-triangle { |
| 468 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); | 471 -webkit-mask-image: url(Images/toolbarButtonGlyphs_2x.png); |
| 469 } | 472 } |
| 470 } /* media */ | 473 } /* media */ |
| 471 | 474 |
| 472 .console-message-stack-trace-toggle.expanded .console-message-stack-trace-triang
le { | 475 .console-message-stack-trace-toggle.expanded .console-message-stack-trace-triang
le { |
| 473 -webkit-mask-position: -20px -96px; | 476 -webkit-mask-position: -20px -96px; |
| 474 } | 477 } |
| OLD | NEW |