public.scss
3.01 KB
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
126
127
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
.tableClass {
/deep/.el-table {
border: none !important;
.cell {
color: #FFFFFF !important;
}
.el-table__row {
background-color: #00275F !important;
margin-top: 5px;
}
thead {
background: #103E99 !important;
& th {
//inherit:规定应该从父元素继承 background-color 属性的设置。
//transparent:默认。背景颜色为透明。
// background-color: inherit !important;
background-color: transparent;
}
& tr {
// background-color: inherit !important;
background-color: transparent;
}
}
}
}
//*****start*通用表单查询条件,列表样式******//
.from-clues {
min-width: 1280px;
height: 100%;
width: 100%;
box-sizing: border-box;
background-color: #000637;
overflow-x: hidden;
&-header {
width: 100%;
padding: 10px;
box-sizing: border-box;
background: #061858;
box-shadow: inset 0px 0px 14px 0px #1D66DC;
border: 2px solid #1A3F81;
/deep/.el-form-item__label {
color: #E3F1FF;
}
/deep/.el-input__inner {
background-color: #04103D !important;
border: none;
}
}
.advanced-search {
display: flex;
font-size: 12px;
flex-wrap: wrap;
padding-top: 5px;
height: 30px;
span {
display: flex;
align-items: center;
}
i {
color: $light-blue;
margin-left: 5px;
cursor: pointer;
}
ul {
display: flex;
align-items: center;
li {
color: $light-blue;
border: 1px solid $light-blue;
border-radius: 10px;
padding: 2px 8px;
line-height: 16px;
}
}
.clean-btn {
margin-left: 10px;
}
}
&-content {
width: 100%;
box-sizing: border-box;
background: #FFFFFF;
margin-top: 10px;
//修改表头的背景颜色横向渐变色
@extend .tableClass;
}
.el-form--inline .el-form-item {
width: auto;
margin-right: 0px;
.el-form-item__content {
width: auto;
}
}
.el-form-item--small.el-form-item {
margin-bottom: 0px;
}
}
//*****end*通用表单查询条件,列表样式******//
/deep/.el-range-separator {
line-height: 28px !important;
}
.width200px {
width: 200px;
}
.width300px {
width: 300px;
}
.slxx_title {
border-bottom: 1px solid $borderColor;
padding-left: 10px;
padding-bottom: 5px;
margin-bottom: 10px;
margin-top: 5px;
font-size: 16px;
font-weight: 500;
color: #4a4a4a;
}
// 搜索框按钮的位置
.btnColRight {
box-sizing: border-box;
text-align: right;
}