normalize.less 1.02 KB
Newer Older
wangcong committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// 此样式文件主要用于覆盖一些样式,工程中样式被覆盖的太多了
.ivu-modal-header-inner, .ivu-modal-header p {
  font-family: Microsoft YaHei;
}
.ivu-tree ul .ivu-tree-title {
  font-size: 14px !important;
}
button,
input,
select,
textarea {
  font-family: Microsoft YaHei
}
.ivu-modal-wrap {
  display: flex;
  align-items: center;
}
18 19 20
.ivu-message {
  z-index: 9999 !important;
}
qiaoyanqi committed
21
//element  样式修改
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

.el-message-box__wrapper {
  .el-message-box {
    border-radius: 6px;
    .el-message-box__btns {
      .el-button {
        font-size: 14px;
        border-color: transparent;
        &:hover {
          text-decoration: none;
          color: #005791;
          border-color: transparent;
          background-color: white;
        }
      }
      .el-button--primary {
        background-color: #005791;
        border-color: #005791;
        &:hover {
          text-decoration: none;
          color: white;
          border-color: #005791;
          background-color: #005791;
        }
      }
    }
  }
}