1. Nachrichten
  2. Forum
    1. Unerledigte Themen
    2. Forenregeln
  3. Spenden
  • Anmelden
  • Registrieren
  • Suche
Alles
  • Alles
  • Artikel
  • Seiten
  • Forum
  • Erweiterte Suche
  1. camp-firefox.de
  2. gefunden008

Beiträge von gefunden008

  • FF 57 Mehrzeilige Tab-Leiste

    • gefunden008
    • 6. Dezember 2019 um 11:07

    Das sieht jetzt schon ganz gut aus :)

    Was muss ich tun, dass niemals eine Scrollbar erscheint? Also nur Tableisten sichtbar sind.

    Habe versucht den Eintrag zu löschen, aber der Scrollbalken ist hartnäckig und bleibt.

    PS: Richtig, ich habe die Tabbreite auf 153px angepasst, damit gehen die Tabs jetzt fast bis ganz hinter, nur der Scrollbalken ist manchmal da und manchmal nicht, der muss noch weg.

  • FF 57 Mehrzeilige Tab-Leiste

    • gefunden008
    • 6. Dezember 2019 um 10:40

    Hallo Andreas und BrokenHeart,

    ha, genau das fehlte wohl noch. Die beiden angegeben Werte von dir/euch waren genau andersherum eingestellt.

    Jetzt hätte ich noch eine Frage, diese rot markierten Abstände bez. Das leere/unbenutzte Feld, kann man das auch irgendwie anpassen, so dass die Bezeichnung vom Tab auch die 130px nutzt und das vermutlich leere Feld für den eigtl. Scrollbalken da ist, den ich aber nicht benötige.

    [Blockierte Grafik: https://s19.directupload.net/images/191206/vw3qheyu.png]

  • FF 57 Mehrzeilige Tab-Leiste

    • gefunden008
    • 6. Dezember 2019 um 10:05

    Hallo,

    Danke für deine schnelle Rückmeldung. Ich habe jetzt die chrome mit oben genannten ersetzt. Leider zeigt diese überhaupt keine Wirkung. Weder eine mehrzeilige Tableiste, eine mehrzeilige Faviconleiste oder sonst etwas :(

    Habe sogar Firefox komplett deinstalliert und neuinstalliert, leider auch keine Veränderung.

    Pfad:

    C:\Users\xxx\AppData\Roaming\Mozilla\Firefox\Profiles\xxx.default-release\chrome

    Das habe ich eingefügt und alles andere gelöscht:

    CSS
    /* Do not remove the @namespace line -- it's required for correct functioning */
    @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
    /* ----------------------------*/
    /* Mehrzeilige Tabreihen       */
    /* ----------------------------*/
    tabs > arrowscrollbox { 
        display: block; 
    }
    scrollbox[part][orient="horizontal"] {
        display: flex;
        flex-wrap: wrap; 
        overflow: visible !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        min-height: 30px !important;
        max-height: calc( 9 * 30px ) !important;  /*3 Tabreihen*/
        -moz-window-dragging: no-drag !important;
    }
    /* Tab-Höhe  */
    .tabbrowser-tab {
        min-height: 28px !important;
        max-height: 28px !important;
        vertical-align: bottom !important;
        margin-top: 1px !important;
        margin-bottom: 1px !important;
    }
     /* Feste Breite  des einzelnem Tabs */
    .tabbrowser-tab:not([pinned]) {
        min-width: 130px !important; 
    }
    /* Platz für Scrollbar schaffen */
    .tabbrowser-tabs {
      margin-right: -41px !important;
    }
    /* Buttons/Zwischenräume Ausblenden */
    hbox.titlebar-spacer,
    #alltabs-button,tabs tab:not([fadein]), 
    [class="scrollbutton-up"],
    [class="scrollbutton-up"] + spacer,
    scrollbox[part][orient="horizontal"] + spacer,
    [class="scrollbutton-down"] { 
        display: none; 
    }
    /* Firefox Quantum userChrome.css tweaks ************************************************/
    /* Github: https://github.com/aris-t2/customcssforfx ************************************/
    /****************************************************************************************/
    /* NOTE  ********************************************************************************/
    /* Variables are set inside '.\config\' folders CSS files, if complete package is used! */
    /* import old button/bookmark size code *************************************************/
    @import "./../buttons/buttons_on_bookmarks_toolbar_old_size_and_appearance.css";
    :root {
      --bookmark_items_height: 26px; /* <- bookmark items - line height */
      --bookmark_items_lines: 7; /* <- maximum amount of lines */
    }
    #PersonalToolbar {
      min-height: var(--bookmark_items_height) !important;
      max-height: calc(var(--bookmark_items_height)*(var(--bookmark_items_lines))) !important;
    }
    #PlacesToolbar,
    #PlacesToolbarItems {
      overflow: visible;
      display: block;
    }
    #PlacesToolbarItems > .scrollbox-innerbox {
      display: flex;
      flex-wrap: wrap; 
      overflow-x: hidden !important;
      overflow-y: visible !important;
      max-height: calc(var(--bookmark_items_height)*(var(--bookmark_items_lines))) !important
    }
    #personal-bookmarks {
      display: block;
    }
    #personal-bookmarks #PlacesToolbar {
      display: block;
      min-height: 0;
      overflow-x: hidden;
      overflow-y: auto;
      max-height: calc( var(--bookmark_items_lines) * var(--bookmark_items_height) );
    }
    #personal-bookmarks #PlacesToolbar > hbox {
      display: -moz-stack !important;
      left: 0px;
      right: 0px;
      width: 100%;
    }
    #personal-bookmarks #PlacesToolbar #PlacesToolbarItems {
      overflow-x: visible;
      overflow-y: visible;
    }
    #personal-bookmarks #PlacesToolbar #PlacesToolbarItems > box {
      display: block;
    }
    #personal-bookmarks #PlacesToolbar > .bookmark-item{
      visibility: visible !important;
    }
    #personal-bookmarks #PlacesToolbar .chevron{
      visibility: collapse;
    }
    #personal-bookmarks #PlacesToolbar > hbox > hbox{
      overflow-x: hidden;
      overflow-y: hidden;
    }
    #personal-bookmarks #PlacesToolbar #PlacesToolbarDropIndicator[collapsed="true"],
    #personal-bookmarks #PlacesToolbar #PlacesToolbarDropIndicator{
      display: none;
    }
    #personal-bookmarks #PlacesToolbar toolbarbutton.bookmark-item{
      padding-top: 0px !important;
      padding-bottom: 0px !important;
      margin-top: 2px !important;
      margin-bottom: 2px !important;
      vertical-align: middle;
    }
    /*
    #personal-bookmarks #PlacesToolbar toolbarbutton.bookmark-item:hover:active:not([disabled="true"]),
    #personal-bookmarks #PlacesToolbar toolbarbutton.bookmark-item[open="true"] {
      padding-top: 2px !important;
      padding-bottom: 2px !important;
    }
    */
    #personal-bookmarks #PlacesToolbar toolbarseparator{
      -moz-appearance: none !important;
      visibility: visible !important;
      display: inline;
      text-shadow: none !important;
      border-left: 3px solid ThreeDShadow !important;
      border-right: 3px solid ThreeDHighlight !important;
      vertical-align: middle;
    }
    #personal-bookmarks toolbarbutton.bookmark-item[dragover][open]{
      -moz-appearance: toolbarbutton;
    }
    #navigator-toolbox #PersonalToolbar { 
      max-height: calc( var(--bookmark_items_lines) * var(--bookmark_items_height) ) !important;
    }
    .tabbrowser-tab[label*="BiT-TiTAN"] .tab-icon-image{
         display:none!important;
       }
    Alles anzeigen
  • FF 57 Mehrzeilige Tab-Leiste

    • gefunden008
    • 6. Dezember 2019 um 01:20

    Guten Abend,

    auch ich habe das Problem das mir meine bis auf 9 Zeilen erweiterbare Tableiste fehlt. Meine chrome ist in den Jahren so wild geworden, dass ich nicht weiß wo ich das von euch besagte einfügen muss (und auch sicher was löschen) so dass es wieder funktioniert wie vorher und auch weiterhin so aussieht.

    Könnte sich das bitte jemand von euch anschauen und das Einfügen / ersetzen was nötig ist, das es wieder wie vorher funktioniert? Ich komme leider überhaupt nicht mehr klar ☹

    Das wäre echt mega nett.

    CSS
    /* Firefox Quantum userChrome.css tweaks ************************************************/
    /* Github: https://github.com/aris-t2/customcssforfx ************************************/
    /****************************************************************************************/
    
    
    /****************************************************************************************/
    /* multirow / multiple tab lines - modified for CustomCSSforFx **************************/
    /* all credits go to the original author: ***********************************************/
    /* https://www.reddit.com/r/FirefoxCSS/comments/7dclp7/multirow_tabs_in_ff57/ ***********/
    /****************************************************************************************/
    
    
    /* NOTE  ********************************************************************************/
    /* Variables are set inside '.\config\' folders CSS files, if complete package is used! */
    
    :root {
      --tabs-lines: 9;
      --tab_min_width_mlt: 130px;
      --tab_max_width_mlt: 130px;
      --tab-min-height_mlt: 27px;
    }
    
    .tabbrowser-tab[fadein]:not([pinned]) {
      flex-grow: 1;
      min-width: var(--tab_min_width_mlt) !important;
      max-width: var(--tab_max_width_mlt) !important;
    }
    
    .tabbrowser-tab,.tab-background {
      min-height: var(--tab-min-height_mlt);
    }
    
    .tabs-newtab-button {
      vertical-align: bottom !important;
      height: var(--tab-min-height_mlt);
      margin-bottom: -1px !important;
    }
    
    .tab-stack {
      width: 100%;
    }
    
    /* fix tab position */
    #tabbrowser-tabs,
    #tabbrowser-tabs > .tabbrowser-arrowscrollbox {
      min-height: var(--tab-min-height_mlt) !important;
    }
    :root[uidensity=touch] .tabbrowser-tab:not([pinned]) .tab-content .close-icon {
      padding-top: 0px !important;
      padding-bottom: 0px !important;
    }
    /**/
    
    #tabbrowser-tabs .scrollbox-innerbox {
      display: flex;
      flex-wrap: wrap;
      overflow-x: collapse !important;
      overflow-y: auto !important;
      min-height: var(--tab-min-height_mlt);
      max-height: calc( var(--tabs-lines) * var(--tab-min-height_mlt) ) !important;
    }
    
    #tabbrowser-tabs .arrowscrollbox-scrollbox {
      overflow-x: collapse;
      overflow: visible; 
      display: block;
    }
    
    #tabbrowser-tabs .scrollbutton-up,
    #tabbrowser-tabs .scrollbutton-down,
    #TabsToolbar #alltabs-button,
    .tabbrowser-tab:not([fadein]){
      display: none;
    }
    
    #main-window[tabsintitlebar] #tabbrowser-tabs {
      -moz-window-dragging: no-drag !important;
    }
    
    .tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-start-indicator:not([collapsed]),
    .tabbrowser-arrowscrollbox > .arrowscrollbox-overflow-end-indicator:not([collapsed]) {
      opacity: 0 !important;
    }
    
    #tabbrowser-tabs * {
      overflow-x: collapse !important;
    }
    
    #main-window[customizing] #tabbrowser-tabs .scrollbox-innerbox {
      display: block !important;
    }
    
    #tabbrowser-tabs .scrollbox-innerbox {
      -moz-padding-end: 4px !important;
    }
    
    #TabsToolbar[currentset^="tabbrowser-tabs,new-tab-button"] #tabbrowser-tabs .scrollbox-innerbox {
      -moz-padding-end: 0px !important;
    }
    
    /* hide private window indicator, window controls and titlebar placeholders */
    #main-window[tabsintitlebar] #TabsToolbar .private-browsing-indicator,
    #main-window[tabsintitlebar] #TabsToolbar #window-controls,
    #main-window[tabsintitlebar] #TabsToolbar .titlebar-spacer[type="pre-tabs"],
    #main-window[tabsintitlebar] #TabsToolbar .titlebar-spacer[type="post-tabs"] {
      display: none !important;
    }
    #TabsToolbar .titlebar-placeholder[type="pre-tabs"],
    #TabsToolbar .titlebar-placeholder[type="post-tabs"] {
      opacity: 0 !important;
    }
    
    /* hide tab borders set by Firefox 58+ to solve 'blank space below tabs' issue */
    .tabbrowser-tab::after,
    .tabbrowser-tab::before {
      border-left: unset !important;
      border-image: unset !important;
      border-image-slice: unset !important;
      border: 0 !important;
    }
    
    /* Fx66+ fix */
    #TabsToolbar #tabbrowser-tabs .tabbrowser-tab:not([pinned]) .tab-close-button {
      visibility: visible !important;
      display: block !important;
    }
    
    /* Firefox Quantum userChrome.css tweaks ************************************************/
    /* Github: https://github.com/aris-t2/customcssforfx ************************************/
    /****************************************************************************************/
    
    
    /* NOTE  ********************************************************************************/
    /* Variables are set inside '.\config\' folders CSS files, if complete package is used! */
    
    /* import old button/bookmark size code *************************************************/
    @import "./../buttons/buttons_on_bookmarks_toolbar_old_size_and_appearance.css";
    
    :root {
      --bookmark_items_height: 26px; /* <- bookmark items - line height */
      --bookmark_items_lines: 7; /* <- maximum amount of lines */
    }
    
    #PersonalToolbar {
      min-height: var(--bookmark_items_height) !important;
      max-height: calc(var(--bookmark_items_height)*(var(--bookmark_items_lines))) !important;
    }
    
    #PlacesToolbar,
    #PlacesToolbarItems {
      overflow: visible;
      display: block;
    }
    
    #PlacesToolbarItems > .scrollbox-innerbox {
      display: flex;
      flex-wrap: wrap; 
      overflow-x: hidden !important;
      overflow-y: visible !important;
      max-height: calc(var(--bookmark_items_height)*(var(--bookmark_items_lines))) !important
    }
    
    #personal-bookmarks {
      display: block;
    }
    
    #personal-bookmarks #PlacesToolbar {
      display: block;
      min-height: 0;
      overflow-x: hidden;
      overflow-y: auto;
      max-height: calc( var(--bookmark_items_lines) * var(--bookmark_items_height) );
    }
    
    #personal-bookmarks #PlacesToolbar > hbox {
      display: -moz-stack !important;
      left: 0px;
      right: 0px;
      width: 100%;
    }
    
    #personal-bookmarks #PlacesToolbar #PlacesToolbarItems {
      overflow-x: visible;
      overflow-y: visible;
    }
    
    #personal-bookmarks #PlacesToolbar #PlacesToolbarItems > box {
      display: block;
    }
    
    #personal-bookmarks #PlacesToolbar > .bookmark-item{
      visibility: visible !important;
    }
    
    #personal-bookmarks #PlacesToolbar .chevron{
      visibility: collapse;
    }
    
    #personal-bookmarks #PlacesToolbar > hbox > hbox{
      overflow-x: hidden;
      overflow-y: hidden;
    }
    
    #personal-bookmarks #PlacesToolbar #PlacesToolbarDropIndicator[collapsed="true"],
    #personal-bookmarks #PlacesToolbar #PlacesToolbarDropIndicator{
      display: none;
    }
    
    #personal-bookmarks #PlacesToolbar toolbarbutton.bookmark-item{
      padding-top: 0px !important;
      padding-bottom: 0px !important;
      margin-top: 2px !important;
      margin-bottom: 2px !important;
      vertical-align: middle;
    }
    /*
    #personal-bookmarks #PlacesToolbar toolbarbutton.bookmark-item:hover:active:not([disabled="true"]),
    #personal-bookmarks #PlacesToolbar toolbarbutton.bookmark-item[open="true"] {
      padding-top: 2px !important;
      padding-bottom: 2px !important;
    }
    */
    #personal-bookmarks #PlacesToolbar toolbarseparator{
      -moz-appearance: none !important;
      visibility: visible !important;
      display: inline;
      text-shadow: none !important;
      border-left: 3px solid ThreeDShadow !important;
      border-right: 3px solid ThreeDHighlight !important;
      vertical-align: middle;
    }
    
    #personal-bookmarks toolbarbutton.bookmark-item[dragover][open]{
      -moz-appearance: toolbarbutton;
    }
    
    #navigator-toolbox #PersonalToolbar { 
      max-height: calc( var(--bookmark_items_lines) * var(--bookmark_items_height) ) !important;
    }
    
    .tabbrowser-tab[label*="BiT-TiTAN"] .tab-icon-image{
         display:none!important;
       }
    Alles anzeigen
  • animiertes Tab favicon deaktivieren

    • gefunden008
    • 7. April 2019 um 11:09

    Danke für eure Hilfe, das Problem konnte jetzt gelöst werden. Zwar ist dann das ganze favicon für diesen Tab ausgeblendet, aber das ist auch Ordnung, besser als jede Animation :)

    Zum Beispiel dieses in die userChrome einfügen, damit wäre das favicon auf der gesamten Seite hier ausgeblendet:

    CSS
    .tabbrowser-tab[label*="Camp Firefox"] .tab-icon-image{
         display:none!important;
    	 }

    MfG

  • animiertes Tab favicon deaktivieren

    • gefunden008
    • 6. April 2019 um 19:04

    Ja das hatte ich ebenfalls bereits erfolglos versucht :/

    MfG

  • animiertes Tab favicon deaktivieren

    • gefunden008
    • 4. April 2019 um 20:48

    Hallo,

    gibt es eine Möglichkeit animierte favicons im Tab zu deaktivieren? Ich habe verschiedene Tipps versucht die mir google so ausgegeben hat, aber diese funtkionieren alle nicht mehr oder es sind alle favicons ausgeblendet.

    Ich nutze Firefox 66.0.2 64-Bit.

    MfG

Unterstütze uns!

Jährlich (2025)

94,2 %

94,2% (612,48 von 650 EUR)

Jetzt spenden
  1. Kontakt
  2. Datenschutz
  3. Impressum
Community-Software: WoltLab Suite™
Mastodon