Jump to content

css UI help with new firefox


vinifera

Recommended Posts

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:

ff.png

usually i wouldnt complain but on dark background it looks terrible (hence why i want frosted/smoke effect)
ff2.png

 

 

 

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 by vinifera
Link to comment
Share on other sites


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:

ff.png

 

you're welcome

 

 

 

Edited by vinifera
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...