Model.scss 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /**
  2. * @class Ext.grid.selection.SelectionExtender
  3. */
  4. /**
  5. * @var {number}
  6. * The height of the drag handle for extending a range in the
  7. * {@link Ext.grid.selection.Model grid selection model}.
  8. */
  9. $grid-selmodel-handle-height: dynamic(7px);
  10. /**
  11. * @var {number}
  12. * The width of the drag handle for extending a range in the
  13. * {@link Ext.grid.selection.Model grid selection model}.
  14. */
  15. $grid-selmodel-handle-width: dynamic($grid-selmodel-handle-height);
  16. /**
  17. * @var {number}
  18. * The height of the drag handle for extending a range in the
  19. * {@link Ext.grid.selection.Model grid selection model} in the {@link Global_CSS#$enable-big big} sizing scheme..
  20. */
  21. $grid-selmodel-handle-height-big: dynamic(15px);
  22. /**
  23. * @var {number}
  24. * The width of the drag handle for extending a range in the
  25. * {@link Ext.grid.selection.Model grid selection model} in the {@link Global_CSS#$enable-big big} sizing scheme..
  26. */
  27. $grid-selmodel-handle-width-big: dynamic($grid-selmodel-handle-height-big);
  28. /**
  29. * @var {number}
  30. * The color of the drag handle for extending a range in the
  31. * {@link Ext.grid.selection.Model grid selection model}.
  32. */
  33. $grid-selmodel-handle-color: dynamic($base-color);
  34. /**
  35. * @var {number}
  36. * The width of the dotted line indicating the dragged extension area when extending a range in the
  37. * {@link Ext.grid.selection.Model grid selection model}.
  38. */
  39. $grid-selmodel-mask-border-width: dynamic(1px);
  40. /**
  41. * @var {string}
  42. * The style of the dotted line indicating the dragged extension area when extending a range in the
  43. * {@link Ext.grid.selection.Model grid selection model}.
  44. */
  45. $grid-selmodel-mask-border-style: dynamic(dotted);
  46. /**
  47. * @var {color}
  48. * The color of the dotted line indicating the dragged extension area when extending a range in the
  49. * {@link Ext.grid.selection.Model grid selection model}.
  50. */
  51. $grid-selmodel-mask-border-color: dynamic($base-color);