Browsers which allow the address bar to be placed above the tabs

Page 7 of 8 FirstFirst ... 5678 LastLast

  1. Posts : 65
    Windows 10
    Thread Starter
       #61

    das10 said:
    Yes, I hadn't noticed that!
    I've been having fun trying to track down exactly what causes the effect. No luck yet, but it must be there somewhere (or perhaps several somewheres).

    I'm perfectly happy not to have the Extension button.
      My Computer


  2. Posts : 3,274
    Win10
       #62

    Looks like some code related to Unload/Pending tabs. There appear to be extra code settings for such tabs, which I haven't tried.

    eg. enter the following address in the URL bar and then click the "Unload" button and the tabs appears to go back to the plain colors for the tabs which have been unloaded.
    address:
    about:unloads
      My Computers


  3. Posts : 65
    Windows 10
    Thread Starter
       #63

    Thanks, I'll have a play with that.
      My Computer


  4. Posts : 3,274
    Win10
       #64

    It's funny, but I had set some parts of that differing color code in "chrome\config\color_variables_classic-grey.css" without realising the effect it would have!

    These seem to be the lines concerned:
    Code:
              --classic_squared_tabs_other_tabs: linear-gradient(to top,#00FEFE,#00FEFE,aquamarine) !important;
              --classic_squared_tabs_unloaded_tabs: linear-gradient(to top, #00FEFE,#00FEFE,#00FEFE) !important;
    Aquamarine & #00FEFE are close but not the same!
    At least you can change that aquamarine to #00FEFE to get rid of that small color change.

    Other-tabs seems to refer to all the non-selected tabs & unloaded-tabs refers to all non-selected tabs which have been unloaded to save resources.
    Last edited by das10; 21 Feb 2024 at 15:04.
      My Computers


  5. Posts : 65
    Windows 10
    Thread Starter
       #65

    das10 said:
    Aquamarine & #00FEFEFE are close but not the same!
    To be honest, I wasn't entirely sure at first that the effect was actually there. I was willing to put it down to a trick of the light or my eyesight.

    At least you can change that aquamarine to #00FEFE to get rid of that small color change.
    I've just done that and you're right, it works. I do appreciate the time and the trouble you've taken over this. I doubt if I'd have picked up that last nuance on my own: unfortunately my css knowledge has rather faded since I wrote my two websites from scratch many years ago.

    - - - Updated - - -

    @das10, having used the newly-tweaked Firefox for a short while now, there's one final adjustment I'd like to make: I'd like to increase the height of the tab bar slightly, and also of the tabs themselves (keeping the space betwen the tops of the tabs and the top of the bar, or perhaps diminishing it very slightly). I've looked though all the coding which seems to relate to the TabToolbar and the tabs but haven't so far found any specific references to their height. Can you point me in the right direction?

    Many thanks.
    Last edited by Bert Coules; 22 Feb 2024 at 13:04.
      My Computer


  6. Posts : 3,274
    Win10
       #66

    Note that we have uncommented (hence, made use of) the "classic_squared_tabs.css" line in userChrome.css for the tab appearance, hence we look for that particular property in one of the files under "chrome\config".

    userChrome.css "TAB appearance" section:
    Code:
    /* Classic tabs appearance known from Firefox 4-28 */
    @import "./css/tabs/classic_squared_tabs.css"; /**/

    And, in the "chrome\config\general_variables.css" file, there is a corresponding property called "--classic squared tabs only", so we try eg. & change the default value of 26px to say 32px (or whatever you require) & it works.
    Code:
    /* custom height for 'classic squared tabs' only */
    --classic_squared_tabs_tab_height: 32px !important;
    ---

    For reducing the space between the top of the tabs and the tab-bar, try and change the values of the following section in "my_userChrome.css".
    Code:
    /* 
    Alter space between tabs and top of tab-bar - may also require changes to padding/margin to 
    nav-bar and Bookmarks bar when it is shown (ie PersonalToolbar) 
    The same "px" value all round seems to balance everything out.
    */
    
    #TabsToolbar {
         padding-top:    3px    !important;
    }     
    #nav-bar {
         padding-bottom: 3px    !important;
    }
    #PersonalToolbar {
        margin-block:   -3px 3px !important;    
    }
    #urlbar {
        margin-top: -1.5px !important; 
    }
    Last edited by das10; 22 Feb 2024 at 14:24. Reason: spelling
      My Computers


  7. Posts : 65
    Windows 10
    Thread Starter
       #67

    Thanks so much. I'll try it.

    Edited to add:

    That worked beautifully. Thanks so much.

    Looking back over this entire thread, I was embarrassed to discover - and if you realised, you were too polite to say - that you'd already explained how to achieve these two adjustments several days ago. Apologies.
    Last edited by Bert Coules; 22 Feb 2024 at 14:28.
      My Computer


  8. Posts : 3,274
    Win10
       #68

    No problem - it can be overwhelming when you see so many permutations in Aris's code.

    I did realise that I had made references to those settings, but instead of referring back to the particular posts, I thought it might make things clearer if I just showed the specific settings required, again.
      My Computers


  9. Posts : 65
    Windows 10
    Thread Starter
       #69

    das10 said:
    No problem - it can be overwhelming when you see so many permutations in Aris's code.
    It's certainly a huge contrast to my one-file, one-page effort from some years back, though that also had the desired effect. Ari, as I think you mentioned earlier, was clearly covering all eventualities for all prospective users. It might make an interesting and educational exercise for me to see how much of his material I can eliminate without harm, secure in the knowledge that I have multiple backups of the whole thing.

    I did realise that I had made references to those settings, but instead of referring back to the particular posts, I thought it might make things clearer if I just showed the specific settings required, again.
    That was kind - and polite! - of you.

    And now I have my Firefox looking and behaving pretty much exactly how I wanted it while also being up to date, and I've learned - or relearned - a good deal on the way: l'm grateful to everyone who helped, yourself especially.

    With which I suppose I should mark the thread as solved. I hope that anyone in the same or a similar position as I was might benefit from the discussion either now or in the future.

    Bert
    Last edited by Bert Coules; 23 Feb 2024 at 06:01.
      My Computer


  10. Posts : 3,274
    Win10
       #70

    As an exercise "only", you could certainly try and eliminate for example all the "commented" lines in the userChrome.css file, and all the extra files from his Chrome folder/sub-folders which don't get called either directly or indirectly by any of the dependencies (this would mean individually tracking and reading through each dependent css files).

    But in the long term it would be best left as an exercise only, as his Chrome folder uses just 1.5Mb of disk space, and if you needed to update his theme tweaker (it doesn' happen often, but you never know with newer versions of Firefox making some tweaks of their own), you would need to go through the whole exercise again.
      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 10:09.
Find Us




Windows 10 Forums