DrOgres / tftloop

Tales From the Loop System for FoundryVTT
12 stars 15 forks source link

[CSS] V10 Journals sidebar background is transparent #33

Closed Vlyan26 closed 2 years ago

Vlyan26 commented 2 years ago

The sidebar with the new journals is transparent witch make it unreadable.

FVTT v10.288 System : TFTL 2.0.1

image

culprits :

.sheet.journal-entry {
  background: unset;
  color: black;
}
.sheet.journal-entry .journal-sidebar {
  background: unset;
  color: black;
}

so, currently a quick fix to override this is :

.sheet.journal-entry {
  background: url(/ui/denim075.png) repeat;
  color: white;
}
.sheet.journal-entry .journal-sidebar {
  color: white;
}

Screen after fix :

image

DrOgres commented 2 years ago

this is fixed along with some other minor css issues in 2.0.2

thanks!