| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 .console-error-level .repeated-message, | 130 .console-error-level .repeated-message, |
| 131 .console-warning-level .repeated-message, | 131 .console-warning-level .repeated-message, |
| 132 .console-verbose-level .repeated-message, | 132 .console-verbose-level .repeated-message, |
| 133 .console-info-level .repeated-message { | 133 .console-info-level .repeated-message { |
| 134 display: flex; | 134 display: flex; |
| 135 } | 135 } |
| 136 | 136 |
| 137 .console-info { | 137 .console-info { |
| 138 color: rgb(128, 128, 128); | 138 color: rgb(128, 128, 128); |
| 139 font-style: italic; | 139 font-style: italic; |
| 140 padding-bottom: 2px; |
| 140 } | 141 } |
| 141 | 142 |
| 142 .console-group .console-group > .console-group-messages { | 143 .console-group .console-group > .console-group-messages { |
| 143 margin-left: 16px; | 144 margin-left: 16px; |
| 144 } | 145 } |
| 145 | 146 |
| 146 .console-group-title { | 147 .console-group-title { |
| 147 font-weight: bold; | 148 font-weight: bold; |
| 148 } | 149 } |
| 149 | 150 |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 .console-error-level .console-message-text, | 227 .console-error-level .console-message-text, |
| 227 .console-error-level .console-view-object-properties-section { | 228 .console-error-level .console-view-object-properties-section { |
| 228 color: red !important; | 229 color: red !important; |
| 229 } | 230 } |
| 230 | 231 |
| 231 .-theme-with-dark-background .console-error-level .console-message-text, | 232 .-theme-with-dark-background .console-error-level .console-message-text, |
| 232 .-theme-with-dark-background .console-error-level .console-view-object-propertie
s-section { | 233 .-theme-with-dark-background .console-error-level .console-view-object-propertie
s-section { |
| 233 color: hsl(0, 100%, 75%) !important; | 234 color: hsl(0, 100%, 75%) !important; |
| 234 } | 235 } |
| 235 | 236 |
| 236 .console-verbose-level .console-message-text { | |
| 237 color: blue; | |
| 238 } | |
| 239 | |
| 240 .-theme-with-dark-background .console-verbose-level .console-message-text { | 237 .-theme-with-dark-background .console-verbose-level .console-message-text { |
| 241 color: hsl(220, 100%, 65%) !important; | 238 color: hsl(220, 100%, 65%) !important; |
| 242 } | 239 } |
| 243 | 240 |
| 244 .console-message.console-warning-level { | 241 .console-message.console-warning-level { |
| 245 background-color: rgb(255, 250, 224); | 242 background-color: rgb(255, 250, 224); |
| 246 } | 243 } |
| 247 | 244 |
| 248 #console-messages .link { | 245 #console-messages .link { |
| 249 text-decoration: underline; | 246 text-decoration: underline; |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 .console-message-stack-trace-wrapper { | 354 .console-message-stack-trace-wrapper { |
| 358 flex: 1 1 auto; | 355 flex: 1 1 auto; |
| 359 display: flex; | 356 display: flex; |
| 360 flex-direction: column; | 357 flex-direction: column; |
| 361 align-items: stretch; | 358 align-items: stretch; |
| 362 } | 359 } |
| 363 | 360 |
| 364 .console-message-stack-trace-wrapper > * { | 361 .console-message-stack-trace-wrapper > * { |
| 365 flex: none; | 362 flex: none; |
| 366 } | 363 } |
| OLD | NEW |