51 lines
958 B
SCSS
51 lines
958 B
SCSS
/**Variable**/
|
|
|
|
.vxe-grid {
|
|
position: relative;
|
|
&.is--loading {
|
|
&:before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 99;
|
|
user-select: none;
|
|
background-color: var(--vxe-loading-background-color);
|
|
}
|
|
& > .vxe-table {
|
|
.vxe-loading {
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
}
|
|
&.is--maximize {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0.5em 1em;
|
|
background-color: var(--vxe-grid-maximize-background-color);
|
|
}
|
|
.vxe-grid--form-wrapper,
|
|
.vxe-grid--top-wrapper,
|
|
.vxe-grid--bottom-wrapper {
|
|
position: relative;
|
|
}
|
|
}
|
|
|
|
.vxe-grid {
|
|
font-size: var(--vxe-font-size);
|
|
&.size--medium {
|
|
font-size: var(--vxe-font-size-medium);
|
|
}
|
|
&.size--small {
|
|
font-size: var(--vxe-font-size-small);
|
|
}
|
|
&.size--mini {
|
|
font-size: var(--vxe-font-size-mini);
|
|
}
|
|
}
|