Closed beornlake closed 1 year ago
Looks like the CSS theme file in pfSense+ 23.01 is ever so slightly different than the one in CE. There are a couple directives to fix the logo colors and positioning in the header.
Currently, this is how the header appears on pfSense+:
Lines 226-241:
.logo-st0 { fill: var(--foreground); } .logo-st1 { fill: var(--foreground); } .logo-st2 { fill: var(--foreground); } .navbar-brand { padding: 5px 10px 0 10px; line-height: 0.3em; }
Can be replaced with:
.logo-st0, .logo-st1, .logo-st2, .logo-st3, .logo-st4, .logo-st5 { fill: var(--foreground); } .navbar-brand { padding: 5px 10px 0 10px; line-height: .3em; } .factory.navbar-brand { padding-top: 10px; }
This fixes the display problems:
Thanks again! Should be fixed later tonight.
Looks like the CSS theme file in pfSense+ 23.01 is ever so slightly different than the one in CE. There are a couple directives to fix the logo colors and positioning in the header.
Currently, this is how the header appears on pfSense+:
Lines 226-241:
Can be replaced with:
This fixes the display problems: