index.scss 1.84 KB
Newer Older
wanli's avatar
wanli committed
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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
@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