• wanli's avatar
    update · d327191f
    wanli authored
    d327191f
index.scss 1.84 KB
@import './variables.scss';
@import './mixin.scss';
@import './transition.scss';
@import './element-ui.scss';
@import './sidebar.scss';

html {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
}

label {
  font-weight: 700;
}

#app {
  height: 100%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

a:focus,
a:active {
  outline: none;
}

a,
a:focus,
a:hover {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

div:focus {
  outline: none;
}
i,em{
  font-style: normal;
}
h1,h2,h3,h4,h5,h6,b,strong{
  font-weight: normal;
}

ul,li{
  list-style: none;
  margin: 0;
  padding: 0;
}

.clearfix {
  &:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
  }
}
// iconfont的基础样式
.icon-font {
  width: 1em;
  height: 1em;
  fill: currentColor;
  overflow: hidden;
}


// 隐藏元素
.el-hide{
  display: none !important;
}
//修改table表头背景色 start
// .el-table th{
//   background: #ebecf0;
// }
// .el-table__expanded-cell{
//   .el-table th{
//     background-color: #c8cbd9;
//   }
// }
//修改table表头背景色 end

// 增加展开table子标题title start
.self-menuTable-box{
  padding-top: 20px;
  .flowForm--subTitle {
    position: relative;
    margin-bottom: 14px;
    padding-left: 10px;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    &:before {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 2.5px;
        background-color: #298dff;
        content: "";
    }
  }
}
// 增加展开table子标题title end