app-message-box.less 1.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
.app-modal-ok {
    .ivu-modal-header {
        padding-left: 32px;
        padding-top: 28px;
        border-bottom: 0;
        .header {
            text-align: left;
            line-height: 26px;
            height: auto;
            color: #333333;
            font-weight: 600;
            font-size: 18px;
            i {
                font-size: 24px;
                position: relative;
                top: 1px;
                margin-right: 8px;
            }
        }
    }
    .ivu-modal-body {
      padding: 0 32px 0 68px;
      color: #707070;
      .content {
        line-height: 1.5;
        font-size: 16px;
      }
      >.body-icon {
          height: 40px;
          i {
            font-size: 24px;
            position: relative;
            top: 1px;
            margin-right: 8px;
            display: block;
            position: absolute;
            left: 32px;
            top: 40px;
          }
      }
    }
    .ivu-modal-footer {
      border-top: 0;
      padding: 24px 32px 24px 18px;
      .ivu-btn {
        width: 80px;
        height: 34px;
        font-size: 15px;
      }
      .ivu-btn-primary {
        color: rgb(187,218,254);
      }
      .ivu-btn-default {
        color: rgb(157,157,157);
      }
    }

    .info {
        i {
            color: #2d8cf0;
        }
    }
    .success {
        i {
            color: rgb(25,190,107);
        }
    }
    .warning {
        i {
            color: #f90;
        }
    }
    .error {
        i {
            color: #ed4014;
        }
    }
    .question {
      i {
        color: #DADADA
      }
    }
}