You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

orderedlayout.scss 1005B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. @mixin base-orderedlayout {
  2. .v-orderedlayout,
  3. .v-horizontallayout,
  4. .v-verticallayout {
  5. position: relative;
  6. }
  7. .v-orderedlayout-margin-top,
  8. .v-horizontallayout-margin-top,
  9. .v-verticallayout-margin-top {
  10. padding-top: 12px;
  11. }
  12. .v-orderedlayout-margin-right,
  13. .v-horizontallayout-margin-right,
  14. .v-verticallayout-margin-right {
  15. padding-right: 12px;
  16. }
  17. .v-orderedlayout-margin-bottom,
  18. .v-horizontallayout-margin-bottom,
  19. .v-verticallayout-margin-bottom {
  20. padding-bottom: 12px;
  21. }
  22. .v-orderedlayout-margin-left,
  23. .v-horizontallayout-margin-left,
  24. .v-verticallayout-margin-left {
  25. padding-left: 12px;
  26. }
  27. .v-orderedlayout-spacing-on,
  28. .v-horizontallayout-spacing-on,
  29. .v-verticallayout-spacing-on {
  30. padding-top: 6px;
  31. padding-left: 6px;
  32. }
  33. /* This can be used to define spacing if spacing is off server side */
  34. .v-orderedlayout-spacing-off,
  35. .v-horizontallayout-spacing-off,
  36. .v-verticallayout-spacing-off {
  37. padding-top: 0;
  38. padding-left: 0;
  39. }
  40. .v-horizontallayout-slot, .v-verticallayout-slot {
  41. position: absolute;
  42. }
  43. }