1
0
mirror of synced 2025-12-11 00:28:09 +08:00
Files
vxe-table/styles/grid.scss
2023-12-25 00:43:38 +08:00

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);
}
}