#**DUDETHISBARKICKSASS**
1 messages · Page 1 of 1 (latest)
cool to see this coming back
a lot of early themes had this sort of single bar design with the window controls integrated (and i added it to midnight as well)
It's the visual refresh one
fixed
fixed
just sending this so i recieve any updates to this css
ill mostly just update this for bug fixes and stuff (apart from the collapsed buttons, that almost gave me trauma)
this css makes me want to merge without looking
finally someone says it
works fine on collapsed side bar though
its just the icons are all crunched up
only the top discord logo is crunched
then what the hell am i experiencing
you're missing the whole fucking bar
enable this in experiments
sure but is visual refresh
for my better understanding and increase pool of knowledge
actually idek what experiments
enable the vencord plugin 'experiments', restart, go to bottom of user settings, go to experiments, type in desktop_visual_refresh, click the dropdown and select Treatment 1.
have you reloaded?
yes
told you
well its not that messed up for me
actually my side works fine
might need to change a few values though
oh wait
sorry
your collapsing sidebar may be interfering a little
i changed the top-padding
to match when i didn't have it enabled
but ye this works even without visual refresh though
huh. interesting
.
its just that the top-padding needs to be adjusted abit
~ 120
alright. i'm turning off this cursed ui
that changed nothing.
seperate css, not together with the first one
and not vis ref, idk how much they changed the classes there
just checked, doesn't work on vis ref, guess imma just delete it :p
If anyone wants this without visual refresh:
/* Shrinks titlebar down to nothing */
div[class*="titleBar_"] {
height: 0px;
}
/* Removes the "Discord" text on the top left of the screen */
div[class*="wordmark_"] {
display: none;
}
/* Scale the _ â–¡ X buttons to match top bar icons */
div[class*=winButton_] {
top: 13px;
transform: scale(1.6);
padding-right: 4px;
right: 4px;
-webkit-app-region: no-drag !important;
}
div[class*=winButton_]:hover {
color: var(--currentColor);
background-color: transparent;
}
/* small hack to avoid https://github.com/electron/electron/issues/1354 */
[class^="winButtonClose_"],
[class^="closeButton_"] {
-webkit-app-region: no-drag;
}
div[class^="upperContainer_"] {
-webkit-app-region: drag;
width: calc(100% - 96px);
}
/* revert offset when thread/forum channel is open */
div[class*="threadSidebarOpen_"] > div > section > div[class^="upperContainer_"] {
width: 100%;
}
haven't touched it in a few months but it should still work
Also I've only tested this on Windows 10/11
this is weird
broken on mac ðŸ˜
- Skillissue
- Partially broken everywhere
is there a way to find out the button elements in a theme so i can disable them? sinc the custom css reported in here does not work to hide gif and sticker buttons
ok
...why would it?
this is for visual refresh top bar
you are using vesktop device titlebar. go to vesktop settings and switch to discord titlebar
thankss
to occupy minimum space i've done
/* Hide the _ â–¡ X buttons, they are visible on hover */
div[class*=winButton_] {
top: -4px;
/* transform: scale(1); */
padding-right: 4px;
right: -4px;
-webkit-app-region: no-drag !important;
}
/* Move the other buttons*/
div[class^="upperContainer_"] {
-webkit-app-region: drag;
width: calc(100% - 88px);
margin-top: 8px;
}
/* adjust height of bar */
div[class^="subtitleContainer_"] {
margin-top: -12px;
}
@ruby river how did u get this