variables.less 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /* This file contains variable declarations (do not remove this line) */
  2. /*-- VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/
  3. @bootstrapDirectory: "../../bootstrap";
  4. /**
  5. * @section Grid styles
  6. */
  7. @gridBorderWidth: 1px;
  8. @gridBorderRadius: 0px;
  9. @borderColor: #d4d4d4;
  10. /**
  11. * @section Header styles
  12. */
  13. /** @description Colors for header gradient */
  14. @headerBackgroundColor: #f3f3f3;
  15. @headerGradientStart: #fff;
  16. @headerGradientStop: #fff;
  17. @headerVerticalBarColor: @borderColor;
  18. /**
  19. * @section Grid body styles
  20. */
  21. /** @description Colors used for row alternation */
  22. @verticalBarColor: @borderColor;
  23. @rowColorEven: #f3f3f3;
  24. @rowColorOdd: #fdfdfd;
  25. // TODO: colors for buttons
  26. /**
  27. * @section Sort arrow colors
  28. */
  29. @sortArrowBackgroundColor: #aaaaaa;
  30. @sortArrowBorderColor: #777777;
  31. // TODO: color for menu background
  32. @rowHeaderCell: #F0F0EE;
  33. @rowSelected: #C9DDE1;
  34. @rowSavingForeground: #848484;
  35. @rowErrorForeground: #FF0000;
  36. @rowDirtyForeground: #610B38;
  37. // TODO: color for cell selections
  38. @focusedCell: #b3c4c7;
  39. // Color to use for enabled or selected settings/items/cells, etc. Should probably override the one above
  40. @selectedColor: #cecece;
  41. /**
  42. * @section Scrollbar styles
  43. */
  44. @scrollbarBackground: darken(@rowColorEven, 15%);
  45. @scrollbarBackgroundHover: darken(@scrollbarBackground, 15%);
  46. @scrollbarBackgroundScrolling: darken(@scrollbarBackgroundHover, 15%);
  47. @scrollbarWidth: 10px;
  48. @scrollbarBorderRadius: 2px;
  49. @scrollbarShadow: 0 0 0px #fff;
  50. @scrollbarBorder: 1px solid darken(@scrollbarBackground, 15%);
  51. @scrollbarBorderScrolling: 1px solid darken(@scrollbarBackgroundScrolling, 15%);
  52. //Border to be applied to editors when the input value or invalid
  53. @invalidValueBorder: 1px solid rgb(252, 143, 143);
  54. @validValueBorder: 1px solid @borderColor;
  55. //Pagination controls
  56. @paginationButtonColor: @headerGradientStart;
  57. @paginationButtonBackgroundColor: @headerBackgroundColor;
  58. @paginationButtonBorderColor: #ccc;
  59. /**
  60. * @section font library path
  61. */
  62. @font-path: '';
  63. /*-- END VARIABLES (DO NOT REMOVE THESE COMMENTS) --*/