mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-08-12 00:19:48 +00:00
38 lines
498 B
SCSS
38 lines
498 B
SCSS
.dropdown-menu {
|
|
width: var(--pngx-toast-max-width);
|
|
}
|
|
|
|
.chat-messages {
|
|
max-height: 350px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.dropdown-toggle::after {
|
|
display: none;
|
|
}
|
|
|
|
.dropdown-item {
|
|
white-space: initial;
|
|
}
|
|
|
|
@media screen and (max-width: 400px) {
|
|
:host ::ng-deep .dropdown-menu-end {
|
|
right: -3rem;
|
|
}
|
|
}
|
|
|
|
.blinking-cursor {
|
|
font-weight: bold;
|
|
font-size: 1.2em;
|
|
animation: blink 1s step-end infinite;
|
|
}
|
|
|
|
@keyframes blink {
|
|
from, to {
|
|
opacity: 0;
|
|
}
|
|
50% {
|
|
opacity: 1;
|
|
}
|
|
}
|