utils.scss 807 B

12345678910111213141516171819202122232425262728293031
  1. /**
  2. * IBM Confidential
  3. * OCO Source Materials
  4. * IBM Business Platform: Dashboard
  5. * (C) Copyright IBM Corp. 2018, 2020
  6. * The source code for this program is not published or otherwise divested of its trade secrets,
  7. * irrespective of what has been deposited with the U.S. Copyright Office
  8. **/
  9. @import "../lib/@ba-ui-toolkit/essentials/_essentials.scss";
  10. @mixin user-select($value) {
  11. -webkit-touch-callout: $value;
  12. -moz-user-select: $value;
  13. -khtml-user-select: $value;
  14. -webkit-user-select: $value;
  15. -ms-user-select: $value;
  16. user-select: $value;
  17. }
  18. @mixin absolute-position($t, $r, $b, $l) {
  19. position: absolute;
  20. top: $t;
  21. right: $r;
  22. bottom: $b;
  23. left: $l;
  24. }
  25. @mixin resizePointColors() {
  26. @include theming(background-color, ui-01);
  27. border: 1px solid;
  28. @include theming(border-color, interactive-01);
  29. }