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.

_utils.scss 543B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /**
  2. * Hides an element.
  3. */
  4. .hide {
  5. display: none !important;
  6. }
  7. /**
  8. * Shows an element.
  9. */
  10. .show {
  11. display: block !important;
  12. }
  13. /**
  14. * Shows an inline element.
  15. */
  16. .show-inline {
  17. display: inline-block !important;
  18. }
  19. /**
  20. * Shows as a list item
  21. **/
  22. .show-list-item {
  23. display: list-item !important;
  24. }
  25. /**
  26. * Shows a flex element.
  27. */
  28. .show-flex {
  29. display: -webkit-box !important;
  30. display: -moz-box !important;
  31. display: -ms-flexbox !important;
  32. display: -webkit-flex !important;
  33. display: flex !important;
  34. }