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

Beiträge von grisu2099

  • About Seiten mit CSS Codes anpassen

    • grisu2099
    • 27. März 2023 um 17:02
    Zitat von FuchsFan

    Das gefällt mir sehr, habe das erst einmal für mich farbig umgestaltet (ich mag es immer hell, besser für die Augen in meinem Alter). Vielen Dank, grisu2099 , prima Ansatz finde ich. :thumbup:

    Freut mich, wenn es dir gefällt.

    Da ich es eher dunkel mag, hab ich alle "about"-Seiten in dieser Art bearbeitet.

    Hier ging es ja eher um die Positionierung der Buttons...

  • About Seiten mit CSS Codes anpassen

    • grisu2099
    • 26. März 2023 um 22:59

    Ihr könntet mal diesen Code für about:profiles testen (oder das für euch interessante rauskopieren)... ;)

    Da passen die Buttons:

    CSS
    @-moz-document url("about:profiles") {    
    
            /* Ränder für die ganze Seite */
    #body {
        background-color: rgb(40,40,42) !important;
        padding: 50px 100px !important;
        }
    
            /* Erklärung: "Diese Seite…" */
    #owned > div:nth-child(1) {
        border: 2px ridge lightgrey !important;
        border-radius: 10px !important;
        width: 50vw !important;
        padding: 20px !important;
        margin-top: 50px !important;
        }
    
    #body > h1:nth-child(2) {
        font-size: 0px !important; 
        }
            /* Überschrift */
    #body > h1:nth-child(2):after {
        content: 'Meine Profile' !important;
        border: 2px ridge lightgrey !important;
        border-radius: 20px !important; 
        background-color: cadetblue !important;
        color: white !important;
        font: 32px bold !important;
        line-height: 45px !important;
        text-align: center !important;
        min-width: 500px !important;
        max-width: 700px !important;
        height: 50px !important;
        padding: 0 50px !important;
        margin-left: 600px !important;
        }
        
        /* Box "Neu starten" */
    .action-box {
        border: 2px ridge lightgrey !important;
        border-radius: 20px !important;
        background-color: #202023 !important;
        color: black !important;
        min-width: 562px !important;    
        max-width: 562px !important;
        padding: 20px !important;
        margin-top: 95px !important;
        }
    
        /* Label "Neu starten"  */
    .action-box > h3:nth-child(1) {
        border: 2px ridge lightgrey !important;
        border-radius: 20px !important;
        background-color: lightgreen !important;
        text-align: center !important;
        line-height: 40px !important;
        height: 40px !important;
        max-width: 100px !important;
        padding: 0 100px !important;
        margin: 0 auto 20px !important;}
    
        /* entfernt den standardmäßigen Abstand hinter den Buttons */
    #restart-in-safe-mode-button,
    #restart-button,
    button[data-l10n-id="profiles-rename"],
    button[data-l10n-id="profiles-remove"],
    button[data-l10n-id="profiles-set-as-default"],
    button[data-l10n-id="profiles-launch-profile"] {
        margin-inline-end: 0 !important;
        }
    
        /* Buttons "abgesicherter Neustart" und "normaler Neustart" */
    #restart-in-safe-mode-button {
        appearance: none !important;
        border: 2px ridge lightgrey !important;
        border-radius: 10px !important;
        background: #99C0F7 url("file:///F:/FIREFOX-ICONS/Icons/abgesicherter-Neustart.png") no-repeat 10px 7px !important;
        color: black !important;
        padding: 5px 20px 5px 36px !important;
        margin: 0 20px 0 0 !important;
        }
    #restart-in-safe-mode-button:hover {
        appearance: none !important;
        background-color: #1e90ff !important;
        }
    #restart-button {
        appearance: none !important;
        border: 2px ridge lightgrey !important;
        border-radius: 10px !important;
        background: #99C0F7 url("file:///F:/FIREFOX-ICONS/Icons/Neustart.png") no-repeat 10px 7px !important;
        color: black !important;
        padding: 5px 20px 5px 36px !important;
        margin: 0 !important;
        }
    #restart-button:hover {
        appearance: none !important;
        background-color: #1e90ff !important;
        }
    
        /* Button "Neues Profil" */
    #create-button {
        appearance: none !important;
        border: 2px ridge lightgrey !important;
        border-radius: 10px !important;
        background: #99C0F7 url("file:///F:/FIREFOX-ICONS/Icons/Profil-neu.png") no-repeat 10px 7px !important;
        color: black !important;
        padding: 5px 20px 5px 36px !important;
        margin: 25px 0 0 20px !important;
        }
    #create-button:hover {
        appearance: none !important;
        background-color: #1e90ff !important;
        }
    
    
        /* Die Einstellungen ab hier sind für alle Profile */
        /* Rahmen um die Profil-Gruppen */
    #profiles > div { 
        border: 2px ridge lightgrey !important;
        border-radius: 20px !important;
        padding: 20px 100px !important;
        margin-top: 50px !important;
        }
    td {
        background-color: #202023 !important;
        }
        
        /* Label Profilname */
    #profiles > div > h2:nth-child(1) {
        border: 2px ridge lightgrey !important;
        border-radius: 20px !important;
        background-color: lightgreen !important;
        color: black !important;
        text-align: center !important;
        line-height: 40px !important;
        width: 20vw !important;
        height: 40px !important;
        margin: 0 0 20px 50px !important;
        }
    
         /* Erklärung Standardprofil */
    #profiles > div > h3 {
        border: 2px ridge red !important;
        border-radius: 10px !important;
        padding: 20px !important;
        margin: 0 0 20px 0 !important;
        }
    
        /* Tabelle */
    #profiles > div > table {
        border: none !important;
        }
    th, td {
        border: none !important;
        }
    th {
        background-color: #002B57 !important;
        color: white !important;
        }
        /* Feld "Standardprofil" */
    #profiles > div > table > tbody:nth-child(1) > tr:nth-child(1) > th:nth-child(1) {
        border: 2px ridge lightgrey !important;
        border-right: none !important;
        border-radius: 10px 0 0 0 !important;
        padding: 10px 20px !important;
        }
        /* Feld "Wurzelordner" */
    #profiles > div > table > tbody:nth-child(1) > tr:nth-child(2) > th:nth-child(1) {
        border-left: 2px ridge lightgrey !important;
        border-bottom: 2px ridge lightgrey !important;
        padding: 10px 20px !important;
        }
        /* Feld "lokaler Ordner" */
    #profiles > div > table > tbody:nth-child(1) > tr:nth-child(3) > th:nth-child(1) {
        border-left: 2px ridge lightgrey !important;
        border-bottom: 2px ridge lightgrey !important;
        border-radius: 0 0 0 10px !important;
        padding: 10px 20px !important;
        }
        /* Zeilen */
    #profiles > div > table > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) {
        border: 2px ridge lightgrey !important;
        padding: 10px 20px !important;
        }
    #profiles > div > table > tbody:nth-child(1) > tr:nth-child(2) > td:nth-child(2),
    #profiles > div > table > tbody:nth-child(1) > tr:nth-child(3) > td:nth-child(2) {
        border: 2px ridge lightgrey !important;
        border-top: none !important;
        padding: 10px 20px !important;
        }
        /* Ecke oben rechts */
    #profiles > div > table > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(2) {
        border-radius: 0 10px 0 0 !important;
        }
        /* Ecke unten rechts */
    #profiles > div > table > tbody:nth-child(1) > tr:nth-child(3) > td:nth-child(2) {
        border-radius: 0 0 10px 0 !important;
        }
    
        /* Button "Ordner öffnen" -> Wurzelordner */
    #profiles > div:nth-child(n+1) > table > tbody > tr:nth-child(2) > td > button {
        appearance: none !important;
        border: 2px ridge lightgrey !important;
        border-radius: 10px !important;
        background: #99C0F7 url("file:///F:/FIREFOX-ICONS/Icons/Ordner.png") no-repeat 10px 7px !important;
        color: black !important;
        min-height: 34px !important;
        position: absolute !important;
        right: 247px !important;
        padding: 5px 20px 5px 36px !important;
        margin-top: -9px !important;
        }
    #profiles > div:nth-child(n+1) > table > tbody > tr:nth-child(2) > td > button:hover {
        appearance: none !important;
        background-color: #1e90ff !important;
        }
    
        /* Button "Ordner öffnen" -> lokaler Ordner */
    #profiles > div:nth-child(n+1) > table > tbody > tr:last-child > td > button {
        appearance: none !important;
        border: 2px ridge lightgrey !important;
        border-radius: 10px !important;
        background: #99C0F7 url("file:///F:/FIREFOX-ICONS/Icons/Ordner.png") no-repeat 10px 7px !important;
        color: black !important;
        min-height: 34px !important;
        position: absolute !important;
        right: 247px !important;
        padding: 5px 20px 5px 36px !important;
        margin-top: -9px !important;
        }
    #profiles > div:nth-child(n+1) > table > tbody > tr:last-child > td > button:hover {
        appearance: none !important;
        background-color: #1e90ff !important;
        }
    
        /* bestimmt die Höhe der Zeilen bei den Profilordnern */
    #profiles > div:nth-child(-n+20) > table:nth-child(-n+20) > tbody:nth-child(1) > tr:nth-child(-n+20), 
    #profiles > div:nth-child(-n+20) > table:nth-child(-n+20) > tbody:nth-child(1) > tr:nth-child(-n+20) > th:nth-child(-n+20) {
        height: 34px !important;
        }
    
        /* Button "umbenennen" */
    button[data-l10n-id="profiles-rename"] {
        appearance: none !important;
        border: 2px ridge lightgrey !important;
        border-radius: 10px !important;
        background: #99C0F7 url("file:///F:/FIREFOX-ICONS/Icons/umbenennen.png") no-repeat 10px 7px !important;
        color: black !important;
        padding: 5px 20px 5px 36px !important;
        margin: 24px 0 0 20px !important;
        }
    button[data-l10n-id="profiles-rename"]:hover {
        appearance: none !important;
        background-color: #1e90ff !important;
        }
    
        /* Button "löschen" */
    button[data-l10n-id="profiles-remove"] {
        appearance: none !important;
        border: 2px ridge lightgrey !important;
        border-radius: 10px !important;
        background: #99C0F7 url("file:///F:/FIREFOX-ICONS/Icons/Trashcan.png") no-repeat 10px 7px !important;
        color: black !important;
        padding: 5px 20px 5px 36px !important;
        margin: 24px 0 0 20px !important;
        }
    button[data-l10n-id="profiles-remove"]:hover {
        appearance: none !important;
        background-color: #1e90ff !important;
        }
    
        /* Button "Als Standardprofil festlegen" */
    button[data-l10n-id="profiles-set-as-default"] {
        appearance: none !important;
        border: 2px ridge lightgrey !important;
        border-radius: 10px !important;
        background: #99C0F7 url("file:///F:/FIREFOX-ICONS/Icons/Standard.png") no-repeat 10px 7px !important;
        color: black !important;
        position: absolute !important;
        left: 530px !important;
        padding: 5px 20px 5px 36px !important;
        margin-top: 24px !important;
        }
    button[data-l10n-id="profiles-set-as-default"]:hover {
        appearance: none !important;
        background-color: #1e90ff !important;
        }
    
        /* Button "zusätzlich ausführen" */
    button[data-l10n-id="profiles-launch-profile"] {
        appearance: none !important;
        border: 2px ridge lightgrey !important;
        border-radius: 10px !important;
        background: #99C0F7 url("file:///F:/FIREFOX-ICONS/Icons/Profil-neu.png") no-repeat 10px 7px !important;
        color: black !important;
        position: absolute !important;
        left: 799px !important;
        padding: 5px 20px 5px 36px !important;
        margin-top: 24px !important;
        }
    button[data-l10n-id="profiles-launch-profile"]:hover {
        appearance: none !important;
        background-color: #1e90ff !important;
        }
    
        /* Linie unten beim Profil ausblenden */
    #profiles > div > hr {
        display: none !important;
        }
    }
    Alles anzeigen
  • About Seiten mit CSS Codes anpassen

    • grisu2099
    • 26. März 2023 um 19:32

    :D

  • About Seiten mit CSS Codes anpassen

    • grisu2099
    • 26. März 2023 um 19:27
    Zitat von 2002Andreas

    Falschen Profilordner genommen.

    Irgend sowas in der Art vermute ich auch schon die ganze Zeit... 8o

  • About Seiten mit CSS Codes anpassen

    • grisu2099
    • 26. März 2023 um 17:16

    Dann würden die anderen css-Dateien aber auch nicht funktionieren... ;)

  • About Seiten mit CSS Codes anpassen

    • grisu2099
    • 26. März 2023 um 16:55
    Zitat von edvoldi

    Es muss also etwas mit dem Code sein, aber was?

    Der Code funktioniert, das hatte ich vorhin schon getestet... :/

  • About Seiten mit CSS Codes anpassen

    • grisu2099
    • 26. März 2023 um 15:14

    Gerade getestet: Hier funktioniert die css-Datei... :/

  • About Seiten mit CSS Codes anpassen

    • grisu2099
    • 26. März 2023 um 14:52

    Neustart hast du gemacht? :/

  • About Seiten mit CSS Codes anpassen

    • grisu2099
    • 26. März 2023 um 14:38
    Zitat von edvoldi

    Was mache ich falsch?

    Das läßt sich nicht so einfach sagen... ;)

    Zeig mal bitte deine userContent.css und die CSS-Datei für "about-plugins".

  • Kann Autostart von Videos (YT) nicht verhindern

    • grisu2099
    • 26. März 2023 um 13:19
    Zitat von 2002Andreas

    Ansonsten habe ich diese Einstellung pauschal für alle Seiten:

    Ich auch, allerdings mit ein paar Ausnahmen.

  • Kann Autostart von Videos (YT) nicht verhindern

    • grisu2099
    • 26. März 2023 um 13:14

    Siehe meine Ergänzung oben...

  • Kann Autostart von Videos (YT) nicht verhindern

    • grisu2099
    • 26. März 2023 um 13:10

    Es gibt genügend Seiten, auf denen eingebettete Videos sofort beim Laden der Seite loslaufen. Mit dieser Sperre nicht. ;)

    Ergänzung: Wenn ich ein Youtube-Video per Lesezeichen aufrufe, greift die Sperre auch - sprich: kein Autostart...

  • Kann Autostart von Videos (YT) nicht verhindern

    • grisu2099
    • 26. März 2023 um 13:01
    Zitat von Foxxiator

    das ein von der Startseite direkt angeklicktes YT Video trotz Blockade im Fx normal meist sofort los läuft.

    Ist hier auch so - aber für mich auch logisch. Durch den Klick tue ich ja meinen Willen kund, dieses Video ansehen zu wollen... :/

  • Lesezeichen sortieren

    • grisu2099
    • 25. März 2023 um 11:37
    Zitat von 2002Andreas

    Wenn ich die Bibliothek aufrufe, dann ist der Haken immer bei: Unsortiert

    Es wird aber die Sortierung aus dem Lesezeichen-Menü übernommen.

    Heißt, wenn die Lesezeichen im Menü alphabetisch sortiert erscheinen, sind sie das auch bei Aufruf der Bibliothek, auch wenn da "unsortiert" aktiv ist... :/

  • Lesezeichen sortieren

    • grisu2099
    • 25. März 2023 um 11:30

    Das heißt, das ich dort nicht sortiere... ;)

  • Lesezeichen sortieren

    • grisu2099
    • 25. März 2023 um 11:17

    Ich habe den Eröffnungspost so verstanden, daß überhaupt keine Sortierung möglich ist, deswegen mein Hinweis auf das Menü - wo es klappt. ;)

  • Lesezeichen sortieren

    • grisu2099
    • 25. März 2023 um 11:07

    Lesezeichen-Menü - nicht Bibliothek... ;)

  • Lesezeichen sortieren

    • grisu2099
    • 25. März 2023 um 11:02

    Habt ihr die Sortierung mal über das Lesezeichen-Menü versucht - da klappt das bei mir... :/

  • neue Schaltfläche "Einheitliche Erweiterungen"

    • grisu2099
    • 24. März 2023 um 14:22

    Ups, falsches Skript deaktiviert... :whistling: :saint:

  • neue Schaltfläche "Einheitliche Erweiterungen"

    • grisu2099
    • 24. März 2023 um 14:14
    Zitat von Sören Hentzschel

    Ein Verschieben in die Tab- oder Lesezeichensymbolleiste wäre also nicht möglich.

    Aber in die Menüleiste läßt sich der Button verschieben... ;)

Unterstütze uns!

Jährlich (2025)

92,9 %

92,9% (604,17 von 650 EUR)

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