Jump to content

css UI help with new firefox


Recommended Posts

Posted (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:

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

Posted (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:

ff.png

 

you're welcome

 

 

 

Edited by vinifera

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

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