VSystemBar.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .v-system-bar {
  2. align-items: center;
  3. display: flex;
  4. flex: 1 1 auto;
  5. height: 24px;
  6. justify-content: flex-end;
  7. max-width: 100%;
  8. padding-inline: 8px;
  9. position: relative;
  10. text-align: end;
  11. width: 100%;
  12. }
  13. .v-system-bar .v-icon {
  14. opacity: var(--v-medium-emphasis-opacity);
  15. }
  16. .v-system-bar {
  17. box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
  18. }
  19. .v-system-bar--absolute {
  20. position: absolute;
  21. }
  22. .v-system-bar--fixed {
  23. position: fixed;
  24. }
  25. .v-system-bar {
  26. background: rgba(var(--v-theme-surface-light));
  27. color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
  28. }
  29. .v-system-bar {
  30. font-size: 0.75rem;
  31. font-weight: 400;
  32. letter-spacing: 0.0333333333em;
  33. line-height: 1.667;
  34. text-transform: none;
  35. }
  36. .v-system-bar--rounded {
  37. border-radius: 0;
  38. }
  39. .v-system-bar--window {
  40. height: 32px;
  41. }
  42. .v-system-bar:not(.v-system-bar--absolute) {
  43. padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
  44. }