_toolbar.scss 1.2 KB

123456789101112131415161718192021222324252627282930
  1. $toolbar-font-size: ceil($font-size * .9) !default;
  2. $toolbar-background-color: adjust-color($base-color, $hue: -1.333deg, $saturation: -3.831%, $lightness: 4.51%) !default;
  3. $toolbar-background-gradient: color_stops(lighten($toolbar-background-color, 3), $toolbar-background-color) !default;
  4. $toolbar-inner-border-width: 1px 0px 0px !default;
  5. $toolbar-inner-border-color: lighten($toolbar-background-color, 5%) !default;
  6. //margins
  7. $toolbar-horizontal-spacing: 2px !default;
  8. $toolbar-vertical-spacing: 2px !default;
  9. $toolbar-footer-horizontal-spacing: 6px !default;
  10. $toolbar-footer-vertical-spacing: 2px !default;
  11. //border
  12. $toolbar-border-color: $panel-body-border-color !default;
  13. //spacer
  14. $toolbar-spacer-width: 2px !default;
  15. //separator
  16. $toolbar-separator-color: adjust-color($base-color, $hue: -1deg, $saturation: 100%, $lightness: -4.3%) !default;
  17. $toolbar-separator-highlight-color: #fff !default;
  18. //text
  19. $toolbar-text-font-family: $font-family !default;
  20. $toolbar-text-font-size: ceil($font-size * .9) !default; //11px
  21. $toolbar-text-font-weight: normal !default;
  22. $toolbar-text-color: mix($mix-color, #000, 30) !default;
  23. $toolbar-text-padding: 3px 4px 0 4px !default;
  24. $toolbar-text-line-height: 16px !default;