Update Glide

This commit is contained in:
thororen1234 2024-08-14 16:04:46 -04:00
parent 3e714e0c7a
commit 62c08441bc

View file

@ -291,7 +291,7 @@ function getCSS(fontName) {
` : ""}
/*Privacy blur*/
${Settings.plugins.Glide.privacyBlur ? `
.header_ec86aa,
.header_f9f2ca,
.container_ee69e0,
.title_a7d72e,
.layout_f9647d,
@ -300,7 +300,7 @@ function getCSS(fontName) {
transition: filter 0.2s ease-in-out;
}
body:not(:hover) .header_ec86aa,
body:not(:hover) .header_f9f2ca,
body:not(:hover) .container_ee69e0,
body:not(:hover) .title_a7d72e,
body:not(:hover) [aria-label="Members"],
@ -512,8 +512,16 @@ function getCSS(fontName) {
{
color: var(--mutedtext) !important
}
${settings.store.pastelStatuses ? `
.menu_d90b3d
{
background: var(--accent) !important;
}
.messageGroupWrapper_ac90a2, .header_ac90a2
{
background-color: var(--primary);
}
${settings.store.pastelStatuses ?
`
/*Pastel statuses*/
rect[fill='#23a55a'], svg[fill='#23a55a'] {
fill: #80c968 !important;
@ -612,7 +620,7 @@ function getCSS(fontName) {
}
/*No more useless spotify activity header*/
.headerContainer_d5089b
.headerContainer_c1d9fd
{
display: none;
}
@ -634,7 +642,7 @@ function getCSS(fontName) {
}
/*Hide icon on file uploading status*/
.icon_a4623d
.icon_b52bef
{
display: none;
}
@ -655,12 +663,12 @@ function getCSS(fontName) {
padding: 6px 8px !important;
}
/*Hide the icon that displays what platform the user is listening with on spotify status*/
.platformIcon_d5089b
.platformIcon_c1d9fd
{
display: none !important;
}
/*hide the album name on spotify statuses (who cares)*/
[class="state_d5089b ellipsis_d5089b textRow_d5089b"]
[class="state_c1d9fd ellipsis_c1d9fd textRow_c1d9fd"]
{
display: none;
}
@ -782,5 +790,3 @@ export default definePlugin({
// preview thing, kinda low effort but eh
settingsAboutComponent: () => <img src="https://files.catbox.moe/j8y2gt.webp" width="568px" border-radius="30px" ></img>
});