This commit is contained in:
Mirco Wittrien 2021-11-09 17:21:22 +01:00
parent 72e19d0b12
commit dfe61ea961
2 changed files with 34 additions and 0 deletions

View File

@ -169,6 +169,7 @@ html {
16. PHONE-/EMAILVALIDATION
17. QUICKSELECTPOPOUT
18. WARNINGPOPOUT
19. ACTIVETHREADLISTPOPOUT
15. GENERAL
1. TEXT
2. BUTTONS
@ -5555,6 +5556,38 @@ img[src="/assets/cef02719c12d8aaf38894c16dca7fbe6.svg"] { /* rolesettings addr
color: var(--header-primary);
}
/* ---- 14.18. ACTIVETHREADLISTPOPOUT ---- */
#app-mount .popout-APcvZm { /* popout */
background-color: transparent;
border: none;
border-radius: 5px;
box-shadow: 0 0 0 1px rgba(var(--transparencycolor), .3), 0 2px 10px 0 rgba(var(--transparencycolor), .3);
position: relative;
}
.popout-APcvZm::before,
.popout-APcvZm::after {
content: "";
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
width: unset;
height: unset;
border-radius: 5px;
pointer-events: none;
z-index: -1;
}
.popout-APcvZm::before {
background: var(--popout) var(--popoutposition)/var(--popoutsize);
background-attachment: fixed;
}
.popout-APcvZm::after {
background-color: rgba(var(--transparencycolor), calc(var(--transparencyalpha) + 0.25));
backdrop-filter: blur(var(--popoutblur));
}
/* ~~~~ 15. GENERAL ~~~~ */

View File

@ -21,6 +21,7 @@
--logo-primary: rgb(var(--accentcolor));
}
.theme-dark, .theme-light {
--text-brand: rgb(var(--accentcolor));
--text-link: rgb(var(--linkcolor));
--text-link-low-saturation: rgb(var(--linkcolor));
--info-help-background: rgba(var(--linkcolor),.1);