mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
71 lines
1.4 KiB
SCSS
71 lines
1.4 KiB
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-body--row {
|
|
&.row--pending {
|
|
color: var(--vxe-table-validate-error-color);
|
|
text-decoration: line-through;
|
|
cursor: no-drop;
|
|
.vxe-body--column {
|
|
position: relative;
|
|
&:after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 0;
|
|
border-bottom: 1px solid var(--vxe-table-validate-error-color);
|
|
z-index: 1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.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);
|
|
}
|
|
}
|