Lockable.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /**
  2. * @class Ext.grid.locking.Lockable
  3. */
  4. /**
  5. * @var {number}
  6. * The width of the border between the locked views
  7. */
  8. $grid-lockable-separator-border-width: dynamic(1px);
  9. /**
  10. * @var {string}
  11. * The border-style of the border between the locked views
  12. */
  13. $grid-lockable-separator-border-style: dynamic(solid);
  14. /**
  15. * @var {string}
  16. * The border-color of the border between the locked views. Defaults to the
  17. * panel border color. May be overridden in a theme.
  18. */
  19. $grid-lockable-separator-border-color: dynamic($panel-border-color);
  20. /**
  21. * @var {string/list}
  22. * Glyph for the grid header menu "lock" icon when {@link Global_CSS#$enable-font-icons} is `true`.
  23. */
  24. $grid-lockable-header-menu-lock-glyph: dynamic($fa-var-lock $grid-header-menu-glyph-font-size $font-icon-font-family);
  25. /**
  26. * @var {string/list}
  27. * Glyph for the grid header menu "unlock" icon when {@link Global_CSS#$enable-font-icons} is `true`.
  28. */
  29. $grid-lockable-header-menu-unlock-glyph: dynamic($fa-var-unlock $grid-header-menu-glyph-font-size $font-icon-font-family);
  30. /**
  31. * @var {number}
  32. * The border-width of the lockable grid body border
  33. */
  34. $grid-lockable-body-border-width: dynamic($grid-body-border-width);