jiangping
2023-08-17 6365ab0a976afdd247742c9b3dca15deb3a7a7a1
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
@import "variables.scss";
// 样式重置
html {
  height: 100%;
  padding: 0;
  margin: 0;
  color: $font-color;
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  body {
    height: 100%;
    padding: 0;
    margin: 0;
  }
  h1,h2,h3,h4,h5,h6,ul {
    margin: 0;
    padding: 0;
  }
  ul {
    list-style: none;
  }
  #app {
    height: 100%;
    min-width: $page-min-width;
  }
}
 
// 穿梭框的按钮
.el-transfer__buttons {
  padding: 0 16px !important;
}
 
// dialog
.eva-dialog {
  .el-dialog__body {
    padding: 0 20px;
  }
  .el-form-item {
    display: flex !important;
    .el-form-item__content {
      flex-grow: 1;
    }
  }
}
 
.long-title-style {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  overflow: hidden;
}
 
.valid-style {
  // color: rgb(122, 171, 51);
  color:#03AF76
}
.unvalid-style {
  // color: orange
  color:#F5A400
}
.scrap-style {
  // color: rgb(220, 77, 65);;
  color:#DE5243
}
 
.title-add-style {
  color: #111;
  font-weight: 700;
  font-size: 22px;
}
 
.property-title {
  color: #111;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
 
.form-wrap .el-select {
  width: 160px !important;
}
.form-wrap .el-input {
  width: 160px !important;
}
 
.el-date-editor--daterange.el-input,
.el-date-editor--daterange.el-input__inner,
.el-date-editor--timerange.el-input,
.el-date-editor--timerange.el-input__inner {
  width: 220px !important;
}
 
.el-input__inner {
  color: #333;
}
 
span .el-button--text {
  color: rgb(220, 77, 65) !important;
}
 
// .el-table__header-wrapper {
//   line-height: 23px !important;
// }
 
// .el-table--small th, .el-table--small td {
//   line-height: 14px !important;
//   padding: 1px !important;
// }
// .table-content .table-wrap .el-table td .cell {
//   min-height: 24px !important;
// }
// .el-table__row {
//   height: 26px !important;
// }