build.less 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. // Datepicker .less buildfile. Includes select mixins/variables from bootstrap
  2. // and imports the included datepicker.less to output a minimal datepicker.css
  3. //
  4. // Usage:
  5. // lessc build.less datepicker.css
  6. //
  7. // Variables and mixins copied from bootstrap 2.0.2
  8. // Variables
  9. @grayLight: #999;
  10. @grayLighter: #eee;
  11. @white: #fff;
  12. @linkColor: #08c;
  13. @btnPrimaryBackground: @linkColor;
  14. @orange: #f89406;
  15. // Mixins
  16. // Border Radius
  17. .border-radius(@radius: 5px) {
  18. -webkit-border-radius: @radius;
  19. -moz-border-radius: @radius;
  20. border-radius: @radius;
  21. }
  22. // Button backgrounds
  23. .buttonBackground(@startColor, @endColor) {
  24. .gradientBar(@startColor, @endColor);
  25. .reset-filter();
  26. &:hover, &:active, &.active, &.disabled, &[disabled] {
  27. background-color: @endColor;
  28. }
  29. &:active,
  30. &.active {
  31. background-color: darken(@endColor, 10%) e("\9");
  32. }
  33. }
  34. // Reset filters for IE
  35. .reset-filter() {
  36. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  37. }
  38. // Gradient Bar Colors for buttons and alerts
  39. .gradientBar(@primaryColor, @secondaryColor) {
  40. #gradient > .vertical(@primaryColor, @secondaryColor);
  41. border-color: @secondaryColor @secondaryColor darken(@secondaryColor, 15%);
  42. border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) fadein(rgba(0,0,0,.1), 15%);
  43. }
  44. // Gradients
  45. #gradient {
  46. .vertical(@startColor: #555, @endColor: #333) {
  47. background-color: mix(@startColor, @endColor, 60%);
  48. background-image: -moz-linear-gradient(top, @startColor, @endColor); // FF 3.6+
  49. background-image: -ms-linear-gradient(top, @startColor, @endColor); // IE10
  50. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@startColor), to(@endColor)); // Safari 4+, Chrome 2+
  51. background-image: -webkit-linear-gradient(top, @startColor, @endColor); // Safari 5.1+, Chrome 10+
  52. background-image: -o-linear-gradient(top, @startColor, @endColor); // Opera 11.10
  53. background-image: linear-gradient(top, @startColor, @endColor); // The standard
  54. background-repeat: repeat-x;
  55. filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",@startColor,@endColor)); // IE9 and down
  56. }
  57. }
  58. @import "../less/datetimepicker.less";