overides.scss
94 lines
| 1 | .amelia-v2-booking, |
| 2 | #amelia-app-backend-new { |
| 3 | .am-sr-only { |
| 4 | position: absolute; |
| 5 | width: 1px; |
| 6 | height: 1px; |
| 7 | padding: 0; |
| 8 | margin: -1px; |
| 9 | overflow: hidden; |
| 10 | clip: rect(0, 0, 0, 0); |
| 11 | clip-path: inset(50%); |
| 12 | white-space: nowrap; |
| 13 | border: 0; |
| 14 | } |
| 15 | |
| 16 | #amelia-container { |
| 17 | .el-form { |
| 18 | &-item { |
| 19 | display: block; |
| 20 | font-family: var(--am-font-family); |
| 21 | font-size: var(--am-fs-label); |
| 22 | margin-bottom: 18px; |
| 23 | |
| 24 | &.am-rtl { |
| 25 | .el-form-item { |
| 26 | &__label { |
| 27 | text-align: right; |
| 28 | } |
| 29 | |
| 30 | &__error { |
| 31 | left: unset; |
| 32 | right: 0; |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | &.is-required { |
| 37 | .el-form-item__label { |
| 38 | padding-left: 0; |
| 39 | padding-right: 10px; |
| 40 | &:before { |
| 41 | right: 0; |
| 42 | left: unset; |
| 43 | } |
| 44 | } |
| 45 | } |
| 46 | } |
| 47 | |
| 48 | &__label { |
| 49 | flex: 0 0 auto; |
| 50 | align-items: center; |
| 51 | text-align: left; |
| 52 | font-size: var(--am-fs-label); |
| 53 | line-height: 1.3; |
| 54 | color: var(--am-c-main-text); |
| 55 | box-sizing: border-box; |
| 56 | } |
| 57 | |
| 58 | &.is-required { |
| 59 | .el-form-item__label { |
| 60 | position: relative; |
| 61 | padding-left: 10px; |
| 62 | &:before { |
| 63 | position: absolute; |
| 64 | top: 0; |
| 65 | left: 0; |
| 66 | } |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | &__content { |
| 71 | display: flex; |
| 72 | flex-wrap: wrap; |
| 73 | align-items: center; |
| 74 | flex: 1; |
| 75 | position: relative; |
| 76 | font-size: var(--am-fs-inp); |
| 77 | min-width: 0; |
| 78 | } |
| 79 | |
| 80 | &__error { |
| 81 | font-size: 12px; |
| 82 | padding-top: 4px; |
| 83 | } |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | .el-input { |
| 88 | &__inner { |
| 89 | margin: 0; |
| 90 | } |
| 91 | } |
| 92 | } |
| 93 | } |
| 94 |