#Full Height Gif Picker (also supports

1 messages · Page 1 of 1 (latest)

cold whale
#

how to do it not through the GIF panel, but for example through the Emoji panel, since for example, you can’t publish a GIF on some servers

crystal cypress
#

i dont think its possible since its the same panel

cold whale
#

For example, the reaction panel does not increase and I guess why, but is it possible to make it also increased for this CSS?

crystal cypress
#

since its a flyout

brisk idol
#

I remember I found css from another snippet (I think it was FullscreenEmoji or smth), and I adapted it to do the similar thing

#

And for me it's just:

.layerContainer__59d0d .positionLayer__08434 {
    height: 85vh !important;
}
#

Height here set just for my personal preference

prime basalt
#

New discord update broke it, here's a fix:

/* Full sized gif picker */
[class*='_59d0d7075b521375-layerContainer'] [class*='_084343c4f11eaaab-positionLayer'] {
    height: 90% !important;
    [class*='drawerSizingWrapper__'] {
        top: 3.5em !important;
        height: calc(100% - 9em)
    }
}```
You can change the height % in the 3rd line to whatever size you want
sturdy swift
#

another update broke it @prime basalt

sturdy swift
#

unless im tripping and i broke the code some how without touching it

cold whale
sturdy swift
#

jesus christ discord just dosnt know how to maintain a fucken app i swear

#

like id love to use the 2020 discord theme to bring it back to what was in the glory days

#

but i like the new features like the pfp stuff and banners

#

that theme removes those things

#

woah

#

wait

#

its working again

#

i used another one

#
/* Full sized gif picker */
[class*='layerContainer_'] [class*='positionLayer__'] {
    height: 100% !important;
    [class*='drawerSizingWrapper__'] {
        top: 3.5em !important;
        height: calc(100% - 9em)
    }
}
#

wait no

#

im dumb

sturdy swift
#

but it is working

#

just use the orignal code

sturdy swift
#

oh

#

changing the size to what you want ruins it

cold whale
#

It's weird. For some reason, if I use the code by downloading it from GitHub, it doesn't work.

sturdy swift
#

???

#

tf

#

im messing with the css rn

#

and im getting interesting results

#

ok im getting it to work but you gotta fanagle it ALOT

cold whale
#

For some reason, this only works for me if I upload the code to quickedit.

sturdy swift
#

yea im using it on the quick css

#

personally

#

heres my code so far

#
/* Full sized gif picker */
[class*='layerContainer_'] [class*='positionLayer__'] {
    height: 90% !important;
    [class*='drawerSizingWrapper__'] {
        top: 13.5em !important;
        height: calc(100% - 12.1em)
    }
}

#

changing the

"top: xx.xem" changes the high of the whole window

#

and the 12.1em cuts off the bottom

cold whale
#

Everything works fine for now, if use quickedit

sturdy swift
#

trying to customize it is not as easy tho

#

you had the correct grammer but edited it to make it worse?

#

maybe swap the word use to using

#

then itll make sense

#

alr its fixed on my end

#

to the way i want

#
/* Full sized gif picker */
[class*='layerContainer_'] [class*='positionLayer__'] {
    height: 90% !important;
    [class*='drawerSizingWrapper__'] {
        top: 12em !important;
        height: calc(100% - 11.5em)
    }
}
#

in case anyone else wants it