部分优化

This commit is contained in:
X1627315083
2025-09-08 14:50:59 +08:00
parent 4dc5e26d92
commit 360bfd01ac
51 changed files with 854 additions and 354 deletions

View File

@@ -44,6 +44,11 @@ select {
border-radius: 4px;
/* 设置圆角半径 */
}
select > option {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
select:focus-visible {
border: 0.2rem solid #c4c4c4 !important;
}
@@ -270,6 +275,20 @@ li {
color: #fff;
background-color: #000;
}
.gallery_btn.forbidden {
opacity: 0.7;
}
.gallery_btn.forbidden:hover {
background-color: #000;
color: #fff;
}
.gallery_btn.forbiddenWhite {
opacity: 0.7;
}
.gallery_btn.forbiddenWhite:hover {
background-color: #fff;
color: #000;
}
.gallery_btn.active {
background-color: #fff;
color: #000;
@@ -2297,6 +2316,7 @@ textarea:focus {
border-radius: 4px;
height: 20rem;
top: 0rem;
flex: 1;
border: 1px solid #dcdfe6;
}
.generage_btn_box {

View File

@@ -42,6 +42,11 @@ select{
height: 2.5rem;
border: 0.2rem solid #c4c4c4 !important;
border-radius: 4px; /* 设置圆角半径 */
> option {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
}
select:focus-visible{
border: 0.2rem solid #c4c4c4 !important;
@@ -247,6 +252,7 @@ input:focus{
border-radius: 1.6rem;
padding: 0 1.7rem;
}
&.btnSamil{
padding: 0rem 2rem;
line-height: 4rem;
@@ -271,6 +277,20 @@ input:focus{
background-color: #000;
}
}
&.forbidden{
opacity: .7;
}
&.forbidden:hover{
background-color: #000;
color: #fff;
}
&.forbiddenWhite{
opacity: .7;
}
&.forbiddenWhite:hover{
background-color: #fff;
color: #000;
}
&.active{
background-color: #fff;
color: #000;
@@ -2179,6 +2199,7 @@ textarea:focus{
border-radius: 4px;
height: 20rem;
top: 0rem;
flex: 1;
border: 1px solid #dcdfe6;
}