Hacker News new | ask | show | jobs
by dngray 2554 days ago
HN doesn't do markdown, to get code text indent by 4 spaces.

My userChrome.css looks like this https://github.com/dngray/ghacks-user.js/tree/fx-desktop#use...

    @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

    /* Remove default items from the urlbar-container */
    #back-button,
    #forward-button,
    #stop-reload-button,
    #reload-button,
    #customizableui-special-spring1,
    #home-button,
    #customizableui-special-spring2,
    #library-button,
    #sidebar-button {
        display:none;
    }

    /* Disable Tab toolbar for Tree Style Tab */
    #tabbrowser-tabs {
        visibility: collapse !important;
    }

    #sidebar-header {
        display: none;
    }
I use the hotkeys or buttons on my mouse so I removed all the buttons from the toolbar https://support.mozilla.org/en-US/kb/keyboard-shortcuts-perf...