Merge pull request #2263 from pietervdvn/feature/disable-questions

Feature/disable questions
This commit is contained in:
Pieter Vander Vennet 2024-11-25 00:05:42 +00:00 committed by GitHub
commit 4f05f0bc05
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
44 changed files with 882 additions and 317 deletions

View file

@ -9,7 +9,7 @@
export let open = new UIEventSource(false)
export let dotsSize = `w-6 h-6`
export let dotsPosition = `top-0 right-0`
export let hideBackground = false
export let hideBackground: boolean = false
let menuPosition = ``
if (dotsPosition.indexOf("left-0") >= 0) {
menuPosition = "left-0"
@ -50,7 +50,7 @@
}
:global(.dots-menu > path) {
fill: var(--interactive-background);
fill: var(--button-background-hover);
transition: fill 350ms linear;
cursor: pointer;
}
@ -73,9 +73,9 @@
background-color: white;
}
.transition-background {
transition: background-color 150ms linear;
}
.transition-background {
transition: background-color 150ms linear;
}
.transition-background.collapsed {
background-color: #00000000;