stuff
This commit is contained in:
parent
72e19d0b12
commit
dfe61ea961
|
@ -169,6 +169,7 @@ html {
|
||||||
16. PHONE-/EMAILVALIDATION
|
16. PHONE-/EMAILVALIDATION
|
||||||
17. QUICKSELECTPOPOUT
|
17. QUICKSELECTPOPOUT
|
||||||
18. WARNINGPOPOUT
|
18. WARNINGPOPOUT
|
||||||
|
19. ACTIVETHREADLISTPOPOUT
|
||||||
15. GENERAL
|
15. GENERAL
|
||||||
1. TEXT
|
1. TEXT
|
||||||
2. BUTTONS
|
2. BUTTONS
|
||||||
|
@ -5555,6 +5556,38 @@ img[src="/assets/cef02719c12d8aaf38894c16dca7fbe6.svg"] { /* rolesettings addr
|
||||||
color: var(--header-primary);
|
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 ~~~~ */
|
/* ~~~~ 15. GENERAL ~~~~ */
|
||||||
|
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
--logo-primary: rgb(var(--accentcolor));
|
--logo-primary: rgb(var(--accentcolor));
|
||||||
}
|
}
|
||||||
.theme-dark, .theme-light {
|
.theme-dark, .theme-light {
|
||||||
|
--text-brand: rgb(var(--accentcolor));
|
||||||
--text-link: rgb(var(--linkcolor));
|
--text-link: rgb(var(--linkcolor));
|
||||||
--text-link-low-saturation: rgb(var(--linkcolor));
|
--text-link-low-saturation: rgb(var(--linkcolor));
|
||||||
--info-help-background: rgba(var(--linkcolor),.1);
|
--info-help-background: rgba(var(--linkcolor),.1);
|
||||||
|
|
Loading…
Reference in New Issue