12345678910111213141516171819202122232425262728293031323334353637383940 |
- @use 'sass:map';
- @use '../../styles/settings';
- @use '../../styles/tools';
- // VSystemBar
- $system-bar-background: rgba(var(--v-theme-surface-light)) !default;
- $system-bar-border-radius: map.get(settings.$rounded, 0) !default;
- $system-bar-color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity)) !default;
- $system-bar-elevation: 0 !default;
- $system-bar-flex: 1 1 auto !default;
- $system-bar-font-size: tools.map-deep-get(settings.$typography, 'caption', 'size') !default;
- $system-bar-font-weight: tools.map-deep-get(settings.$typography, 'caption', 'weight') !default;
- $system-bar-height: 24px !default;
- $system-bar-icon-opacity: var(--v-medium-emphasis-opacity) !default;
- $system-bar-justify-content: flex-end !default;
- $system-bar-letter-spacing: tools.map-deep-get(settings.$typography, 'caption', 'letter-spacing') !default;
- $system-bar-lights-out-background: rgba(var(--v-theme-background), 0.7) !default;
- $system-bar-line-height: tools.map-deep-get(settings.$typography, 'caption', 'line-height') !default;
- $system-bar-padding-x: 8px !default;
- $system-bar-positions: absolute fixed !default;
- $system-bar-text-align: end !default;
- $system-bar-text-transform: tools.map-deep-get(settings.$typography, 'caption', 'text-transform') !default;
- $system-bar-window-height: 32px !default;
- // Lists
- $system-bar-theme: (
- $system-bar-background,
- $system-bar-color
- ) !default;
- $system-bar-typography: (
- $system-bar-font-size,
- $system-bar-font-weight,
- $system-bar-letter-spacing,
- $system-bar-line-height,
- $system-bar-text-transform
- ) !default;
- // Deprecated
- $system-bar-padding: 0 8px !default;
|