Vanessa 2024-11-14 12:18:58 +08:00
parent 1ac5d5a235
commit 902ee810c9
4 changed files with 18 additions and 10 deletions

View file

@ -119,12 +119,20 @@
blockquote,
.bq {
padding-left: calc(0.25em + 4px);
&:before {
content: '';
background-color: var(--b3-theme-surface-lighter);
width: .25em;
border-radius: var(--b3-border-radius);
position: absolute;
left: 2px;
top: 6px;
bottom: 6px;
}
padding-left: calc(0.25em + 6px);
color: var(--b3-theme-on-surface);
box-shadow: .25em 0 0 0 var(--b3-theme-surface-lighter) inset;
background-color: var(--b3-bq-background);
border-top-left-radius: 0;
border-bottom-left-radius: 0;
display: flex;
flex-direction: column;
}

View file

@ -347,15 +347,15 @@
margin: 34px 16px 0 24px;
position: relative;
font-size: 16px;
border-radius: var(--b3-border-radius);
font-family: var(--b3-font-family-protyle);
padding-left: 2px;
&:hover .protyle-title__icon {
opacity: 1;
}
&[custom-riff-decks] {
box-shadow: 3px 0 0 -1px var(--b3-protyle-inline-mark-background) inset;
box-shadow: 2px 0 0 0 var(--b3-protyle-inline-mark-background) inset;
}
&__icon {
@ -389,7 +389,7 @@
font-size: 2em;
font-weight: bold;
line-height: 1.625;
padding: 0 4px;
padding: 0 4px 0 2px;
white-space: break-spaces;
&:empty:after {

View file

@ -22,7 +22,7 @@
position: relative;
&[custom-riff-decks] {
box-shadow: 3px 0 0 -1px var(--b3-protyle-inline-mark-background) inset;
box-shadow: 2px 0 0 0 var(--b3-protyle-inline-mark-background) inset;
}
[spellcheck] {

View file

@ -10,10 +10,10 @@
@keyframes addCard {
0% {
box-shadow: 100vw 0px 0 -1px var(--b3-protyle-inline-mark-background) inset;
box-shadow: 100vw 0 0 0 var(--b3-protyle-inline-mark-background) inset;
}
100% {
box-shadow: 3px 0 0 -1px var(--b3-protyle-inline-mark-background) inset;
box-shadow: 2px 0 0 0 var(--b3-protyle-inline-mark-background) inset;
}
}