This commit is contained in:
Mirco Wittrien 2021-05-20 21:32:46 +02:00
parent 84560d8c90
commit dba4d4f940
3 changed files with 16 additions and 6 deletions

View File

@ -3114,7 +3114,6 @@
},
"myId": "278543574059057154",
"myGuildId": "410787888507256842",
"userBannerAttribute": "data-has-banner",
"userIdAttribute": "data-user-id",
"userBackgroundsProperties": {
"background": "--user-background",

View File

@ -3105,7 +3105,7 @@ img[src="/assets/cef02719c12d8aaf38894c16dca7fbe6.svg"] { /* rolesettings addr
bottom: 0;
right: 0;
left: 0;
background: var(--user-background, var(--popout)) var(--popoutposition)/var(--popoutsize);
background: var(--user-background, var(--popout)) var(--user-popout-position, var(--popoutposition))/var(--popoutsize);
filter: blur(var(--popoutblur));
background-attachment: var(--user-background, fixed);
width: unset;
@ -4261,7 +4261,7 @@ img[src="/assets/cef02719c12d8aaf38894c16dca7fbe6.svg"] { /* rolesettings addr
bottom: 0;
right: 0;
left: 0;
background: var(--user-background, var(--popout)) var(--popoutposition)/var(--popoutsize);
background: var(--user-background, var(--popout)) var(--user-popout-position, var(--popoutposition))/var(--popoutsize);
filter: blur(var(--popoutblur));
background-attachment: var(--user-background, fixed);
width: unset;
@ -4300,7 +4300,7 @@ img[src="/assets/cef02719c12d8aaf38894c16dca7fbe6.svg"] { /* rolesettings addr
bottom: -6px;
right: -6px;
left: -6px;
background: var(--user-background, var(--popout)) var(--popoutposition)/var(--popoutsize);
background: var(--user-background, var(--popout)) var(--user-popout-position, var(--popoutposition))/var(--popoutsize);
filter: blur(var(--popoutblur));
background-attachment: var(--user-background, fixed);
border-radius: 50%;

View File

@ -2498,7 +2498,7 @@ img[src='/assets/58957d928db6fb9d4658eb882f33d7bc.svg'] {
#app-mount .topSectionNormal-2-vo2m {
--text-color: var(--user-background, var(--header-primary));
background: var(--user-background, var(--background-tertiary)) center/cover no-repeat;
background: var(--user-background, var(--background-tertiary)) var(--user-popout-position, var(--popoutposition))/cover no-repeat;
border-color: #fff;
color: #fff;
text-shadow: 1px 1px var(--background-tertiary);
@ -3352,8 +3352,19 @@ img[src='/assets/58957d928db6fb9d4658eb882f33d7bc.svg'] {
box-shadow: 0 2px 10px 0 rgba(0,0,0,.2), 0 0 0 1px rgba(var(--backgroundtertiary),.6);
color: #fff;
}
#app-mount .profileBanner-j34RzR {
background: var(--user-background, rgb(var(--accentcolor))) var(--user-popout-position, var(--popoutposition))/cover no-repeat !important;
background-attachment: var(--user-background, fixed);
height: 120px !important;
max-height: var(--user-background, 60px) !important;
}
#app-mount .avatarWrapper-1-5NA0 {
top: 76px !important;
margin-top: var(--user-background, -60px) !important;
}
#app-mount .headerNormal-T_seeN {
background: var(--user-background, var(--background-tertiary)) center/cover no-repeat;
background: var(--user-background, var(--background-tertiary)) var(--user-popout-position, var(--popoutposition))/cover no-repeat;
background-attachment: var(--user-background, fixed);
color: var(--text-color);
text-shadow: 1px 1px var(--background-tertiary);
}