12345678910111213141516171819202122232425262728293031323334353637 |
- :root [data-jp-theme-light='true'] {
- --jp-icon-output-console: url('./list-icon-light.svg');
- }
- :root [data-jp-theme-light='false'] {
- --jp-icon-output-console: url('./list-icon-dark.svg');
- }
- .jp-LogConsoleIcon {
- background-image: var(--jp-icon-output-console);
- }
- @keyframes flash {
- 0% {
- background-color: var(--jp-brand-color1);
- }
- 50% {
- color: unset;
- background-color: unset;
- }
- 100% {
- background-color: var(--jp-brand-color1);
- }
- }
- .jp-LogConsoleStatusItem.hilite {
- animation: flash 300ms both;
- }
- .jp-LogConsoleStatusItem.hilited {
- background-color: var(--jp-brand-color1);
- }
- .jp-LogConsole .clear-icon {
- transform: rotate(90deg);
- margin-top: -1px;
- }
|