You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

90 lines
1.6 KiB

  1. /*-------------------
  2. Step
  3. --------------------*/
  4. @verticalMargin: 0em;
  5. @horizontalMargin: 0em;
  6. @verticalPadding: 0.8em;
  7. @horizontalPadding: 1.75em;
  8. @leftPadding: @horizontalPadding + (@arrowSize /2);
  9. @transition:
  10. background-color 0.1s ease,
  11. opacity 0.1s ease,
  12. color 0.1s ease,
  13. box-shadow 0.1s ease
  14. ;
  15. @borderRadius: 0.3125rem;
  16. @lineHeight: 1.2;
  17. @backgroundColor: #FFFFFF;
  18. @background: @backgroundColor;
  19. @borderRadius: 0em;
  20. @boxShadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15);
  21. /* Icon */
  22. @iconDistance: 0.6em;
  23. @iconSize: 2em;
  24. @iconVerticalAlign: middle;
  25. /* Title */
  26. @titleFontFamily: @headerFont;
  27. @titleFontWeight: bold;
  28. @titleFontSize: 1.1em;
  29. @titleColor: @darkTextColor;
  30. /* Description */
  31. @descriptionDistance: 0.2em;
  32. @descriptionFontSize: 1em;
  33. @descriptionFontWeight: normal;
  34. @descriptionColor: @textColor;
  35. /* Arrow */
  36. @arrowWidth: 1em;
  37. @arrowSize: 1.5em;
  38. @arrowBackgroundColor: @backgroundColor;
  39. @arrowTopOffset: 50%;
  40. @arrowRightOffset: 0em;
  41. @arrowBorderColor: rgba(0, 0, 0, 0.1);
  42. /*-------------------
  43. Group
  44. --------------------*/
  45. @stepsBorderRadius: 0.3125rem;
  46. @stepsBackground: '';
  47. @stepsBoxShadow: '';
  48. /*-------------------
  49. States
  50. --------------------*/
  51. /* Completed */
  52. @completedColor: @positiveColor;
  53. /* Hover */
  54. @hoverBackground: #FFFFFF;
  55. @hoverColor: @selectedTextColor;
  56. /* Down */
  57. @downBackground: #F0F0F0;
  58. @downColor: @selectedTextColor;
  59. /* Active */
  60. @activeBackgroundColor: #F0F0F0;
  61. @activeBackground: @activeBackgroundColor;
  62. @activeColor: @linkColor;
  63. @activeIconColor: @darkTextColor;
  64. /* Disabled */
  65. @disabledBackground: '';
  66. @disabledColor: @disabledTextColor;
  67. @small: 0.9rem;
  68. @medium: 1rem;
  69. @large: 1.1rem;