Make stuff work better in ShitKit (aka Safari)

This commit is contained in:
daudix
2024-07-15 06:30:20 +03:00
parent 70d7a0ee0e
commit 462e248be9
5 changed files with 27 additions and 7 deletions

View File

@ -45,8 +45,8 @@ figcaption {
blockquote {
margin: 0;
border-inline-start: 0.25rem solid var(--primary-color);
border-radius: 0.25rem;
border-inline-start: 0.25rem solid var(--primary-color);
padding: 0 0.75rem;
color: var(--fg-muted-5);
}
@ -100,17 +100,37 @@ u {
}
progress {
-webkit-appearance: none;
appearance: none;
box-shadow: var(--edge-highlight);
border: none;
border-radius: 999px;
background-color: var(--fg-muted-1);
width: 100%;
height: 0.5rem;
color: var(--primary-color);
&::-webkit-progress-bar,
&:indeterminate {
background-color: var(--fg-muted-1);
}
&:indeterminate::-moz-progress-bar {
background-color: transparent;
}
&::-webkit-progress-bar {
background-color: transparent;
}
&::-moz-progress-bar {
border-radius: 999px;
background-color: var(--primary-color);
}
&::-webkit-progress-value {
border-radius: 999px;
background-color: var(--primary-color);
}
}
kbd {