This commit is contained in:
Mirco Wittrien 2020-02-24 14:40:01 +01:00
parent 252b36e574
commit fa366b1f70
2 changed files with 1487 additions and 1146 deletions

View File

@ -106,6 +106,7 @@
9. TERMACCEPTMODAL
10. DOWNLOADAPPMODAL
11. GUILDBOOSTMODAL
12. NEWUSERMODAL
13. POPOUTS
1. CONTEXTMENU
2. USERPOPOUT
@ -3245,6 +3246,56 @@ body:before {
color: rgb(var(--fontwhite1));
}
/* ---- 12.12. NEWUSERMODAL ---- */
#app-mount .modalNewUser-3IRw8L { /* modal container */
background-color: transparent;
box-shadow: 0 0 0 1px rgba(var(--vtransparencycolor), 0.3), 0 2px 10px 0 rgba(var(--vtransparencycolor), 0.3);
border-radius: 5px;
overflow: hidden;
min-height: unset;
}
.modalNewUser-3IRw8L:after,
.modalNewUser-3IRw8L:before {
content: "";
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
width: unset;
height: unset;
pointer-events: none;
z-index: -1;
}
.modalNewUser-3IRw8L:after {
background-color: rgba(var(--vtransparencycolor), calc(var(--vtransparencyalpha) + 0.2));
}
.modalNewUser-3IRw8L:before {
background: var(--vpopout) center/var(--vpopoutsize);
filter: blur(var(--vpopoutblur));
background-attachment: fixed;
}
.modalNewUser-3IRw8L > .steps-370EKx {
background: transparent;
height: unset;
}
.modalNewUser-3IRw8L > .steps-370EKx > li {
position: unset;
}
.modalNewUser-3IRw8L > .steps-370EKx .step1-28s17G {
background: none;
}
.form-236Xmo .formActions-1-Snm- {
background-color: rgba(var(--vtransparencycolor), 0.2);
border: none;
}
.form-236Xmo .btnDefault-3gHhPM {
background: transparent;
border-color: transparent;
}
/* ~~~~ 13. POPOUTS ~~~~ */

File diff suppressed because one or more lines are too long