_qtip.scss 1.1 KB

1234567891011121314151617181920212223242526272829
  1. $tip-base-color: adjust-color($base-color, $hue: 2.121deg, $saturation: 44.444%, $lightness: 11.569%) !default;
  2. //background
  3. $tip-background-color: $tip-base-color !default;
  4. $tip-background-gradient: null !default;
  5. //text
  6. $tip-body-color : adjust-color($neutral-color, $hue: 0deg, $saturation: 0%, $lightness: -66.667%) !default;
  7. $tip-body-font-size : ceil($font-size * .9) !default;
  8. $tip-body-font-weight: normal !default;
  9. $tip-body-padding: 3px !default;
  10. $tip-body-link-color: darken($tip-body-color, 10%) !default;
  11. $tip-header-color : $tip-body-color !default;
  12. $tip-header-font-size : $tip-body-font-size !default;
  13. $tip-header-font-weight: bold !default;
  14. $tip-header-padding : 3px 3px 0 !default;
  15. //borders
  16. $tip-border-color: adjust-color($tip-base-color, $hue: -1.705deg, $saturation: -60.494%, $lightness: -27.451%) !default;
  17. $tip-border-width: 1px !default;
  18. $tip-border-radius: 3px !default;
  19. //error tips
  20. $tip-error-inner-border-color: #d87166 !default;
  21. $tip-error-border-color: #a1311f !default;
  22. $tip-error-border-radius: 5px !default;
  23. $tip-error-border-width: 1px !default;
  24. $tip-error-background-color: #fff !default;