home.social

#tabbrowser — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #tabbrowser, aggregated by home.social.

  1. #Firefox #CSS

    When unhiding the vertical tab bar, it expands to show titles; I don't want that. So…

    #sidebar-main { max-width: 50px !important }

    #tabbrowser-tabs[orient="vertical"]
    {

    .tab-text.tab-label { display: none !important }

    #tabs-newtab-button { max-width: 0px !important; position:absolute; right:4px }

    .tabbrowser-tab {.tab-close-button { position: absolute; left: -4px; top: -4px } }

    }

  2. #Firefox #CSS

    When unhiding the vertical tab bar, it expands to show titles; I don't want that. So…

    #sidebar-main { max-width: 50px !important }

    #tabbrowser-tabs[orient="vertical"]
    {

    .tab-text.tab-label { display: none !important }

    #tabs-newtab-button { max-width: 0px !important; position:absolute; right:4px }

    .tabbrowser-tab {.tab-close-button { position: absolute; left: -4px; top: -4px } }

    }

  3. CW: Уже не представляю себе использование браузера без вертикальной панели вкладок. Использую #firefox + расширение "Tab Center Redux". Давно искал способ скрыть оригинальную панель вкладок и вот он:

    * создать файл по пути: /home/{домашняя папка}/.mozilla/firefox/{профиль}/chrome/userChrome.css с таким стилем:
    #tabbrowser-tabs {visibility: collapse;}
    * в about:config включить использование пользовательских стилей переключением в true параметра toolkit.legacyUserProfileCustomizations.stylesheets

  4. if you've just updated to #firefox 65 and your tab bar is no longer hidden, it's because the CSS necessary to hide it has changed.
    you now need to add

    #tabbrowser-tabs {
    visibility: collapse !important;
    }

    to your userChrome.css.