mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -05:00
Move userChrome to static; add another example
This commit is contained in:
parent
40fe8c60b1
commit
64da7e6bc3
2 changed files with 38 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
||||
|
||||
/* Move this file to %appdata%/Mozilla/[your-profile]/chrome/userChrome.css
|
||||
/* Move this file to %appdata%/Mozilla/Firefox/[your-profile]/chrome/userChrome.css
|
||||
* Currently, it reduces the amount of padding around the UI and moves the tab
|
||||
* and navigation bar to the same line.
|
||||
*
|
37
src/static/userChrome-minimal.css
Executable file
37
src/static/userChrome-minimal.css
Executable file
|
@ -0,0 +1,37 @@
|
|||
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
|
||||
|
||||
/* Move this file to %appdata%/Mozilla/[your-profile]/chrome/userChrome.css
|
||||
* Currently, it reduces the amount of padding around the UI and moves the tab
|
||||
* and navigation bar to the same line.
|
||||
*
|
||||
* If you're not on Windows, you can find your profile folder on
|
||||
* about:support
|
||||
*
|
||||
* Borrowed from https://www.reddit.com/r/FirefoxCSS/comments/73359a/my_firefox_57_setup/?utm_content=title&utm_medium=browse&utm_source=reddit&utm_name=FirefoxCSS
|
||||
*
|
||||
* This file is a work in progress.
|
||||
*
|
||||
* Any information on where to find documentation on valid properties we can edit here would be appreciated.
|
||||
*
|
||||
*/
|
||||
|
||||
#nav-bar{
|
||||
padding-top: 1px !important;
|
||||
padding-bottom: 0 !important;
|
||||
}
|
||||
|
||||
|
||||
#main-window[sizemode="maximized"] #nav-bar{
|
||||
/* We need more padding when maximised because reasons */
|
||||
padding-top: 7px !important;
|
||||
}
|
||||
|
||||
/*Removal of black bottom 1px line*/
|
||||
#navigator-toolbox::after {
|
||||
display: none !important;}
|
||||
|
||||
|
||||
#TabsToolbar { visibility: collapse; }
|
||||
/* Remove window buttons (Close, Minimize, Fullscreen) */
|
||||
#titlebar {display: none !important;}
|
||||
#TabsToolbar .titlebar-placeholder {display: none !important; }
|
Loading…
Add table
Reference in a new issue