_utility.scss 601 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. .u-relative {
  2. position: relative;
  3. }
  4. .u-pointer {
  5. user-select: none;
  6. cursor: pointer;
  7. }
  8. .u-readonly {
  9. user-select: none;
  10. }
  11. .u-ellipsis {
  12. white-space: nowrap;
  13. overflow: hidden;
  14. text-overflow: ellipsis;
  15. }
  16. .u-color--primary {
  17. color: $primary;
  18. }
  19. .u-color--success {
  20. color: $success;
  21. }
  22. .u-color--success.dark {
  23. color: $success--dark;
  24. }
  25. .u-color--error {
  26. color: $error;
  27. }
  28. .u-color--error.dark {
  29. color: #fb8885;
  30. }
  31. .u-color--warning {
  32. color: $warning;
  33. }
  34. .u-color--black {
  35. color: $black;
  36. }
  37. .u-color--info {
  38. color: $gray--dark;
  39. }
  40. .u-text-center {
  41. text-align: center;
  42. }