Abstract.scss 460 B

123456789101112
  1. @include dataview-ui(
  2. $background-color: $dataview-background-color
  3. // the $dataview-item-foo variables are not included here because dataview items
  4. // do not have any default styling for backward compatibility reasons.
  5. // One must use set ui to 'default' to opt into styling of dataview items
  6. );
  7. @if $enable-default-uis {
  8. @if $dataview-default-ui {
  9. @include dataview-ui(map-merge((ui: default), $dataview-default-ui)...);
  10. }
  11. }