Blame view

src/styles/element-ui.scss 3.46 KB
赵千 committed
1 2 3 4 5 6 7 8
// cover some element-ui styles

.el-breadcrumb__inner,
.el-breadcrumb__inner a {
  font-weight: 400 !important;
  color: #686666;
}

任超 committed
9 10 11 12
.el-table .cell {
  line-height: 16px;
}

任超 committed
13 14 15 16 17
//input
.el-input__inner {
  padding: 0 7px !important;
}

赵千 committed
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
.el-upload {
  input[type="file"] {
    display: none !important;
  }
}

.el-upload__input {
  display: none;
}

.cell {
  .el-tag {
    margin-right: 0px;
  }
}

.small-padding {
  .cell {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.fixed-width {
  .el-button--mini {
    padding: 7px 10px;
    min-width: 60px;
  }
}

.status-col {
  .cell {
    padding: 0 10px;
    text-align: center;

    .el-tag {
      margin-right: 0px;
    }
  }
}

任超 committed
59 60 61 62
.el-icon-date {
  display: none;
}

赵千 committed
63 64
// to fixed https://github.com/ElemeFE/element/issues/2461
// refine element ui upload
任超 committed
65 66 67 68
.el-input.is-disabled .el-input__inner {
  color: #909399;
}

赵千 committed
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 126
.upload-container {
  .el-upload {
    width: 100%;

    .el-upload-dragger {
      width: 100%;
      height: 200px;
    }
  }
}

// dropdown
.el-dropdown-menu {
  a {
    display: block
  }
}

// fix date-picker ui bug in filter-item
.el-range-editor.el-input__inner {
  display: inline-flex !important;
}

// to fix el-date-picker css style
.el-range-separator {
  box-sizing: content-box;
}

.el-submenu__icon-arrow {
  margin-top: -5px;
}

/* --------------进度条美化---------------- */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-track {
  width: 7px;
  background-color: rgba(255, 255, 255, 0);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(207, 208, 209);
  background-clip: padding-box;
  min-height: 28px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgb(162, 164, 167);
}
任超 committed
127

赵千 committed
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
// element 样式补丁
.el-menu--horizontal {
  border-bottom: none !important;
}

.el-radio-group {
  .el-radio-button__inner {
    height: 36px;
    line-height: 36px;
    padding: 0 20px;
    font-size: 14px;
  }

  .el-radio-button:first-child {
    border-radius: 4px 0 0 4px;
  }

  .el-radio-button:last-child {
    border-radius: 0 4px 4px 0;
  }
}

.el-tabs__item:focus.is-active.is-focus:not(:active) {
  box-shadow: none !important;
}

// Divider 分割线 样式的修改
.el-divider--horizontal {
  margin: 10px 0 !important;
}

.el-row {
  margin-bottom: 0 !important;
}

// form
.el-form-item__content {
  margin-left: 0 !important;
}

.el-icon-full-screen,
.el-icon-rank {
  cursor: pointer;
}

// element table 选中 颜色
.el-table--enable-row-hover .el-table__body tr:hover>td {
  background-color: #FCFDFD;
}

.el-table__body .el-table__row.hover-row td {
  background-color: #FCFDFD;
}

.el-table tbody tr:hover>td {
  background-color: #FCFDFD;
}

// 表格样式
.el-table th {
  height: 48px !important;
  font-size: 14px;
  color: #4A4A4A;
}

任超 committed
193

赵千 committed
194 195 196 197 198 199 200 201
.el-table tr:nth-child(even) {
  background: #FCFDFD !important;
}

.el-table tr td {
  font-size: 14px;
  color: #7A7A7A;
}
任超 committed
202

赵千 committed
203 204
.lb-table .el-table {
  border: 1px solid #E4EBF4;
任超 committed
205
  border-bottom: none;
赵千 committed
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
  border-radius: 4px 4px 0 0;
}

.el-upload-list__item.is-success:focus:not(:hover) .el-icon-close-tip {
  display: none !important
}

.el-message-box__btns {
  display: flex;
  flex-direction: row-reverse;
}

.el-message-box__btns .el-button--primary {
  margin-right: 10px;
}

.el-form-item__content {
  flex: 1;
}

.el-submenu__title {
  .svg-icon {
    position: relative;
    top: 2px;
  }
}