callmekass / pfSense-palenight

[DEPRECATED] A palenight inspired theme for pfSense and pfSense+
Apache License 2.0
35 stars 2 forks source link

pfSense+ Logo Display Errors #3

Closed beornlake closed 1 year ago

beornlake commented 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+: Screenshot 2023-04-06-112500

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: Screenshot 2023-04-06-112657

callmekass commented 1 year ago

Thanks again! Should be fixed later tonight.