_utility.scss 819 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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-overflow-y--auto {
  17. overflow-x: hidden;
  18. overflow-y: auto;
  19. }
  20. .u-color--primary {
  21. color: $primary;
  22. }
  23. .u-color--success {
  24. color: $success;
  25. &.dark {
  26. color: $success--dark;
  27. }
  28. }
  29. .u-color--error {
  30. color: $error;
  31. &.light {
  32. color: #fb8885;
  33. }
  34. &.dark {
  35. color: #e51414;
  36. }
  37. }
  38. .u-color--warning {
  39. color: $warning;
  40. }
  41. .u-color--white {
  42. color: #fff;
  43. }
  44. .u-color--black {
  45. color: $black;
  46. }
  47. .u-color--info {
  48. color: $gray--dark;
  49. }
  50. .u-bold {
  51. font-weight: bold;
  52. }
  53. .u-text-center {
  54. text-align: center;
  55. }
  56. .u-align-self {
  57. &--center {
  58. align-self: center;
  59. }
  60. }