vinifera Posted December 10, 2021 Posted December 10, 2021 (edited) 1. can someone tell me how can i get ridd of menubar toolbar thru css (userchrome) coz i got giant EMPTY row that serves nothing 2. can someone tell me how to make bookmarkbar and i guess its navigation bar ?, frosty ?? see my problems: usually i wouldnt complain but on dark background it looks terrible (hence why i want frosted/smoke effect) i have this code: root{ --uc-titlebar-padding: 0px; --toolbar-bgcolor: transparent !important; --toolbar-fill: whitesmoke !important; --toolbarbutton-icon-fill: whitesmoke; } but whitesmoke fill is ignored Edited December 10, 2021 by vinifera
vinifera Posted December 13, 2021 Author Posted December 13, 2021 (edited) fixed with following code: :root{ --uc-titlebar-padding: 0px; --toolbar-bgcolor: transparent !important; } /* frost glass */ /* by need add #titlebar, window, #toolbar-menubar, #PersonalToolbar, #navigator-toolbox */ /* tho #titlebar doesn't work */ #main-window{ background-image: linear-gradient(rgba(239, 240, 241, 0.5), transparent, rgba(239, 240, 241, 0.5), transparent, rgba(239, 240, 241, 0.3)) !important; background-color: rgba(239, 240, 241, 0.6) !important; } #TabsToolbar{ background-color: rgba(239, 240, 241, 0.1) !important; background-image: linear-gradient(rgba(239, 240, 241, 0.1), transparent, rgba(239, 240, 241, 0.1), transparent, rgba(239, 240, 241, 0.1)) !important; } result: you're welcome Edited December 13, 2021 by vinifera
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now