Xbozon / rpg-styled-ui

Foundry VTT RPG Styled UI
12 stars 11 forks source link

v11 - Bug - entire interface shifts upwards #84

Closed Sasmira closed 11 months ago

Sasmira commented 11 months ago

First problem

#players ol::before { position: absolute; content: " "; width: 120%; height: 130%; background: url(../ui/frames/players_bg_dark.webp); background-size: 100% 100%; z-index: -1; left: -10%; }

Second problem

#action-bar:not(.collapsed)::before { position: absolute; z-index: -1; content: " "; width: 146%; bottom: -10px; left: -23%; height: 85px; background-image: url(../ui/frames/action_bar.webp); background-size: 100% 85px; background-repeat: no-repeat; }

#hotbar #action-bar .macro::before { background-image: url(../ui/frames/macro.webp); background-size: contain; background-repeat: no-repeat; position: absolute; content: " "; width: 61px; height: 78px; top: -11px; left: -9px; z-index: 1; }

darkanx commented 11 months ago

I fixed that bug, it will get rolled into the main branch soon. You can grab my updated rpg-ui.css here https://github.com/darkanx/rpg-styled-ui/blob/main/css/rpg-ui.css or just change this section in the rpg-ui.css at line 23 until then:

/Fix v11/

interface {

overflow: clip;

} /end/

Xbozon commented 11 months ago

Changes have been made to the main thread, many thanks for the bug report. darkanx thanks for the fix.