#Shiggy Loading...
1 messages ยท Page 1 of 1 (latest)
this interest me 
it's a snippet that makes it blurred
I got good news and bad news chief. Good news, shiggy has returned. Bad news, this tanks performance (at least on my end). I probably just got to try have a more specific selector unless someone wants to correct me otherwise.
I've been looking for that do you know where it is?
its as specific as possible, cant do anything about that
else you have to use the hash and get rid of the :has()
i mean this one.. sorry dont know how it called.
lemme get it from my stash
Thanks
/* Blurred Background while loading */
[class*="container_"][class*="fixClipping_"] {
background: 0 0;
backdrop-filter: blur(5px);
}
If it isn't the blurred background can you describe what you are talking about?
Good thanks
Yooo*
Stupid autocorrect
ill get the class rq
@mint cave updated it to use exact classes, wanna give it a try?
lol this snippet is revived once again
Iโm still using the original snippet lmao
Yup, that did the job, thanks. Not sure exactly why, but lately, certain non-exact class selectors seem to lag the client a lot.
probably the has selector did it, i tried to make it specific, bit didn't work ig
I heard :is sometimes delivers better results
:is does an entirely different job
.class1 .class2,
.class1 .class3 {
display: block
``` can be shortened to
```css
.class1 :is(.class2, .class3) {
display: block
}
:has and :is serve entirely different purposes
I'm sure this was posted before
It was
just redone i guess
god bless u @dull dirge i NEED this one after
@import url(https://raw.githubusercontent.com/Blisterexe/shiggy-loader/main/main.css) broke
your welcome
hi @dull dirge is there any chance you can change the loading avatar to something else?
the link is literally there
change the content url to something else 
I tryed with multiple links and tryed some changes and in the end even asked blackbox ai but it didnt help
like what links?
the full link.
Tung Tungtung Tungtungtung Sahur Tungtungtungsahur Tungtungsahur GIF - Tenor GIF Keyboard - Bring Personality To Your Conversations | Say more with Tenor
its massive 
you need to change the scaling of the image to fit it nicely
how do i do that and where could i upload it so it can access it? i was thinking of doing it localy like it accesses from my images folder
what size do you recommend?
if you want something that you dont need to change the scaling for, use the same resolution as the shiggy gif
i resized it but it still shows nothing
.content_a2f514 {
display: flex;
flex-direction: column;
.spinner_a2f514 { display: none }
&:before {
display: block;
height: 128px;
position: relative;
content: url('C:/Users/felix_szoig9q/Pictures/tungresize.gif');
image-rendering: pixelated;
align-content: center;
scale: 3.125;
margin-bottom: 96px;
}
}
what did i do wrong? im pretty sure its right
i dont think paths through your system would work
have to be a url
is there a snippet to shiggify the smaller discord client loading window as well
probably, but i cant see the devtools for it
shiggy link gives a 404 now ๐
yeah, because its gone from the gh repo
shame
probably just using the server gif will work but i haven't tested that yet
no longer works :(
can you read 3 messages up
Used the Shiggy gif that the settings menu uses:
.content_a2f514 {
display: flex;
flex-direction: column;
> .spinner_a2f514 { display: none }
&:before {
display: block;
scale: 0.5;
position: relative;
content: url(https://media.discordapp.net/stickers/1039992459209490513.png);
image-rendering: pixelated;
align-content: center;
}
}```
link dead
Any way to make it work with Viggy? I tried replacing the url with https://media.discordapp.net/stickers/1217112512374505613.png?size=320 but it kind of ends up filling the whole screen
Ok, managed to fix it with class updater and work with Viggy like this:
.a2f5142ba8328dfd-content {
display: flex;
flex-direction: column;
> .a2f5142ba8328dfd-spinner { display: none }
&:before {
display: block;
height: 160px;
position: relative;
content: url(https://media.discordapp.net/stickers/1217112512374505613.png?size=320);
image-rendering: pixelated;
align-content: center;
scale: 1;
margin-bottom: 96px;
}
}```
Has anyone been able to fix the blur after the Discord update?
/* Blurred Background while loading */
.a2f5142ba8328dfd-container.efbae7425593290b-fixClipping {
background: 0 0 !important;
backdrop-filter: blur(5px) !important;
}
update: now it's broken again, no idea how to fix it ngl