2022-11-15 16:39:25 +00:00
|
|
|
* {
|
2022-11-24 03:42:03 +00:00
|
|
|
scrollbar-color: #8885 var(--c-border);
|
2022-11-15 16:39:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
2022-11-15 17:14:10 +00:00
|
|
|
width: 10px;
|
2022-11-15 16:39:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar:horizontal {
|
2022-11-15 17:14:10 +00:00
|
|
|
height: 10px;
|
2022-11-15 16:39:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
2022-11-23 02:16:31 +00:00
|
|
|
background: var(--c-border);
|
2022-11-15 17:14:10 +00:00
|
|
|
border-radius: 1px;
|
2022-11-15 16:39:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
2022-11-24 03:42:03 +00:00
|
|
|
background: #8885;
|
2022-11-15 17:14:10 +00:00
|
|
|
border-radius: 1px;
|
2022-11-15 16:39:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
2022-11-24 03:42:03 +00:00
|
|
|
background: #8886;
|
2022-11-15 17:14:10 +00:00
|
|
|
}
|
2022-11-20 21:30:21 +00:00
|
|
|
|
2022-11-25 13:21:02 +00:00
|
|
|
::-moz-selection {
|
|
|
|
background: var(--c-bg-selection);
|
|
|
|
}
|
|
|
|
|
|
|
|
::selection {
|
|
|
|
background: var(--c-bg-selection);
|
|
|
|
}
|
|
|
|
|
2022-11-20 21:30:21 +00:00
|
|
|
/* Force vertical scrollbar to be always visible to avoid layout shift while loading the content */
|
|
|
|
html {
|
|
|
|
overflow-y: scroll;
|
2022-11-21 07:14:07 +00:00
|
|
|
}
|
|
|
|
|
2022-11-25 13:21:02 +00:00
|
|
|
.zen .zen-hide {
|
|
|
|
--at-apply: op0 hover:op100 transition duration-600;
|
|
|
|
}
|
|
|
|
|
2022-11-21 07:14:07 +00:00
|
|
|
.custom-emoji {
|
|
|
|
display: inline-block;
|
2022-11-23 02:16:31 +00:00
|
|
|
max-height: 1.2em;
|
|
|
|
max-width: 1.2em;
|
2022-11-21 07:14:07 +00:00
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2022-11-25 13:21:02 +00:00
|
|
|
.content-rich {
|
2022-11-21 07:14:07 +00:00
|
|
|
a {
|
2022-11-23 14:21:18 +00:00
|
|
|
--at-apply: text-primary hover:underline hover:text-primary-active;
|
2022-11-21 07:14:07 +00:00
|
|
|
.invisible {
|
|
|
|
--at-apply: hidden;
|
|
|
|
}
|
|
|
|
.ellipsis {
|
|
|
|
--at-apply: truncate overflow-hidden ws-nowrap;
|
2022-11-25 17:33:40 +00:00
|
|
|
&::after {
|
|
|
|
content: '…';
|
|
|
|
}
|
2022-11-21 07:14:07 +00:00
|
|
|
}
|
|
|
|
}
|
2022-11-25 13:21:02 +00:00
|
|
|
b, strong {
|
2022-11-21 07:14:07 +00:00
|
|
|
--at-apply: font-bold;
|
|
|
|
}
|
|
|
|
p {
|
|
|
|
--at-apply: my-2;
|
|
|
|
}
|
2022-11-24 03:42:03 +00:00
|
|
|
|
|
|
|
.code-block {
|
2022-11-27 06:16:02 +00:00
|
|
|
--at-apply: bg-code text-0.9rem p3 mt-2 rounded overflow-auto leading-1.6em;
|
2022-11-24 03:42:03 +00:00
|
|
|
|
|
|
|
.shiki {
|
|
|
|
background: transparent !important;
|
|
|
|
}
|
|
|
|
}
|
2022-11-21 07:14:07 +00:00
|
|
|
}
|
2022-11-24 04:21:30 +00:00
|
|
|
|
2022-11-25 13:21:02 +00:00
|
|
|
.content-editor {
|
|
|
|
--at-apply: outline-none;
|
|
|
|
|
|
|
|
pre {
|
|
|
|
--at-apply: font-mono bg-code rounded px3 py2;
|
|
|
|
|
|
|
|
code {
|
|
|
|
--at-apply: bg-transparent text-0.8rem p0;
|
|
|
|
}
|
|
|
|
}
|
2022-11-24 04:21:30 +00:00
|
|
|
}
|
2022-11-27 05:02:19 +00:00
|
|
|
|
|
|
|
.skeleton-loading-bg {
|
|
|
|
background: linear-gradient(90deg,rgba(190,190,190,.2) 25%,rgba(129,129,129,.24) 37%,rgba(190,190,190,.2) 63%);
|
|
|
|
background-size: 400% 100%;
|
|
|
|
animation: skeleton-loading 1.4s ease infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes skeleton-loading {
|
|
|
|
0% {
|
|
|
|
background-position: 100% 50%
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
background-position: 0 50%
|
|
|
|
}
|
|
|
|
}
|