fix(ui): make order list style more compatiable

This commit is contained in:
charlie
2023-04-18 14:20:16 +08:00
parent 91da91ee3f
commit 339360a3dc

View File

@@ -116,6 +116,7 @@
position: relative;
top: 4px;
}
a {
color: var(--ls-primary-text-color);
@@ -536,19 +537,28 @@
justify-content: end;
}
&:not(.typed-list) {
.bullet {
border-radius: 50%;
width: 6px;
height: 6px;
background-color: var(--ls-block-bullet-color, #394b59);
transition: transform 0.2s;
}
.bullet {
border-radius: 50%;
width: 6px;
height: 6px;
background-color: var(--ls-block-bullet-color, #394b59);
transition: transform 0.2s;
}
&:not(.typed-list) {
&.bullet-closed {
background-color: var(--ls-block-bullet-border-color, #ced9e0);
}
}
&.typed-list:not(:focus-within) {
.bullet {
background-color: unset;
height: unset;
width: unset;
box-shadow: none;
}
}
}
.bullet-link-wrap {