Add background transparency and animation effects

to dashboard and popup
This commit is contained in:
SethBurkart123
2023-11-14 22:21:54 +11:00
parent ef4ca5994f
commit c745e994f7
3 changed files with 28 additions and 7 deletions
+14 -3
View File
@@ -21,6 +21,8 @@ body, html {
* { * {
font-family: Rubik, sans-serif !important; font-family: Rubik, sans-serif !important;
--theme-fg-parts: white; --theme-fg-parts: white;
transition: background-color 200ms ease-in-out;
} }
@media (min-width: 900px) { @media (min-width: 900px) {
#title > span { #title > span {
@@ -43,6 +45,9 @@ body, html {
color: var(--text-color) !important; color: var(--text-color) !important;
overflow: hidden; overflow: hidden;
} }
.LegacyModuleBody__LegacyModule___20YE2 {
background: transparent;
}
.addedButton { .addedButton {
position: absolute !important; position: absolute !important;
right: 105px; right: 105px;
@@ -59,13 +64,18 @@ body, html {
} }
#main > .dashboard { #main > .dashboard {
background: unset; background: unset;
}
#main > .dashboard > section { // TODO: Make this only opacity 0 when the animation will be played to stop a flash of the original
> section {
border-radius: 1rem !important; border-radius: 1rem !important;
//opacity: 0;
} }
#main > .dashboard > .dashlet {
> .dashlet {
background: var(--background-primary); background: var(--background-primary);
border-radius: 1rem; border-radius: 1rem;
//opacity: 0;
}
} }
.dashlet-notes > ul { .dashlet-notes > ul {
background: var(--background-primary); background: var(--background-primary);
@@ -785,6 +795,7 @@ div > ol:has(.uiFileHandlerWrapper) {
color: var(--text-primary); color: var(--text-primary);
box-shadow: unset; box-shadow: unset;
-webkit-box-shadow: unset; -webkit-box-shadow: unset;
border-radius: 1rem;
} }
.ais-description { .ais-description {
color: var(--text-primary) !important; color: var(--text-primary) !important;
+1
View File
@@ -19,6 +19,7 @@
top: 80px; top: 80px;
height: 590px; height: 590px;
z-index: 20; z-index: 20;
transition-duration: 100ms;
} }
.imageBackground { .imageBackground {
+9
View File
@@ -10,6 +10,8 @@ html.transparencyEffects:not(.dark) {
/* Blurs */ /* Blurs */
.message.addMessage,
.thread,
#title, #title,
.LabelList__selected___3Egk7, .LabelList__selected___3Egk7,
.legacy-root button, .legacy-root a, .legacy-root button, .legacy-root a,
@@ -34,3 +36,10 @@ html.transparencyEffects:not(.dark) {
.border { .border {
backdrop-filter: blur(8px); backdrop-filter: blur(8px);
} }
#main > .dashboard {
section,
.dashlet {
backdrop-filter: blur(8px);
}
}