_qtip.scss 1.1 KB

123456789101112131415161718192021222324252627282930
  1. $tip-base-color: color-offset($base-color, 45%) !default;
  2. $include-tip-highlights: $include-highlights !default;
  3. //background
  4. $tip-background-color: #fff !default;
  5. $tip-background-gradient: null !default;
  6. //text
  7. $tip-body-color: color-by-background($tip-base-color, $contrast: 40%) !default;
  8. $tip-body-font-size: $font-size-small !default;
  9. $tip-body-font-weight: normal !default;
  10. $tip-body-padding: 3px 3px 0 !default;
  11. $tip-body-link-color: darken($tip-body-color, 10%) !default;
  12. $tip-header-color : $tip-body-color !default;
  13. $tip-header-font-size : $tip-body-font-size !default;
  14. $tip-header-font-weight: bold !default;
  15. $tip-header-padding : 3px 3px 0 !default;
  16. //borders
  17. $tip-border-color: #fff !default; //color-offset($tip-base-color, $mode: dark, $contrast: 20%) !default;
  18. $tip-border-width: 0 !default;
  19. $tip-border-radius: 5px !default;
  20. //error tips
  21. $tip-error-inner-border-color: #d87166 !default;
  22. $tip-error-border-color: #a1311f !default;
  23. $tip-error-border-radius: 5px !default;
  24. $tip-error-border-width: 1px !default;
  25. $tip-error-background-color: #fff !default;