#Server selector from tabs v2
1 messages · Page 1 of 1 (latest)
well it is very hacky so i thought it may break
but idk it works for me with themes and without
yeah, surprised you got it working in general even if it doesnt work for everyone lol
oh its probably because of your online indicator plugin
i use :nth-element() which breaks with plugins that add stuff to the sidebar
ok i replaced :nth-element() with aria-label and it should work with plugins but not other languages
yup it works now
yay
i wonder if you could have it hide till you hover over it
i tried but then resizing is funky
you can add
.wrapper-1_HaEi.guilds-2JjMmN {
opacity: 0;
}
.wrapper-1_HaEi.guilds-2JjMmN:hover {
opacity: 1;
}
oh well actually if its instant it sorta works
i gave the opaicity a 300ms transition time and works fine
.wrapper-1_HaEi.guilds-2JjMmN {
opacity: 0;
transition: opacity linear 150ms;
}
.wrapper-1_HaEi.guilds-2JjMmN:hover {
opacity: 1;
transition: opacity linear 150ms;
}
I just added it in the transition tag lol
.wrapper-1_HaEi.guilds-2JjMmN {
transition: opacity 300ms linear;
opacity: 0;
}
.wrapper-1_HaEi.guilds-2JjMmN:hover {
transition: opacity 300ms cubic-bezier(1,.05,.44,-0.26);
opacity: 1;
}
this works best
i'll add it
ight
as a wise vending machine said,
go to about:config and set layout.css.has-selector.enabled to true
then you can use it on firefox
does not work i tried
Uhh mines worse
not at my pc rn but if i had to guess probably because of read all plugin
weird
it happened to me on firefox
just removed the snippet and t this happened
reload
when you resize it directly changes the element, only fix is reloading
it's ok
ye i was kind of joking
@rigid tree is there a way to make it so it collapses into an icon in the top left corner?
probably not, but i can try later
ok sick thanks
oh nvm I didnt realize it disappears on when you dont hover over it
does it look like this for you?
yes
the only thing I wish you could do was move it anywhere
.wrapper-1_HaEi.guilds-2JjMmN {
left: 25%;
}
that just moves it to the left a bit im talking about being able to drag it anywhere on my discord
draggable is not possible, but you can change the position using left and top
Couldnt use the same fuctionality as how you drag servers into folders?
that functionality is from the discord client, i didn't make that
ahh thats unfortunate
Can you fix this?
#popout_25 {
left:56px !important;
}
works(?)
na
doesnt look like it did anything
ill make a v2 to this snippet a bit later