| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- .nut-dialog {
- display: flex;
- flex-direction: column;
- align-items: center;
- width: $dialog-width;
- min-height: 156px;
- padding: 28px 24px 16px 24px;
- box-sizing: border-box;
- &__header {
- display: block;
- text-align: center;
- height: 20px;
- font-size: 16px;
- color: rgba(38, 38, 38, 1);
- @include oneline-ellipsis();
- }
- &__content {
- width: 100%;
- overflow: auto;
- flex: 1;
- margin: 20px 0;
- max-height: 268px;
- line-height: 16px;
- font-size: 12px;
- color: $text-color;
- word-wrap: break-word;
- word-break: break-all;
- white-space: pre-wrap;
- }
- &__footer {
- display: flex;
- align-items: center;
- width: 100%;
- justify-content: space-around;
- &.vertical {
- flex-direction: column;
- .nut-button {
- min-width: 100%;
- margin: 0;
- &.nut-dialog__footer-cancel {
- border: 0;
- }
- &.nut-dialog__footer-ok {
- margin-top: 10px;
- }
- }
- }
- .nut-button {
- min-width: 100px;
- }
- &-cancel {
- margin-right: 20px;
- }
- &-ok {
- max-width: 128px;
- }
- }
- }
|