add all frontend files

This commit is contained in:
2026-01-17 15:16:36 -05:00
parent ff16ae7858
commit e40287e4aa
25704 changed files with 1935289 additions and 0 deletions

106
node_modules/rc-cascader/assets/list.less generated vendored Normal file
View File

@@ -0,0 +1,106 @@
@select-prefix: ~'rc-cascader';
.@{select-prefix} {
&-dropdown {
min-height: auto;
}
&-menus {
display: flex;
flex-wrap: nowrap;
}
&-menu {
flex: none;
margin: 0;
padding: 0;
list-style: none;
border-left: 1px solid blue;
height: 180px;
min-width: 100px;
overflow: auto;
&:first-child {
border-left: 0;
}
&-item {
display: flex;
flex-wrap: nowrap;
padding-right: 20px;
position: relative;
&:hover {
background: rgba(0, 0, 255, 0.1);
}
&-selected {
background: rgba(0, 0, 255, 0.05);
}
&-active {
background: rgba(0, 255, 0, 0.1);
}
&-disabled {
opacity: 0.5;
}
&-content {
flex: auto;
}
&-expand-icon {
position: absolute;
right: 4px;
top: 50%;
transform: translateY(-50%);
}
}
}
&-checkbox {
position: relative;
display: block;
flex: none;
width: 20px;
height: 20px;
border: 1px solid blue;
&::after {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
content: '';
}
&-checked::after {
content: '✔️';
}
&-indeterminate::after {
content: '';
}
}
// ====================== RTL ======================
&-rtl {
direction: rtl;
.@{select-prefix}-menu {
flex: none;
margin: 0;
padding: 0;
list-style: none;
border-left: none;
border-right: 1px solid blue;
&:first-child {
border-right: 0;
}
}
}
}