datguypiko / Firefox-Mod-Blur

Firefox Theme - For dark theme lovers / More compact / Modular / Blur
1.24k stars 59 forks source link

Inconsistent Icons #118

Closed wealstarr closed 4 months ago

wealstarr commented 5 months ago

Hello,

The thickness of the caption icons (min-max-close) is not consistent with other icons. Capture

Would it be possible to make all other icons consistent with caption icons ? (other icons are way too thick)

Kind regards

datguypiko commented 5 months ago

That's how it is by default.

wealstarr commented 5 months ago

Hello @datguypiko

Thank you for the response. Yes, I understand that's the default position but I see some people changed the icons. Is it not possible ?

datguypiko commented 5 months ago

It is, if you find some svg icons for it send me I can try help you change it.

datguypiko commented 4 months ago

Hello @datguypiko

Thank you for the response. Yes, I understand that's the default position but I see some people changed the icons. Is it not possible ?

Found some thicker buttons in firefox itself from different theme.

here you can add this code to userChrome.css file, I will make it as an extra mod.

.titlebar-buttonbox-container .titlebar-button.titlebar-min {
    list-style-image: url(chrome://browser/skin/window-controls/minimize-themes.svg) !important;
  }

  .titlebar-buttonbox-container .titlebar-button.titlebar-max {
    list-style-image: url(chrome://browser/skin/window-controls/maximize-themes.svg) !important;
  }

  .titlebar-buttonbox-container .titlebar-button.titlebar-restore {
    list-style-image: url(chrome://browser/skin/window-controls/restore-themes.svg) !important;
  }

  .titlebar-buttonbox-container .titlebar-button.titlebar-close {
    list-style-image: url(chrome://browser/skin/window-controls/close-themes.svg) !important;
  }

image