CheckboxModel.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /**
  2. * @class Ext.selection.CheckboxModel
  3. */
  4. /**
  5. * @var {number}
  6. * The horizontal space before the checkbox
  7. */
  8. $checkbox-selection-model-cell-spacing-before: dynamic(5px);
  9. /**
  10. * @var {number}
  11. * The horizontal space after the checkbox
  12. */
  13. $checkbox-selection-model-cell-spacing-after: dynamic(5px);
  14. // private
  15. $checkbox-selection-model-column-header-padding:
  16. max(ceil(($grid-header-height - $form-checkbox-size) / 2), 0)
  17. $checkbox-selection-model-cell-spacing-after
  18. max(floor(($grid-header-height - $form-checkbox-size) / 2), 0)
  19. $checkbox-selection-model-cell-spacing-before;
  20. // private
  21. $checkbox-selection-model-cell-padding:
  22. max(ceil(($grid-row-height - $form-checkbox-size) / 2), 0)
  23. $checkbox-selection-model-cell-spacing-after
  24. max(floor(($grid-row-height - $form-checkbox-size) / 2), 0)
  25. $checkbox-selection-model-cell-spacing-before;
  26. /**
  27. * @var {color}
  28. * The color to use for the checkbox when {@link Global_CSS#$enable-font-icons} is `true`.
  29. */
  30. $checkbox-selection-model-glyph-color: dynamic($form-checkbox-glyph-color);
  31. /**
  32. * @var {string/list}
  33. * The glyph for the checkbox when {@link Global_CSS#$enable-font-icons} is `true`.
  34. */
  35. $checkbox-selection-model-glyph: dynamic($form-checkbox-glyph);
  36. /**
  37. * @var {string/list}
  38. * The glyph for the checkbox in "checked" state when {@link Global_CSS#$enable-font-icons} is `true`.
  39. */
  40. $checkbox-selection-model-checked-glyph: dynamic($form-checkbox-checked-glyph);