| 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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 margin-left: 100%; | 258 margin-left: 100%; |
| 259 width: 3px; | 259 width: 3px; |
| 260 height: 100%; | 260 height: 100%; |
| 261 box-sizing: border-box; | 261 box-sizing: border-box; |
| 262 } | 262 } |
| 263 | 263 |
| 264 .console-error-level { | 264 .console-error-level { |
| 265 background-color: hsl(0, 100%, 97%); | 265 background-color: hsl(0, 100%, 97%); |
| 266 } | 266 } |
| 267 | 267 |
| 268 .-theme-with-dark-background .console-error-level { |
| 269 background-color: hsl(0, 100%, 8%); |
| 270 } |
| 271 |
| 268 .console-warning-level { | 272 .console-warning-level { |
| 269 background-color: hsl(50, 100%, 95%); | 273 background-color: hsl(50, 100%, 95%); |
| 270 } | 274 } |
| 271 | 275 |
| 272 .console-warning-level .console-message-text { | 276 .console-warning-level .console-message-text { |
| 273 color: hsl(39, 100%, 18%); | 277 color: hsl(39, 100%, 18%); |
| 274 } | 278 } |
| 275 | 279 |
| 276 .console-error-level .console-message-text, | 280 .console-error-level .console-message-text, |
| 277 .console-error-level .console-view-object-properties-section { | 281 .console-error-level .console-view-object-properties-section { |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 font-size: 9px; | 425 font-size: 9px; |
| 422 } | 426 } |
| 423 | 427 |
| 424 .object-info-state-note::before { | 428 .object-info-state-note::before { |
| 425 content: "i"; | 429 content: "i"; |
| 426 } | 430 } |
| 427 | 431 |
| 428 .console-view-object-properties-section:not(.expanded) .object-info-state-note { | 432 .console-view-object-properties-section:not(.expanded) .object-info-state-note { |
| 429 display: none; | 433 display: none; |
| 430 } | 434 } |
| OLD | NEW |