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.

94 lines
1.7 KiB

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