UNPKG

1.46 kBSCSSView Raw
1/**Variable**/
2
3.vxe-grid {
4 position: relative;
5 &.is--loading {
6 &:before {
7 content: "";
8 position: absolute;
9 top: 0;
10 left: 0;
11 width: 100%;
12 height: 100%;
13 z-index: 99;
14 user-select: none;
15 background-color: $vxe-loading-background-color;
16 }
17 & > .vxe-table {
18 .vxe-loading {
19 background-color: transparent;
20 }
21 }
22 }
23 &.is--maximize {
24 position: fixed;
25 top: 0;
26 left: 0;
27 width: 100%;
28 height: 100%;
29 padding: 0.5em 1em;
30 background-color: $vxe-grid-maximize-background-color;
31 }
32 .vxe-body--row {
33 &.row--pending {
34 color: $vxe-table-validate-error-color;
35 text-decoration: line-through;
36 cursor: no-drop;
37 .vxe-body--column {
38 position: relative;
39 &:after {
40 content: "";
41 position: absolute;
42 top: 50%;
43 left: 0;
44 width: 100%;
45 height: 0;
46 border-bottom: 1px solid $vxe-table-validate-error-color;
47 z-index: 1;
48 }
49 }
50 }
51 }
52 .vxe-grid--form-wrapper,
53 .vxe-grid--top-wrapper,
54 .vxe-grid--bottom-wrapper {
55 position: relative;
56 }
57}
58
59.vxe-grid {
60 font-size: $vxe-font-size;
61 &.size--medium {
62 font-size: $vxe-font-size-medium;
63 }
64 &.size--small {
65 font-size: $vxe-font-size-small;
66 }
67 &.size--mini {
68 font-size: $vxe-font-size-mini;
69 }
70}