123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /*-----------------------------------------------------------------------------
- | Copyright (c) Jupyter Development Team.
- | Distributed under the terms of the Modified BSD License.
- |----------------------------------------------------------------------------*/
- @keyframes flash {
- 0% {
- background-color: var(--jp-brand-color1);
- }
- 50% {
- color: unset;
- background-color: unset;
- }
- 100% {
- background-color: var(--jp-brand-color1);
- }
- }
- .jp-LogConsoleStatusItem.jp-LogConsole-flash {
- animation: flash 300ms both;
- }
- .jp-LogConsoleStatusItem.jp-mod-selected {
- background-color: var(--jp-brand-color1);
- }
- /* Need to be very specific to override the typestyle styles on status bar components */
- .jp-LogConsoleStatusItem.jp-mod-selected,
- .jp-LogConsoleStatusItem.jp-mod-selected div,
- .jp-LogConsoleStatusItem.jp-mod-selected div span {
- color: white;
- }
- .jp-LogConsole .jp-ClearIcon {
- transform: rotate(90deg);
- margin-top: -1px;
- padding: 0px 8px;
- }
- .jp-Toolbar-item.jp-LogConsole-toolbarLogLevel {
- align-items: center;
- padding: 0px 6px;
- }
- /* Matches the disabled style elsewhere in JupyterLab */
- .jp-LogConsole-toolbarLogLevel-disabled {
- opacity: 0.4;
- cursor: not-allowed;
- }
- /* Copied from the notebook cell type dropdown styling */
- .jp-LogConsole-toolbarLogLevelDropdown select {
- height: 24px;
- font-size: var(--jp-ui-font-size1);
- line-height: 14px;
- border-radius: 0;
- display: block;
- }
- /* Copied from the notebook cell type dropdown styling */
- .jp-LogConsole-toolbarLogLevelDropdown span {
- top: 5px !important;
- }
|