This commit is contained in:
pengxiaolong
2025-05-13 19:39:53 +08:00
parent 37da6765b8
commit c006a8e63d
1232 changed files with 96963 additions and 883 deletions

View File

@@ -0,0 +1,6 @@
.toolbar-item-container {
&-dialog {
background: #fff;
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}
}

View File

@@ -0,0 +1,7 @@
.toolbar-item-container-h5 {
&-dialog {
position: static !important;
width: 100%;
box-shadow: none;
}
}

View File

@@ -0,0 +1,5 @@
@import "../../../../../assets/styles/common";
@import "./color";
@import "./web";
@import "./h5";
@import "./uni";

View File

@@ -0,0 +1,36 @@
.toolbar-item-container-uni {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: static;
&-icon {
background: #fff;
border-radius: 15px;
width: 60px;
height: 60px;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
}
&-title {
font-size: 14px;
color: #8F959D;
}
&-dialog{
position: absolute !important;
background: transparent;
left: -10px;
bottom: -5px;
.toolbar-bottom-popup{
position: sticky;
}
}
}

View File

@@ -0,0 +1,24 @@
.toolbar-item-container {
position: relative;
&-icon {
padding: 8px;
cursor: pointer;
-webkit-tap-highlight-color: transparent;
}
&-dialog {
z-index: 5;
position: absolute;
background: #fff;
box-shadow: 0 2px 4px -3px rgba(32, 77, 141, 0.03), 0 6px 10px 1px rgba(32, 77, 141, 0.06), 0 3px 14px 2px rgba(32, 77, 141, 0.05);
width: fit-content;
height: fit-content;
bottom: 35px;
}
&-dialog-dark {
background: #22262E;
box-shadow: 0 8px 40px 0 rgba(23, 25, 31, 0.6), 0 4px 12px 0 rgba(23, 25, 31, 0.8);
}
}