-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.scss
81 lines (79 loc) · 1.54 KB
/
style.scss
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
$vxe-table-validate-error-color: #f56c6c;
%ResetBorder {
border: 0;
box-shadow: none;
}
%CompWidth {
& > .ivu-input-wrapper,
& > .ivu-input-number,
& > .ivu-select,
& > .ivu-cascader,
& > .ivu-date-picker,
& > .ivu-date-picker-editor {
width: 100%;
}
}
.vxe-form {
.vxe-form--item-content {
@extend %CompWidth;
}
}
.vxe-table--filter-iview-wrapper {
padding: 0.8em 1em;
& > .ivu-input-wrapper,
& > .ivu-input-number,
& > .ivu-select,
& > .ivu-date-picker,
& > .ivu-rate {
width: 180px;
}
}
.vxe-cell,
.vxe-tree-cell {
@extend %CompWidth;
& > .ivu-rate {
height: 22px;
line-height: 22px;
vertical-align: bottom;
}
}
.col--valid-error {
& > .vxe-cell,
& > .vxe-tree-cell {
& > .ivu-input-wrapper .ivu-input,
& > .ivu-auto-complete .ivu-input,
& > .ivu-input-number,
& > .ivu-select .ivu-select-selection,
& > .ivu-cascader .ivu-input,
& > .ivu-date-picker .ivu-input {
border-color: $vxe-table-validate-error-color;
box-shadow: none;
}
}
}
.vxe-table.cell--highlight {
.vxe-cell,
.vxe-tree-cell {
& > .ivu-input-wrapper,
& > .ivu-auto-complete,
& > .ivu-cascader,
& > .ivu-date-picker {
.ivu-input {
padding: 0;
@extend %ResetBorder;
}
}
& > .ivu-input-number {
@extend %ResetBorder;
.ivu-input-number-handler-wrap,
.ivu-input-number-handler-down {
@extend %ResetBorder;
}
}
& > .ivu-select {
.ivu-select-selection {
@extend %ResetBorder;
}
}
}
}