增加补充相关资料和小程序源码

This commit is contained in:
Wang Beihong
2026-02-07 23:14:57 +08:00
parent a0febb1e5b
commit a9be1dd6b9
1255 changed files with 476253 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
.fui-grid__item {
height: 100%;
display: flex;
box-sizing: border-box;
flex-shrink: 0;
}
.fui-grid__item-box {
display: flex;
width: 100%;
position: relative;
flex: 1;
flex-direction: column;
box-sizing: border-box;
}
.fui-grid__item-border {
position: relative;
z-index: 0;
border-bottom: 0;
border-right: 0;
}
.fui-grid__item-border::before {
content: " ";
position: absolute;
right: 0;
top: 0;
width: 1px;
bottom: 0;
border-right: 1px solid var(--fui-color-border, #EEEEEE);
-webkit-transform-origin: 100% 0;
transform-origin: 100% 0;
-webkit-transform: scaleX(0.5);
transform: scaleX(0.5);
}
.fui-grid__item-border::after {
content: " ";
position: absolute;
left: 0;
bottom: 0;
right: 0;
height: 1px;
border-bottom: 1px solid var(--fui-color-border, #EEEEEE);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
-webkit-transform: scaleY(0.5);
transform: scaleY(0.5);
}
.fui-highlight:active {
background-color: var(--fui-color-hover, rgba(0, 0, 0, 0.2)) !important;
}
.fui-grid__item-hidden {
opacity: 0;
visibility: hidden;
}