_utilities.less 713 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. // /**
  2. // * Copyright © Magento, Inc. All rights reserved.
  3. // * See COPYING.txt for license details.
  4. // */
  5. @import 'utilities/_grid-framework.less';
  6. @import 'utilities/_grid.less';
  7. @import 'utilities/_actions.less';
  8. @import 'utilities/_animations.less';
  9. @import 'utilities/_spinner.less';
  10. .hidden() {
  11. clip: rect(0, 0, 0, 0);
  12. overflow: hidden;
  13. position: absolute;
  14. }
  15. .disabled() {
  16. box-shadow: none;
  17. cursor: default;
  18. opacity: .5;
  19. outline: 0;
  20. }
  21. .lib-text-overflow-ellipsis() {
  22. overflow: hidden;
  23. text-overflow: ellipsis;
  24. white-space: nowrap;
  25. }
  26. .appearing__off() {
  27. opacity: 0;
  28. visibility: hidden;
  29. }
  30. .appearing__on() {
  31. opacity: 1;
  32. visibility: visible;
  33. }