Firefox... taming the beast part 2 !!

Page 46 of 50 FirstFirst ... 364445464748 ... LastLast

  1. Posts : 1,800
    10 Home 64-bit | v22H2 | Build - 19045.3930
       #451

    Ghot said:
    No VMs.
    Okay.
      My Computers


  2. Posts : 1,800
    10 Home 64-bit | v22H2 | Build - 19045.3930
       #452

    Heads-up to other CSS users, some brainiac decided to 'improve' the browser.

    Just updated to FF 119.0 and it striped some colors, my bars at the top are now gray, it is set on dark theme and sounds that I didn't have on are back on.
    Firefox... taming the beast part 2 !!-capture.png

    Auto-play is on in settings and on YT and I have to manually start my train videos,. YT Siphon is on but broke, I'm sure there's other 'improvements'.

    Here's what mozilla says about Firefox 119 and CSS, there's other 'details':
    CSS
    The attr() CSS function fallback value is now supported. This allows the setting of a fallback value to be used if the global attribute is missing (Firefox bug 1448248).
    Firefox 119 details

    It's late and I'll repair when I get a chance.
      My Computers


  3. Posts : 6,853
    22H2 64 Bit Pro
       #453

    Original post by me in this thread was:

    Callender said:
    Here's a strange one. I hope that someone can figure it out.

    Caveat: I'm using Librewolf (Firefox Fork) but essentially it's the same as Firefox when it comes to userchrome.css

    After updating to 117.0-1 I had a problem with icons in the context menu overlaying the text. (Using Lepton Proton Style)

    See:

    Updating to the latest Lepton Proton Style fixed that.

    GitHub - black7375/Firefox-UI-Fix at proton-style

    However I lost the bold font on the active tab. You can see tabs in the first screenshot did all display bold text before the update.

    I reapplied this fix:
    #TabsToolbar .tabbrowser-tab .tab-content {
    font-weight: 800 !important;
    }

    I got the bold font back but only on the inactive tabs. The active tab font isn't bold.


    Any fix?
    Fixed using suggestion by @das10 here:

    Firefox... taming the beast part 2 !!

    Now I have a new problem. All tabs font are not bold so custom css is in part not respected.

    Firefox... taming the beast part 2 !!-tabs-not-bold.jpg

    However if I open a new window then it works as expected even if I close the original window. Any ideas?

    Firefox... taming the beast part 2 !!-tabs-bold.jpg
      My Computer


  4. Posts : 1,800
    10 Home 64-bit | v22H2 | Build - 19045.3930
       #454

    Callender said:
    Original post by me in this thread was:
    Fixed using suggestion by @das10 here:

    Firefox... taming the beast part 2 !!

    Now I have a new problem. All tabs font are not bold so custom css is in part not respected.
    However if I open a new window then it works as expected even if I close the original window. Any ideas?
    Hi Callender,
    Did you restart your browser after making those changes?

    And just yesterday I read this about LW (Libre Wolf):
    Worried about online privacy and security? This browser protects you more than Firefox

    The writer mentions how LW developers treat certain aspects of the package, I think there's a mention of custom css. Heck, after reading that I'm surprised those changes to the css took.
      My Computers


  5. Posts : 6,853
    22H2 64 Bit Pro
       #455

    @Anak

    Yes, I restarted browser/ computer. It's not a big deal but I'd maybe like to pin down a fix.

    RE: custom css. I back everything up and even if I restore profile or elements of it tab font still won't display bold except in a new window/

    Firefox... taming the beast part 2 !!-librewolf-css-backup.jpg

    Firefox... taming the beast part 2 !!-overrides.jpg

    Also just to mention that LibreWolf won't suit those who like to keep browsing history, disk cache and so on although you can weaken privacy and tweak it to allow certain things it's not going to suit most users.

    Settings and librewolf.overrides.cfg – LibreWolf

    I like it and have used it as default browser for around one year.
      My Computer


  6. Posts : 1,800
    10 Home 64-bit | v22H2 | Build - 19045.3930
       #456

    It sounds like the browser isn't reading the .css when it's first opened but is ok after that. It might be an about:confg setting.
      My Computers


  7. Posts : 3,274
    Win10
       #457

    Callender; are you on the latest versions of both L-Wolf and Lepton?

    I ask only, since, since I posted the code in post #437, there have been some minor changes in the CSS coding in the later versions of Firefox, although I don't know why your userChrome.css only works in the 'new' Window but not the current one.

    In a portable LibreWolf 121.0-1 (without lepton), and Firefox, I can now set the fonts for the tabs as follows:

    For bold font on ALL Tabs this css works:
    Code:
    /*  Bold font on all tabs */
    /* in userChrome.css     */
    #TabsToolbar .tabbrowser-tab label{
        font-weight: 800     !important;
    }
    Firefox... taming the beast part 2 !!-all-tabs-bold.png

    Alternatively, for Bold font on selected Tab, and any other weight (including Bold) on NOT selected Tabs this css works:
    Code:
    /* TAB LABEL for SELECTED tab  font 'color 'size 'weight 'type-face also if wanted*/
    #TabsToolbar .tabbrowser-tab[selected] label{
        font-weight: Bold      !important;
    }
    /* TAB LABEL for NOT selected tab font 'color 'size 'weight 'type-face also if wanted*/
    #TabsToolbar .tabbrowser-tab:not([selected=true]) label{
        font-weight: Normal    !important;  /* changeable as required */
        color:       white     !important;  /* for testing only*/
    }
    Firefox... taming the beast part 2 !!-selected-tab-bold-not-selected-tabs-required.png
      My Computers


  8. Posts : 23,281
    Win 10 Home ♦♦♦19045.4355 (x64) [22H2]
    Thread Starter
       #458

    Anak said:
    It sounds like the browser isn't reading the .css when it's first opened but is ok after that. It might be an about:confg setting.


    toolkit.legacyUserProfileCustomizations.stylesheets = True <---- tells Firefox to read the .css file.
      My Computer


  9. Posts : 6,853
    22H2 64 Bit Pro
       #459

    das10 said:
    Callender; are you on the latest versions of both L-Wolf and Lepton?

    I ask only, since, since I posted the code in post #437, there have been some minor changes in the CSS coding in the later versions of Firefox, although I don't know why your userChrome.css only works in the 'new' Window but not the current one.
    Yes I'm on LibreWolf 121.0-1

    I'll try your suggestions.
    Attached Thumbnails Attached Thumbnails Firefox... taming the beast part 2 !!-settings-librewolf.jpg  
      My Computer


  10. Posts : 1,800
    10 Home 64-bit | v22H2 | Build - 19045.3930
       #460

    Ghot said:
    toolkit.legacyUserProfileCustomizations.stylesheets = True <---- tells Firefox to read the .css file.
    That's how I have mine set, but what's stopping Callender's
    browser reading the .css when it's first opened but is ok after that. It might be an about:confg setting.
    Just a thought that struck me. Is spacing in a .css file !important?
      My Computers


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 11:27.
Find Us




Windows 10 Forums