田源
2024-04-07 2ac55ce0edf4870a29691b56bfad59f4830a11a2
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
/***
 * 公共样式
 */
 
.conditionRow .conditionField{
    padding-right:5px;
    width:140px; /**查询条件字段下拉框宽度 */
}
.xpl-popup-query, .xpl-unpopup-query{
    margin-left:10px;
}
.conditionField input{
    text-align: right;
}
.xpl-dc-complex .conditionRow .conditionOption{
    padding-right:5px;
    width:100px; /**复杂模式下查询条件操作下拉框宽度 */
}
.xpl-dc-simple .conditionRow .conditionOption{
    display: none;/**简单模式下,操作下拉框隐藏 */
}
/***删除条件样式"X" */
.conditionRow .delRowBtn .layui-icon-close{
    font-size: 20px; 
    color: red;
}
 
.xpl-clear {clear:both;}
.xpl-hide{
    display: none;
}
 
 
/***
* 非弹窗模式
*/
.xpl-dc-unpopup .layui-xpl-dc-top-btns{
    display: none;
}
/**非弹窗模式查询条件浮动 */
.xpl-dc-unpopup .conditionRow{
    float:left;
    padding-right: 20px;
    margin-bottom:3px;
}
/**非弹窗模式查询值控件显示宽度 */
.xpl-dc-unpopup .conditionRow .conditionValue{
    width:220px;
}
 
/**非弹窗模式隐藏【X】按钮 */
.xpl-dc-unpopup .conditionRow .conditionDel{
    display: none;
}
 
.xpl-dc-unpopup-btns{
    float:left;
}
 
 
 
.xpl-dc-unpopup-btns .layui-btn{
    margin-bottom:3px;
}
 
/***
 * 弹窗模式
 */
.xpl-dc-popup .conditionRow{
    margin-bottom:15px;
    margin-left: 10px;
}
.xpl-dc-popup .conditionRow .conditionValue{
    width:303px;
}
.xpl-dc-popup-query-condition-div{
    font-size:12px;
    float:left;
}
.xpl-dc-popup-btns{
    float:right;
}
.layui-xpl-dc-circle {
    border-radius: 90px;
    display:inline-block;
    text-align:center;
    height: 25px;
    line-height: 25px;
    background-color:#1E9FFF;
    color:#fff;
    margin:3px 5px;
    padding-top:0px;
    padding-bottom:0px;
    padding-left:8px;
    padding-right:18px;
    position:relative;
}
.layui-xpl-dc-delete{ 
    width:20px;
    height:20px;
    line-height: 20px;
    cursor:pointer;
    border-radius:60%;
    position:absolute;
    top:2px;
    right:-1px;
    color:#c2c2c2;
}
.layui-xpl-dc-delete:hover{
    border-radius: 12px;
    color: #fff;
}