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. Nemi

Beiträge von Nemi

  • Letztes Update: Alles durcheinander

    • Nemi
    • 16. Mai 2023 um 17:50
    Zitat von 2002Andreas
    Zitat von Nemi

    Obwohl Sie vorher oberhalb der eingabeleiste/suchleiste war.

    So sieht das mit deinem alten Code in Firefox Version 111 aus.

    Die Tableiste ist unten, wird ja im Code auch so festgelegt. :/


    /* Tableiste nach unten */

    #titlebar {

    -moz-box-ordinal-group: 100 !important;

    }

    Alles anzeigen

    Sorry ja klar... oh man =D soviel zeug im Kopf das ich gar nicht mehr gewusst habe wie das mal aussah. Ja war eigentlich genauso wie es jetzt aussieht. Danke euch allen!

  • Letztes Update: Alles durcheinander

    • Nemi
    • 16. Mai 2023 um 17:41

    Das hat zwar geholfen, gröstenteils. Aber meine Tab leiste ist jetzt unterhalb von der Lesezeichen Symbolleiste. Obwohl Sie vorher oberhalb der eingabeleiste/suchleiste war.

    Zitat von 2002Andreas
    Zitat von Nemi

    /* Tableiste nach unten */

    Den Code mal entfernen, und diesen dafür einfügen.

    CSS
    window, page, dialog, wizard, prefwindow {
    
    background-color: rgb(231,237,245) !important; }
    
    
    
    #titlebar {
    
    order:  100 !important;
    
    }
    
    /* space above tabs toolbar */
    
    #main-window[tabsintitlebar][sizemode="maximized"] * #titlebar {
    
    margin-top: -8px !important;
    
    }
    
    /* space for menubar above navigation toolbar (Firefox titlebar) */
    
    #main-window[tabsintitlebar]:not([sizemode="fullscreen"]) #nav-bar {
    
    margin-top: 40px !important;
    
    }
    
    #main-window[tabsintitlebar][sizemode="maximized"]:not([sizemode="fullscreen"]) #nav-
    
    bar {
    
    margin-top: 6px !important;
    
    }
    
    /* add 'drag' feature to space above navigation toolbar */
    
    #main-window[tabsintitlebar] #navigator-toolbox,
    
    #main-window[tabsintitlebar] #nav-bar {
    
    -moz-window-dragging: drag !important;
    
    }
    
    /* move menubar to the top and extend its with to full window width */
    
    #toolbar-menubar {
    
    position: fixed !important;
    
    width: 100vw !important;
    
    -moz-window-dragging: drag !important;
    
    }
    
    /* move menubars / tab toolbars caption buttons to windows top right position */
    
    #main-window[tabsintitlebar]:not([inDOMFullscreen="true"]) .titlebar-buttonbox-container {
    
    position: fixed !important;
    
    right: 0 !important;
    
    visibility: visible !important;
    
    display: block !important;
    
    }
    
    /* menubar postion after moving to the top */
    
    #toolbar-menubar {
    
    top: 10px !important;
    
    }
    
    /* Linux/macOS */
    
    /* space above navigation toolbar (OS titlebar) */
    
    /* set to '0', if no menubar is used */
    
    #main-window:not([tabsintitlebar]):not([sizemode="fullscreen"]) #nav-bar {
    
    margin-top: 39px !important;
    
    }
    
    /* menubar postion in maximized mode after moving to the top */
    
    #main-window[tabsintitlebar][sizemode="maximized"] #toolbar-menubar {
    
    top: 0px !important;
    
    }
    
    /* caption button position in maximized mode after moving to the top */
    
    #main-window[tabsintitlebar]:not([inDOMFullscreen="true"]) .titlebar-buttonbox-container,
    
    #main-window[tabsintitlebar][sizemode="maximized"]:not([inDOMFullscreen="true"])
    
    .titlebar-buttonbox-container {
    
    top: 4px !important;
    
    }
    
    /* Windows */
    
    Media (-moz-os-version:windows-win10), (-moz-os-version:windows-win8), (-moz-os-
    
    version:windows-win7) {
    
    /* set to '0', if no menubar is used */
    
    #main-window:not([tabsintitlebar]):not([sizemode="fullscreen"]) #nav-bar {
    
    margin-top: 8px !important;
    
    }
    
    /* set to '0', if no menubar is used */
    
    #main-window[tabsintitlebar][sizemode="maximized"]:not
    
    ([sizemode="fullscreen"]) #nav-bar {
    
    margin-top: 4px !important;
    
    }
    
    #main-window[tabsintitlebar][sizemode="maximized"] #toolbar-menubar {
    
    top: 8px !important;
    
    }
    
    #main-window[tabsintitlebar]:not([inDOMFullscreen="true"]) .titlebar-buttonbox-
    
    container {
    
    top: 0px !important;
    
    }
    
    #main-window[tabsintitlebar][sizemode="maximized"]:not
    
    ([inDOMFullscreen="true"]) .titlebar-buttonbox-container {
    
    top: 8px !important;
    
    }
    
    }
    
    /* hide line above navigation toolbar appearing in some cases */
    
    #main-window:not([tabsintitlebar]) #nav-bar,
    
    #main-window:not([tabsintitlebar]) #navigator-toolbox {
    
    border-top: 0 !important;
    
    box-shadow: unset !important;
    
    }
    
    /* tweaks for fullscreen mode */
    
    #main-window[tabsintitlebar][sizemode="fullscreen"] * #TabsToolbar {
    
    -moz-padding-start: 0px !important;
    
    }
    
    /* tweaks for fullscreen mode */
    
    #main-window[tabsintitlebar][sizemode="fullscreen"]:not([inDOMFullscreen="true"])
    
    .titlebar-buttonbox-container,
    
    #main-window[tabsintitlebar][sizemode="fullscreen"] #toolbar-menubar[autohide="true"] ~
    
    #TabsToolbar .titlebar-buttonbox-container,
    
    #main-window[tabsintitlebar][sizemode="fullscreen"] #navigator-toolbox #PanelUI-button,
    
    #main-window #TabsToolbar #window-controls {
    
    display: none !important;
    
    }
    
    /* hide non-required items */
    
    #TabsToolbar .private-browsing-indicator,
    
    #TabsToolbar #window-controls,
    
    #TabsToolbar *[type="caption-buttons"],
    
    #TabsToolbar *[type="pre-tabs"],
    
    #TabsToolbar *[type="post-tabs"] {
    
    display: none !important;
    
    }
    
    /* Windows 7 extra tweaks */
    
    Media (-moz-os-version: windows-win7) {
    
    Media all and (-moz-windows-compositor) {
    
    #main-window[tabsintitlebar]:not([inDOMFullscreen="true"]) * .titlebar-
    
    buttonbox-container {
    
    display: none !important;
    
    }
    
    }
    
    Media not all and (-moz-windows-compositor) {
    
    #main-window[tabsintitlebar]:not([inDOMFullscreen="true"]) .titlebar-buttonbox-
    
    container {
    
    top: -8px !important;
    
    }
    
    #main-window[tabsintitlebar][sizemode="maximized"]:not
    
    ([inDOMFullscreen="true"]) .titlebar-buttonbox-container {
    
    top: 0px !important;
    
    }
    
    }
    
    }
    
    /* Windows 10 extra tweaks */
    
    Media (-moz-os-version: windows-win10) {
    
    #main-window:not([tabsintitlebar]) menubar > menu:not(:-moz-lwtheme):hover:not
    
    ([disabled="true"]),
    
    #main-window:not([tabsintitlebar]) menubar > menu:not(:-moz-lwtheme)[_moz-
    
    menuactive="true"]:not([disabled="true"]) {
    
    background-color: Highlight !important;
    
    color: HighlightText !important;
    
    }
    
    }
    
    /* disable Mozillas tab jumping nonsense when moving tabs */
    
    #navigator-toolbox[movingtab] > #titlebar > #TabsToolbar {
    
    padding-bottom: unset !important;
    
    }
    
    #navigator-toolbox[movingtab] #tabbrowser-tabs {
    
    padding-bottom: unset !important;
    
    margin-bottom: unset !important;
    
    }
    
    #navigator-toolbox[movingtab] > #nav-bar {
    
    margin-top: unset !important;
    
    }
    Alles anzeigen

    Dann Neustart vom Firefox und testen.

  • Letztes Update: Alles durcheinander

    • Nemi
    • 16. Mai 2023 um 16:53

    /* Tableiste nach unten */

    #titlebar {
    -moz-box-ordinal-group: 100 !important;
    }

    #main-window[tabsintitlebar][sizemode="maximized"] * #titlebar {
    margin-top: -8px !important;
    }

    #main-window[tabsintitlebar]:not([sizemode="fullscreen"]) #nav-bar {
    margin-top: 40px !important;
    }

    #main-window[tabsintitlebar][sizemode="maximized"]:not([sizemode="fullscreen"]) #nav-
    bar {
    margin-top: 6px !important;
    }

    #main-window[tabsintitlebar] #navigator-toolbox,
    #main-window[tabsintitlebar] #nav-bar {
    -moz-window-dragging: drag !important;
    }

    #toolbar-menubar {
    top: 10px !important;
    position: fixed !important;
    width: 100vw !important;
    -moz-window-dragging: drag !important;
    }

    #main-window[tabsintitlebar]:not([inDOMFullscreen="true"]) .titlebar-buttonbox-container {
    position: fixed !important;
    right: 0 !important;
    visibility: visible !important;
    display: block !important;
    }

    #main-window[tabsintitlebar][sizemode="maximized"] #toolbar-menubar {
    top: 0px !important;
    }

    #main-window[tabsintitlebar]:not([inDOMFullscreen="true"]) .titlebar-buttonbox-container,
    #main-window[tabsintitlebar][sizemode="maximized"]:not([inDOMFullscreen="true"])
    .titlebar-buttonbox-container {
    top: 4px !important;
    }

    Media (-moz-os-version:windows-win10), (-moz-os-version:windows-win8), (-moz-os-
    version:windows-win7) {

    #main-window:not([tabsintitlebar]):not([sizemode="fullscreen"]) #nav-bar {
    margin-top: 8px !important;
    }

    #main-window[tabsintitlebar][sizemode="maximized"]:not
    ([sizemode="fullscreen"]) #nav-bar {
    margin-top: 4px !important;
    }
    #main-window[tabsintitlebar][sizemode="maximized"] #toolbar-menubar {
    top: 8px !important;
    }
    #main-window[tabsintitlebar]:not([inDOMFullscreen="true"]) .titlebar-buttonbox-
    container {
    top: 0px !important;
    }
    #main-window[tabsintitlebar][sizemode="maximized"]:not
    ([inDOMFullscreen="true"]) .titlebar-buttonbox-container {
    top: 8px !important;
    }
    }

    #main-window:not([tabsintitlebar]) #nav-bar,
    #main-window:not([tabsintitlebar]) #navigator-toolbox {
    border-top: 0 !important;
    box-shadow: unset !important;
    }

    #main-window[tabsintitlebar][sizemode="fullscreen"] * #TabsToolbar {
    -moz-padding-start: 0px !important;
    }

    #main-window[tabsintitlebar][sizemode="fullscreen"]:not([inDOMFullscreen="true"])
    .titlebar-buttonbox-container,
    #main-window[tabsintitlebar][sizemode="fullscreen"] #toolbar-menubar[autohide="true"] ~
    #TabsToolbar .titlebar-buttonbox-container,
    #main-window[tabsintitlebar][sizemode="fullscreen"] #navigator-toolbox #PanelUI-button,
    #main-window #TabsToolbar #window-controls {
    display: none !important;
    }

    #TabsToolbar .private-browsing-indicator,
    #TabsToolbar #window-controls,
    #TabsToolbar *[type="caption-buttons"],
    #TabsToolbar *[type="pre-tabs"],
    #TabsToolbar *[type="post-tabs"] {
    display: none !important;
    }

    Media (-moz-os-version: windows-win7) {
      Media all and (-moz-windows-compositor) {
    #main-window[tabsintitlebar]:not([inDOMFullscreen="true"]) * .titlebar-
    buttonbox-container {
    display: none !important;
    }
    }
      Media not all and (-moz-windows-compositor) {
    #main-window[tabsintitlebar]:not([inDOMFullscreen="true"]) .titlebar-buttonbox-
    container {
    top: -8px !important;
    }
    #main-window[tabsintitlebar][sizemode="maximized"]:not
    ([inDOMFullscreen="true"]) .titlebar-buttonbox-container {
    top: 0px !important;
    }
    }
    }

    Media (-moz-os-version: windows-win10) {
    #main-window:not([tabsintitlebar]) menubar > menu:not(:-moz-lwtheme):hover:not
    ([disabled="true"]),
    #main-window:not([tabsintitlebar]) menubar > menu:not(:-moz-lwtheme)[_moz-
    menuactive="true"]:not([disabled="true"]) {
    background-color: Highlight !important;
    color: HighlightText !important;
    }
    }

    #navigator-toolbox[movingtab] > #titlebar > #TabsToolbar {
    padding-bottom: unset !important;
    }

    #navigator-toolbox[movingtab] #tabbrowser-tabs {
    padding-bottom: unset !important;
    margin-bottom: unset !important;
    }

    #navigator-toolbox[movingtab] > #nav-bar {
    margin-top: unset !important;
    }

  • Letztes Update: Alles durcheinander

    • Nemi
    • 16. Mai 2023 um 16:42
    Zitat von Road-Runner

    Nutzt Du irgendwelche Scripte oder CSS-Codes? Die können auch die Tabanzeige beeinflussen.

    Ganz ehrlich? Kann sein, ich hab aber keine Ahnung welche oder wo ich diese finde. verwende FF schon seit 15 oder 16 Jahren keine ahnung ob ich da irgendwas mal geändert habe in den CSS codes.

  • Letztes Update: Alles durcheinander

    • Nemi
    • 16. Mai 2023 um 16:35
    Zitat von Road-Runner

    Ist das auch im Fehlerbehebungsmodus so?

    Durch den Modus konnte ich schon einmal 2 Fehler beheben. Fehler 2 und 3. Meine Lesezeichen Symboleiste ist wieder so wie sie sein sollte und meine Erweiterungs Symbole sind auch wieder normal... Warum auch immer.

    Aber meine Tabs sind nur im Fehlerbehebungsmodus dort wo sie sein sollten. Warum? ich hab keine erweiterung die etwas an den Tabs macht? Ich schalte mal alle aus und eins nach dem anderen an.

    Update: das deaktivieren alles Erweiterungen und neustart von FF hat nichts gebracht. Vorschläge?

  • Letztes Update: Alles durcheinander

    • Nemi
    • 16. Mai 2023 um 16:24

    Hi,

    seit dem letztem Update wurde meine gesamte Firefox oberfläche durcheinander gebracht.

    1. Sind meine Tabs aufeinmal soweit oben das ich nicht mehr auf das Menü zugreifen kann. Siehe Bild

    2. Ist meine Lesezeichen Symbolleiste leer obwohl diese gerammelte voll ist. Siehe Bild

    3. Sind die Symbole meine erweiterungen auf einmal Riesig o.0 Siehe Bild

    Was ist da schief gelaufen? Liegt es an mir? oder am Update?

    Vielen Dank für die Hilfe.

    Bilder

    • firefox-problem.png
      • 152,18 kB
      • 1.920 × 563

Unterstütze uns!

Jährlich (2025)

82,4 %

82,4% (535,86 von 650 EUR)

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