RowBody.scss 551 B

123456789101112131415161718192021222324252627282930
  1. /**
  2. * @class Ext.grid.RowBody
  3. */
  4. /**
  5. * @var {number/list}
  6. * Row body padding
  7. */
  8. $rowbody-padding: dynamic($gridcell-padding);
  9. /**
  10. * Creates a visual theme for a row body.
  11. *
  12. * @param {string} $ui
  13. * The name of the UI being created. Can not included spaces or special punctuation
  14. * (used in CSS class names).
  15. * @param $padding
  16. */
  17. @mixin rowbody-ui(
  18. $ui: null,
  19. $padding: null
  20. ) {
  21. $ui-suffix: ui-suffix($ui);
  22. .#{$prefix}rowbody#{$ui-suffix} {
  23. .#{$prefix}content-el {
  24. padding: $padding;
  25. }
  26. }
  27. }