2021-06-19 15:00:30 -04:00
|
|
|
:disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2021-06-18 10:35:35 -04:00
|
|
|
::-webkit-scrollbar {
|
2021-09-03 05:17:42 -04:00
|
|
|
width: var(--scrollbar-thickness);
|
|
|
|
height: var(--scrollbar-thickness);
|
2021-06-18 10:35:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
background: var(--scrollbar-track);
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
2021-12-30 13:15:31 -05:00
|
|
|
min-width: 30px;
|
2022-01-04 18:11:58 -05:00
|
|
|
min-height: 30px;
|
2021-12-30 10:33:13 -05:00
|
|
|
|
|
|
|
background-clip: content-box;
|
2021-06-18 10:35:35 -04:00
|
|
|
background: var(--scrollbar-thumb);
|
|
|
|
}
|
|
|
|
|
2021-12-30 13:15:31 -05:00
|
|
|
[data-scroll-offset] {
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
[data-scroll-offset="with-padding"],
|
|
|
|
[data-scroll-offset] .with-padding {
|
|
|
|
padding-top: var(--header-height);
|
|
|
|
}
|
|
|
|
|
|
|
|
[data-scroll-offset]::-webkit-scrollbar-thumb {
|
|
|
|
background-clip: content-box;
|
|
|
|
border-top: var(--header-height) solid transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
[data-avoids-navigation]::-webkit-scrollbar-thumb {
|
|
|
|
background-clip: content-box;
|
|
|
|
border-bottom: var(--effective-bottom-offset) solid transparent;
|
|
|
|
}
|
|
|
|
|
2021-08-02 11:25:39 -04:00
|
|
|
::-webkit-scrollbar-corner {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
2021-06-18 10:35:35 -04:00
|
|
|
::selection {
|
2021-08-19 09:50:00 -04:00
|
|
|
background: var(--foreground);
|
|
|
|
color: var(--background);
|
2021-06-18 10:35:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
::-moz-selection {
|
2021-08-19 09:50:00 -04:00
|
|
|
background: var(--foreground);
|
|
|
|
color: var(--background);
|
2021-06-18 10:35:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-selection {
|
2021-08-19 09:50:00 -04:00
|
|
|
background: var(--foreground);
|
|
|
|
color: var(--background);
|
2021-06-18 10:35:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
a,
|
|
|
|
a:link,
|
|
|
|
a:visited,
|
|
|
|
a:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
border: 0;
|
|
|
|
height: 1px;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
2021-08-03 10:37:19 -04:00
|
|
|
|
|
|
|
foreignObject > svg {
|
|
|
|
vertical-align: top !important;
|
|
|
|
}
|