Blame view

src/styles/element-ui.scss 3.69 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
.upload-container {
  .el-upload {
    width: 100%;

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

// dropdown
.el-dropdown-menu {
  a {
    display: block
  }
}
86 87 88 89 90

.el-input__prefix {
  display: none;
}

赵千 committed
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 127 128 129 130
// 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
131

赵千 committed
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
.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;
}

192 193 194 195 196
// table换行
.el-tooltip__popper {
  max-width: 80%;
}

197

198
.el-table .el-tooltip span {
199
  white-space: pre-wrap;
200 201 202 203 204
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
任超 committed
205

赵千 committed
206 207 208 209 210 211 212 213
.el-table tr:nth-child(even) {
  background: #FCFDFD !important;
}

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

赵千 committed
215 216
.lb-table .el-table {
  border: 1px solid #E4EBF4;
任超 committed
217
  border-bottom: none;
赵千 committed
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
  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;
  }
任超 committed
243 244 245 246 247
}

// 弹框层级
.messageIndex {
  z-index: 8000 !important;
赵千 committed
248
}