Paging.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /**
  2. * @class Ext.toolbar.Paging
  3. */
  4. /**
  5. * @var {boolean}
  6. * True to include different icons when the paging toolbar buttons are disabled.
  7. */
  8. $grid-paging-toolbar-include-disabled-icons: dynamic(true);
  9. /**
  10. * @var {color}
  11. * The color to use for paging toolbar icons when {@link Global_CSS#$enable-font-icons} is `true`.
  12. */
  13. $grid-paging-toolbar-glyph-color: dynamic($button-toolbar-glyph-color);
  14. /**
  15. * @var {number}
  16. * The font size to use for paging toolbar icons when {@link Global_CSS#$enable-font-icons} is `true`.
  17. */
  18. $grid-paging-toolbar-glyph-font-size: dynamic(16px);
  19. /**
  20. * @var {string/list}
  21. * Glyph for the "first" icon when {@link Global_CSS#$enable-font-icons} is `true`.
  22. */
  23. $grid-paging-toolbar-first-glyph: dynamic($ext-var-double-chevron-left $grid-paging-toolbar-glyph-font-size ExtJS);
  24. /**
  25. * @var {string/list}
  26. * Glyph for the "prev" icon when {@link Global_CSS#$enable-font-icons} is `true`.
  27. */
  28. $grid-paging-toolbar-prev-glyph: dynamic($ext-var-chevron-left $grid-paging-toolbar-glyph-font-size ExtJS);
  29. /**
  30. * @var {string/list}
  31. * Glyph for the "next" icon when {@link Global_CSS#$enable-font-icons} is `true`.
  32. */
  33. $grid-paging-toolbar-next-glyph: dynamic($ext-var-chevron-right $grid-paging-toolbar-glyph-font-size ExtJS);
  34. /**
  35. * @var {string/list}
  36. * Glyph for the "last" icon when {@link Global_CSS#$enable-font-icons} is `true`.
  37. */
  38. $grid-paging-toolbar-last-glyph: dynamic($ext-var-double-chevron-right $grid-paging-toolbar-glyph-font-size ExtJS);
  39. /**
  40. * @var {string/list}
  41. * Glyph for the "refresh" icon when {@link Global_CSS#$enable-font-icons} is `true`.
  42. */
  43. $grid-paging-toolbar-refresh-glyph: dynamic($fa-var-refresh $grid-paging-toolbar-glyph-font-size $font-icon-font-family);