2021-06-19 20:00:30 +01:00
|
|
|
:disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2021-06-18 15:35:35 +01:00
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 3px;
|
|
|
|
height: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
background: var(--scrollbar-track);
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
background: var(--scrollbar-thumb);
|
|
|
|
}
|
|
|
|
|
2021-08-02 17:25:39 +02:00
|
|
|
::-webkit-scrollbar-corner {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
2021-06-18 15:35:35 +01:00
|
|
|
::selection {
|
2021-08-19 14:50:00 +01:00
|
|
|
background: var(--foreground);
|
|
|
|
color: var(--background);
|
2021-06-18 15:35:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
::-moz-selection {
|
2021-08-19 14:50:00 +01:00
|
|
|
background: var(--foreground);
|
|
|
|
color: var(--background);
|
2021-06-18 15:35:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-selection {
|
2021-08-19 14:50:00 +01:00
|
|
|
background: var(--foreground);
|
|
|
|
color: var(--background);
|
2021-06-18 15:35:35 +01: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 15:37:19 +01:00
|
|
|
|
|
|
|
foreignObject > svg {
|
|
|
|
vertical-align: top !important;
|
|
|
|
}
|