| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- .u-relative {
- position: relative;
- }
- .u-pointer {
- user-select: none;
- cursor: pointer;
- }
- .u-readonly {
- user-select: none;
- }
- .u-ellipsis {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .u-overflow-y--auto {
- overflow-x: hidden;
- overflow-y: auto;
- }
- .u-color--primary {
- color: $primary;
- }
- .u-color--success {
- color: $success;
- &.dark {
- color: $success--dark;
- }
- }
- .u-color--error {
- color: $error;
- &.light {
- color: #fb8885;
- }
- &.dark {
- color: #e51414;
- }
- }
- .u-color--warning {
- color: $warning;
- }
- .u-color--white {
- color: #fff;
- }
- .u-color--black {
- color: $black;
- }
- .u-color--info {
- color: $gray--dark;
- }
- .u-bold {
- font-weight: bold;
- }
- .u-text-center {
- text-align: center;
- }
- .u-align-self {
- &--center {
- align-self: center;
- }
- }
|