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

Beiträge von omar1979

  • Tableiste Änderungen

    • omar1979
    • 7. September 2022 um 14:50
    Zitat von 2002Andreas

    Du hast das neue Script installiert?

    Da war ich nicht da und hab es nicht gesehen. Danke 2002Andreas aber es hat ja mehrere scripts welcher von denen wohl zu meins passt. :/

  • Tableiste Änderungen

    • omar1979
    • 7. September 2022 um 14:42

    Hallo allen..

    Wenn man zu viel Tabs offen hat, dann sieht man ja rechts und links von den Tabs jeweils ein Pfeil nach Links und eins nach Rechts. Mit dieser Code ins CSSshadow hat es mal geklappt.

    CSS
    /* TabLeiste Pfeile (nach Links und nach Rechts) ändern */
    #tabbrowser-arrowscrollbox::part(scrollbutton-up) {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/arrow-left.png") !important;
      transform: scale(0.9, 0.9) !important;
      background-color: blue;
      margin-top: -6px !important;  
      margin-bottom: -1px !important;
      padding-top: 2px; 
      padding-bottom: 1px
    }
    #tabbrowser-arrowscrollbox::part(scrollbutton-down) {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/arrow-left.png") !important;
      transform: scale(0.9, 0.9) !important;
      background-color: blue;
      margin-top: -6px !important;  
      margin-bottom: -1px !important;
      padding-top: 2px; 
      padding-bottom: 1px
    }
    #tabbrowser-arrowscrollbox::part(scrollbutton-up):hover, 
    #tabbrowser-arrowscrollbox::part(scrollbutton-down):hover {
      background-color: red !important;
    }
    Alles anzeigen

    Aber jetzt funktioniert es nicht mehr.

    Hat es was geändert? Wenn ich es mit Browser-Werkzeuge Stillbearbeitung teste, funkt die Code aber sonst nicht.

  • Navigations-Leiste Anpassungen

    • omar1979
    • 7. September 2022 um 11:06
    Zitat von 2002Andreas

    Brauchst doch nur die ID zu tauschen jeweils.

    Habs es schon erledigt es ist aber im oberen Eintrag von mir erschienen.

    Danke dir.

    Hier noch meine ganze Navi- und Url-leiste css-code.

    Ich hoffe hab nichts vergessen. :)

    Falls jemand es testet und etwas merkt das vergessengegangen ist, kann es mir gerne melden.

    Besten Dank.

    Und so sieht es aus:

    CSS
    @-moz-document url-prefix(chrome://browser/content/browser.xhtml) {
    
    /* Navigation-Leiste Farbe ändern */
    #nav-bar {
      background-color: red !important;
      color: white !important;
    }
      
    /* Adress-Bar Farbe ändern */
    #urlbar-input-container {
      background-color: green !important;
      color: white !important;
      border: 3px yellow !important;
      border-style: dotted !important;
    }
      
    /*Back-, Forward und Reload-Button-Icon ändern*/
    #back-button {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/arbackN.png") !important;
      transform: scale(1.4, 1.4) !important;
    }
    #reload-button {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/arfresh12.png") !important;
      transform: scale(1.4, 1.4) !important;
      margin-bottom: 3px !important;
    }
    #stop-button {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/ajax-loaderRot2.gif") !important;
      transform: scale(1.4, 1.4) !important;
    }
    #forward-button {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/arforwardN.png") !important;
      transform: scale(1.4, 1.4) !important;
    }
    #stop-button .toolbarbutton-animatable-image,
    #reload-button .toolbarbutton-animatable-image {
      display: none !important;
    } 
    #back-button:hover,
    #reload-button:hover,
    #stop-button:hover,
    #forward-button:hover{
      --toolbarbutton-hover-background: green !important;
    }
    
    /* Url-bar Such-Icon ändern */
    #urlbar:not(.searchButton) > #urlbar-input-container > #identity-box[pageproxystate="invalid"] #identity-icon {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/suchen.png") !important;
    }
      
    /* Scripte zur Aktivitätsverfolgung Icon ändern */
    #urlbar-input-container[pageproxystate="valid"] > #tracking-protection-icon-container > #tracking-protection-icon-box > #tracking-protection-icon {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/protect.png") !important;
    }
    #urlbar-input-container[pageproxystate="valid"] > #tracking-protection-icon-container > #tracking-protection-icon-box:not([hasException])[active] > #tracking-protection-icon {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/protectNo.png") !important;
    }
    #tracking-protection-icon-container:hover {
      background-color: blue !important; 
    }
    
    /* WebSeite Infos Icon ändern */
    #identity-box[pageproxystate="valid"].verifiedDomain #identity-icon, #identity-box[pageproxystate="valid"].mixedActiveBlocked #identity-icon {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/security.png") !important;
    }
    #identity-box[pageproxystate="valid"].notSecure #identity-icon, #identity-box[pageproxystate="valid"].mixedActiveContent #identity-icon, #identity-box[pageproxystate="valid"].httpsOnlyErrorPage #identity-icon {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/securityNo.png") !important;
    }
    #identity-icon-box:hover {
      background-color: blue !important;
    }
    
    /* Berechtigungen Icon ändern */
    .popup-notification-icon[popupid="web-notifications"], .desktop-notification-icon {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/PermissionBlockNo.png") !important;
      transform: scale(1.0, 1.3) !important;
    }
    #permissions-granted-icon {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/permissions.png") !important;
      transform: scale(1.0, 1.3) !important;
    }
    .desktop-notification-icon.blocked-permission-icon {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/PermissionBlock.png") !important;
      transform: scale(1.0, 1.0) !important;
    }
    #identity-permission-box:hover {
      background-color: blue !important; 
    }
    #blocked-permissions-container > .blocked-permission-icon {
      color: yellow !important;
      transform: scale(1.0, 1.1) !important;
    }
    
      
    /* Lese-Ansicht einschalten Icon ist weiss */
    #reader-mode-button:not(readeractive) > .urlbar-icon {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/reader-modeNo.png") !important;
      transform: scale(1.6, 1.6) !important;
    }
    /* Lese-Ansicht ausschalten Icon ist gelb */
    #reader-mode-button[readeractive] > .urlbar-icon {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/reader-mode.png") !important;
      transform: scale(1.6, 1.6) !important;
    }
    #reader-mode-button[class="urlbar-page-action"]:hover {
      background-color: blue !important;
    }
    
    /* Lesezeichen hinzufügen Icon weiss */
    #star-button {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/FavNo1.png") !important;
      transform: scale(1.4, 1.6) !important;
    }
    /* Lesezeichen bearbeiten Icon gelb */
    #star-button[starred="true"] {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/Fav.png") !important;
      transform: scale(1.4, 1.6) !important;
    }
    #star-button-box:hover {
      background-color: blue !important;
    }
    
    /* Hamburger-Menü Icon ändern */
    #PanelUI-menu-button .toolbarbutton-icon {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/armenu.png") !important;
      transform: scale(1.3, 1.3) !important;
    }
    #PanelUI-menu-button {
      --toolbarbutton-hover-background: green !important;
    }
    Alles anzeigen
  • Navigations-Leiste Anpassungen

    • omar1979
    • 7. September 2022 um 10:50
    Zitat von 2002Andreas

    Wenn ja, dann teste bitte:

    Tiptop danke 2002Andreas

    Jetzt fehlen noch der Hover für Back-, Reload- und Forward-Button. :)


    Erledigt.

    Thx

  • Navigations-Leiste Anpassungen

    • omar1979
    • 7. September 2022 um 07:55

    Hallo allen..

    Ich brauch wiedermal eure Hilfe. :)

    Hab jetzt nach meiner Ansicht, mein CSS für die Nav-bar und Url-bar fertig.

    Nur wenn ich beim HamburgerMenü-Button, Back-Stop-Forward-Buttons die Hoverfarbe ändere funkt es nicht.

    Sieht so aus, dass ich aus der Übung bin. :)

    So sieht dann der Hover aus: also nicht ganz grün sondern so glänzend.

    Und hier meine Code:

    CSS
    @-moz-document url-prefix(chrome://browser/content/browser.xhtml) {
    
    /* Navigation-Leiste Farbe ändern */
    #nav-bar {
      background-color: red !important;
      color: white !important;
    }
      
    /* Adress-Bar Farbe ändern */
    #urlbar-input-container {
      background-color: green !important;
      color: white !important;
      border: 3px yellow !important;
      border-style: dotted !important;
    }
      
    /*Back-, Forward und Reload-Button-Icon ändern*/
    #back-button {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/arbackN.png") !important;
      transform: scale(1.4, 1.4) !important;
    }
    #reload-button {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/arfresh12.png") !important;
      transform: scale(1.4, 1.4) !important;
      margin-bottom: 3px !important;
    }
    #stop-button {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/ajax-loaderRot2.gif") !important;
      transform: scale(1.4, 1.4) !important;
    }
    #forward-button {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/arforwardN.png") !important;
      transform: scale(1.4, 1.4) !important;
    }
    #stop-button .toolbarbutton-animatable-image,
    #reload-button .toolbarbutton-animatable-image {
      display: none !important;
    } 
    
    /* Url-bar Such-Icon ändern */
    #urlbar:not(.searchButton) > #urlbar-input-container > #identity-box[pageproxystate="invalid"] #identity-icon {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/suchen.png") !important;
    }
      
    /* Scripte zur Aktivitätsverfolgung Icon ändern */
    #urlbar-input-container[pageproxystate="valid"] > #tracking-protection-icon-container > #tracking-protection-icon-box > #tracking-protection-icon {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/protect.png") !important;
    }
    #urlbar-input-container[pageproxystate="valid"] > #tracking-protection-icon-container > #tracking-protection-icon-box:not([hasException])[active] > #tracking-protection-icon {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/protectNo.png") !important;
    }
    #tracking-protection-icon-container:hover {
      background-color: blue !important; 
    }
    
    /* WebSeite Infos Icon ändern */
    #identity-box[pageproxystate="valid"].verifiedDomain #identity-icon, #identity-box[pageproxystate="valid"].mixedActiveBlocked #identity-icon {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/security.png") !important;
    }
    #identity-box[pageproxystate="valid"].notSecure #identity-icon, #identity-box[pageproxystate="valid"].mixedActiveContent #identity-icon, #identity-box[pageproxystate="valid"].httpsOnlyErrorPage #identity-icon {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/securityNo.png") !important;
    }
    #identity-icon-box:hover {
      background-color: blue !important;
    }
    
    /* Berechtigungen Icon ändern */
    .popup-notification-icon[popupid="web-notifications"], .desktop-notification-icon {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/PermissionBlockNo.png") !important;
      transform: scale(1.0, 1.3) !important;
    }
    #permissions-granted-icon {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/permissions.png") !important;
      transform: scale(1.0, 1.3) !important;
    }
    .desktop-notification-icon.blocked-permission-icon {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/PermissionBlock.png") !important;
      transform: scale(1.0, 1.0) !important;
    }
    #identity-permission-box:hover {
      background-color: blue !important; 
    }
    #blocked-permissions-container > .blocked-permission-icon {
      color: yellow !important;
      transform: scale(1.0, 1.1) !important;
    }
    
      
    /* Lese-Ansicht einschalten Icon ist weiss */
    #reader-mode-button:not(readeractive) > .urlbar-icon {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/reader-modeNo.png") !important;
      transform: scale(1.6, 1.6) !important;
    }
    /* Lese-Ansicht ausschalten Icon ist gelb */
    #reader-mode-button[readeractive] > .urlbar-icon {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/reader-mode.png") !important;
      transform: scale(1.6, 1.6) !important;
    }
    #reader-mode-button[class="urlbar-page-action"]:hover {
      background-color: blue !important;
    }
    
    /* Lesezeichen hinzufügen Icon weiss */
    #star-button {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/FavNo1.png") !important;
      transform: scale(1.4, 1.6) !important;
    }
    /* Lesezeichen bearbeiten Icon gelb */
    #star-button[starred="true"] {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/Fav.png") !important;
      transform: scale(1.4, 1.6) !important;
    }
    #star-button-box:hover {
      background-color: blue !important;
    }
    
    /* Hamburger-Menü Icon ändern */
    #PanelUI-menu-button {
      list-style-image: url("file:///C:/Users/askas/AppData/Roaming/Mozilla/Firefox/Profiles/use9514s.default-release/chrome/Icons/armenu.png") !important;
      transform: scale(1.6, 1.6) !important;
    }
    #PanelUI-button:hover {
      background-color: green !important;
    }
    Alles anzeigen

    Danke im Voraus für eure Hilfe.

  • scrollbars.uc.js anpassen - geschafft und erledigt!

    • omar1979
    • 3. September 2022 um 16:46
    Zitat von 2002Andreas

    Sind im Beitrag Nr. 1

    Dankeschön. Hab das garnicht bemerkt. :)

  • scrollbars.uc.js anpassen - geschafft und erledigt!

    • omar1979
    • 3. September 2022 um 16:33

    Hallo allen..

    ich wollte grad das Javascript von Mira_Belle im Beitrag:

    • #67

    testen. Hat jemand evtl. die Icons: Chevron-up,_12.svg, Chevron-down,_12.svg, Chevron-right,_12.svg und Chevron-left,_12.svg in der Hand❓ Würde mich sehr freuen, wenn jemand sie hier zum Download bereitstellen könnte. Besten Dank im Voraus.

  • Möglich Lesezeichen auf eine 2.te Zusatzleiste verschieben?

    • omar1979
    • 3. September 2022 um 15:21

    Danke. 👍

    Aber falls jemand eine Lösung kennt für das was ich wollte bin ich bereit hie und wieder mal zu testen. 😊

  • Möglich Lesezeichen auf eine 2.te Zusatzleiste verschieben?

    • omar1979
    • 3. September 2022 um 15:07
    Zitat von 2002Andreas

    Lass das also in Zukunft bitte

    Tut mir Leid lieber Andreas war damals sehr genervt.

    Darum war ich auch so lange weg.

    Nun ja altes Thema wollte mich nur bei dir entschuldigen.

  • Extra Config Menü Icon überall verschiebbar machen?

    • omar1979
    • 29. Dezember 2021 um 11:39

    Ich bedanke mich bei euch vom ganzen Herzen für die ausführlichen Erklärungen.

    Habe es jetzt verstanden und werde es bei Gelegenheit ausführen.

    :thumbup: :thumbup: :thumbup: :thumbup: :thumbup: :thumbup: :thumbup: :thumbup:

  • Link anzeigen unten Links

    • omar1979
    • 28. Dezember 2021 um 19:02
    Zitat von Maddmewes

    Kann ich das irgendwie deaktivieren?

    Nicht das ich es wüsste, aber evtl. weiss es jemand Andere besser als ich.

  • Extra Config Menü Icon überall verschiebbar machen?

    • omar1979
    • 28. Dezember 2021 um 18:58
    Zitat von aborix

    Man kann auch alle Skripte für zusätzliche Leisten vor allen anderen Skripten ausführen lassen, was vielleicht übersichtlicher ist.

    Sorry aber

  • Link anzeigen unten Links

    • omar1979
    • 28. Dezember 2021 um 18:50

    Das ist bei allen so. :)

  • Extra Config Menü Icon überall verschiebbar machen?

    • omar1979
    • 28. Dezember 2021 um 18:46

    Ist es so, dass die Scripte (wenn man mit dem Namen eines vorherigen Scriptes) speichert, die Einstellungen von dem Vorgänger übernehmen aborix ?


    Und wird es funktionieren, wenn man es jetzt wieder nach dem Original-Namen umbenennt? :)

  • Extra Config Menü Icon überall verschiebbar machen?

    • omar1979
    • 28. Dezember 2021 um 18:42
    Zitat von aborix

    Lasst das Skript testweise als letztes ausgeführt werden. Umbenennen in z.B. zzzz_extras_config_menu.uc.js sollte dafür genügen.

    Super! Danke dir.

  • Extra Config Menü Icon überall verschiebbar machen?

    • omar1979
    • 28. Dezember 2021 um 18:26

    Alles was ich mache ist umsonst.


    Zitat von FuchsFan

    Dann nimm doch mal bitte das Script und teste damit.

    Funktioniert leider nicht.

    Ist auf der Zusatzleiste.


    Auf die Lesezeichen-Symbolleiste verschoben..

    Wieder kein Icon.

  • Extra Config Menü Icon überall verschiebbar machen?

    • omar1979
    • 28. Dezember 2021 um 18:14

    Habe es auch geändert, funkt immernochnicht..

    Code
    list-style-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAeUlEQVR42q1T2wqAIBRbIUUEPvr/f1p5qRMxY2bCODrGzrxhA9ADW5wDmA+MqRrnC+dvXIgcM4jCIVXjcjfEqeEPA8cMQjEJgsHKDGpieQstBm0JHrrpSiB2o4fdY+BeEzBxqmoC4W343gRL7RrZX2AJbAtCXCHBR+xZdt1IUy88DgAAAABJRU5ErkJggg==") \
  • Extra Config Menü Icon überall verschiebbar machen?

    • omar1979
    • 28. Dezember 2021 um 17:47
    Zitat von 2002Andreas

    Wenn dann nur er

    Yes.

  • Extra Config Menü Icon überall verschiebbar machen?

    • omar1979
    • 28. Dezember 2021 um 17:44
    Zitat von 2002Andreas

    Steht bei mir auch so drin, und ich habe daran auch nichts verändert.

    Naja.. Ich wart mal was aborix dazu sagt. Evtl. findet er eine Lösung.

  • Extra Config Menü Icon überall verschiebbar machen?

    • omar1979
    • 28. Dezember 2021 um 17:40
    Zitat von Endor

    ich habe die Schaltfläche in der Menüleiste. Da ist sie auch noch nach dem Neustart

    von Firefox.

    Danke dir. Ich hab Sogar beim warpmenuto helpMenu eingetragen funkt nicht.

Unterstütze uns!

Jährlich (2026)

12,3 %

12,3% (80,00 von 650 EUR)

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