iframe scrollbar

This commit is contained in:
Yuri Kuznetsov
2025-01-06 10:19:33 +02:00
parent cd61a30298
commit ef99a0753f
3 changed files with 30 additions and 26 deletions
+1 -26
View File
@@ -3813,32 +3813,7 @@ a.close {
background-color: var(--white-color);
}
@supports not selector(::-webkit-scrollbar) {
.dashlet > .dashlet-body,
.list-kanban-container {
scrollbar-width: thin;
}
* {
scrollbar-width: auto;
scrollbar-color: var(--scroll-thumb-bg) var(--scroll-bg);
}
}
*::-webkit-scrollbar {
height: var(--scroll-width);
width: var(--scroll-width);
}
*::-webkit-scrollbar-track {
background: var(--scroll-bg);
}
*::-webkit-scrollbar-thumb {
background-color: var(--scroll-thumb-bg);
border-radius: 0;
border: var(--scroll-border-width) solid var(--scroll-bg);
}
@import "elements/scrollbar.less";
body:has(.modal-backdrop) {
.collapsed-modal-bar {
@@ -0,0 +1,26 @@
@supports not selector(::-webkit-scrollbar) {
.dashlet > .dashlet-body,
.list-kanban-container {
scrollbar-width: thin;
}
* {
scrollbar-width: auto;
scrollbar-color: var(--scroll-thumb-bg) var(--scroll-bg);
}
}
*::-webkit-scrollbar {
height: var(--scroll-width);
width: var(--scroll-width);
}
*::-webkit-scrollbar-track {
background: var(--scroll-bg);
}
*::-webkit-scrollbar-thumb {
background-color: var(--scroll-thumb-bg);
border-radius: 0;
border: var(--scroll-border-width) solid var(--scroll-bg);
}
+3
View File
@@ -1,3 +1,4 @@
@import "../elements/scrollbar.less";
body, table {
font-size: var(--font-size-base);
@@ -89,3 +90,5 @@ pre {
border-radius: 0;
}
}