EvaluationNotification.css (1036B)
1 /* This Source Code Form is subject to the terms of the Mozilla Public 2 * License, v. 2.0. If a copy of the MPL was not distributed with this 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 4 5 .evaluation-notification.warning { 6 color: var(--console-warning-color); 7 border-color: var(--console-warning-border); 8 background-color: var(--console-warning-background); 9 } 10 11 .evaluation-notification.warning .evaluation-notification__icon { 12 color: var(--theme-icon-warning-color); 13 background-image: url(chrome://devtools/content/debugger/images/sourcemap.svg); 14 } 15 16 .evaluation-notification__icon { 17 flex: none; 18 align-self: flex-start; 19 width: 16px; 20 height: 16px; 21 margin: var(--console-output-vertical-padding) 5px var(--console-output-vertical-padding) 0; 22 background-image: none; 23 background-position: center; 24 background-repeat: no-repeat; 25 background-size: 16px; 26 -moz-context-properties: fill; 27 fill: currentColor; 28 } 29 30 .evaluation-notification__text { 31 margin: var(--console-output-vertical-padding) 0; 32 }