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

Beiträge von Mira_Belle

  • Eine Startpage oder auch ein Speeddialersatz

    • Mira_Belle
    • 29. Januar 2022 um 00:29

    Danke für Deine Mühe.

    Ich habe in den letzten Stunden etwas weiter gemacht.

    Habe das eine oder andere Problem irgendwie in den Griff bekommen.

    Andere sind leider geblieben.

    Ich habe den Code mittlerweile doch sehr verändert.

    Um das Problem mit der mittigen Darstellung zu beheben,

    habe ich ...

    Ach schau:

    CSS
        body {
            background-image: url("Rights.jpg");
        }
    
    
    h6:nth-child(1) {
      margin-top: 0;
      margin-bottom: 0;
    }
        ul.top-sites-list {
            padding: 0
        }    
        .top-sites-list {
            text-align: center;
        }
    
        .top-site-outer {
            padding:  2px 10px 0;
               display: inline-block;
    }
    Alles anzeigen

    Wie Du sehen kannst habe ich das mit den Abständen auch herausgefunden.

    Wobei ich zugeben muss, dass ich die Werte für's padding alle einzel angegeben hatte,

    also -top, -right, -bottom und -left.

    Somit ist das "Feld" jetzt schön mittig und die Abstände stimmen auch.

    Zu 2.

    Da bin ich auf eine ganz andere Lösung gekommen,

    weil die "Bildchen" jedes Mal das Layout zerhauen haben, weil sie sich ja nicht an die "Rahmen" halten wollten.

    Sie standen dann ja über.

    Ich habe es dann wie folgt gelöst.

    HTML
        <ul class="top-sites-list">
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="title">
                    <img src="favicon-16x16.png" alt="heise" width="16" height="16">
                        <span> Heise Online </span>
                    </div>
                    <a class="top-site-button" href="https://www.heise.de/">
                        <div class="heise">                        
                        </div>
                    </a>
                </div>
            </li>
    Alles anzeigen

    und

    CSS
     .heise {
             border-color: #e1e1e170;   
            border-radius: 8px !important;      
            border-width:  1px !important;
            border-style: solid !important;
            background-color: transparent;
            width: 193px;
            height: 125px; 
            background-image: url(preview_01.png);
            background-size: 190px auto;
            background-repeat: no-repeat;
     }
    Alles anzeigen

    Nun kann ich mittels background-size: die Bildgröße anpassen

    und wenn ich es zu groß einstelle, verschwindet der Überhang,

    da ja mit width: und height: das "Loch" definiert ist.

    Was ich noch nicht herausgefunden habe ist, wie ich die "Bildchen" in den "Löchern",

    wenn sehr klein, zentrieren kann.

    Zu dem Abstand ganz oben ist mir dann aus der Not jenes eingefallen!

    HTML
      <body>
    
        <h6>.</h6>

    und

    Code
    h6:nth-child(1) {
      margin-top: 0;
      margin-bottom: 0;
    }

    Ist mit an Sicherheit grenzender Wahrscheinlichkeit nicht die eleganteste Lösung,

    aber ein wenig Kreativität kann ja nicht verboten sein.

    Also, zwei "Probleme" wollen noch gelöst werden.

    1. Habe ich schon angesprochen, die "Bildchen" in die Mitte rücken.

    2. Die Icons. Sie sind nicht mittig zum Text dahinter.

    Gruß

    Mira

    Nachtrag!!

    Yes!

    background-position: center;

  • Eine Startpage oder auch ein Speeddialersatz

    • Mira_Belle
    • 28. Januar 2022 um 15:48
    Zitat von Sören Hentzschel

    Der korrekte Doctype ist:

    <!doctype html>

    Bei dir steht:

    <!d<!doctype html>

    OH 8|

    Das war dann wohl ein Kopierfehler!

    Im "richtigen" HTML"-Code ist es richtig.

    Gruß

    Mira

  • Eine Startpage oder auch ein Speeddialersatz

    • Mira_Belle
    • 28. Januar 2022 um 13:37

    Danke Sören.

    zu 1.

    Verstehe ich nicht. Beim "ersten" Code hast Du da nichts beanstandet. (Also den "Tabellencode meine ich)

    Und auch hier wird es so erklärt.

    => https://developer.mozilla.org/de/docs/Learn/…web/HTML_basics

    zu 2.

    Ich habe es jetzt so gemacht: z.B. <img src="preview_03.png" alt="computerbase" width="50" height="50">

    Und ich glaube, ich habe es verstanden.

    Kann das Image nicht geladen werden, wird es durch den Text ersetzt. Richtig?

    Dazu hätte ich dann aber noch Fragen, aber erst später.

    zu 3.

    Ich habe Deine Anregung zum Anlass genommen und

    mir die Firefoxstartseite zum Beispiel genommen.

    Das waren dann alles Codefragmente, von denen ich nicht wusste, ob sie vonnöten sind.

    Ich habe sie jetzt rausgenommen, Danke.

    Beim Putzen wäre dies mir vielleicht auch aufgefallen, dass die gar nicht gebraucht werden.

    zu letzterem

    Wenn ich das beim li das padding ausklammere, überschneiden sich die "Boxen"

    Deshalb das "padding", denn mit padding-left: 25px rücken sie auseinander.

    Gibt es eine andere Möglichkeit zum Ziel?

    Aber diese "Boxen" stehen auch nicht mittig im Broserfenster.

    Liegt wohl dann daran, dass body standardmäßig ein margin und auch ul standardmäßig ein padding hat.

    Wie kann das ausgehebelt werden?

    Gruß

    Mira

  • Eine Startpage oder auch ein Speeddialersatz

    • Mira_Belle
    • 28. Januar 2022 um 10:59

    Habe etwas aussortiert und aufgeräumt.

    Den CSS-Code noch etwas angepasst und ...

    hänge.

    CSS
    body {
            background-image: url("Rights.jpg");
        }
        
        .top-sites-list {
            text-align: center;
        }
    
        .top-site-outer {
            width: 180px;
            padding-top: 2px;
            padding-left: 25px;     
            border-radius: 8px;
            display: inline-block;
        }
    
        .tile {
            border-color: #e1e1e170;
            border-color: #e1e1e170 !important;       
            border-radius: 8px !important;      
            border-width:  1px !important;
            border-style: solid !important;
            background-color: transparent;
            justify-content: center;
    /*    margin: 0 auto;    */
            height: 125px;
            width: 193px;
            align-items: center;
            display: flex;
        }
    
        .tile:hover {
            background-color: #d2d2d218;
        }
    
        .title {
            padding-top: 5px;
            padding-bottom: 2px;
    /*    padding-left: 20px;    */
            font: caption;
            text-align: center;
            position: relative;
            color: red;
        }
    Alles anzeigen

    und der dazu gehörige HTML-Code

    (Auszug)

    HTML
      </head>
              
      <body>
    
        <ul class="top-sites-list">
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="title">
                        <span dir="auto"> heise </span>
                    </div>
                    <a class="top-site-button" href="https://www.heise.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="top-site-icon rich-icon"> <img src="preview_01.png" width="50" height="50">
                            </div>
                        </div>
                    </a>
                </div>
            </li>
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="title">
                        <span dir="auto"> Winfuture </span>
                    </div>
                    <a class="top-site-button" href="https://winfuture.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="top-site-icon rich-icon"> <img src="preview_02.png" width="50" height="50">
                            </div>
                        </div>
                    </a>
                </div>
            </li>                
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="title">
                        <span dir="auto"> ComputerBase </span>
                    </div>
                    <a class="top-site-button" href="https://www.computerbase.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_03.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>            
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="title">
                        <span dir="auto"> golem </span>
                    </div>
                    <a class="top-site-button" href="https://www.golem.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_04.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>                
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="title">
                        <span dir="auto"> Chip </span>
                        </div>
                    <a class="top-site-button" href="https://www.chip.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_05.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>
        </ul>
    ...
    Alles anzeigen

    Warum ist die Seite nicht mittig?

    Wenn ich

    CSS
        .top-sites-list {
            text-align: center;
        }

    entferne, habe ich dennoch links Abstand.

    Wo wird der denn definiert?


    Als nächstes versuche ich die kleinen Logos vor die "Überschriften zu bekommen.
    Aber so, dass ich sie unabhängig vom Text verschieben kann
    und umgekehrt.
    Denn die "Logos" stehen bei "meiner" anderen Lösung immer höher als der Text.

    Gruß
    Mira

    Nachtrag.

    Drei Möglichkeiten.

    Alles Falsch!

    CSS
        .title {
            padding-top: 5px;
            padding-bottom: 12px;
             padding-left: 50px;
            font: caption;
            color: red;
        }
    
       .top-logo {
            padding-right: 80px;
            padding-bottom: 1px;
        }
    Alles anzeigen
    HTML
        <ul class="top-sites-list">
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="title">
                    <img src="favicon-16x16.png">
                        <span dir="auto"> heise </span>
                    </div>
                    <a class="top-site-button" href="https://www.heise.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="top-site-icon rich-icon"> <img src="preview_01.png" width="50" height="50">
                            </div>
                        </div>
                    </a>
                </div>
            </li>
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="top-logo">
                    <img src="favicons_02.png">
                    </div>
                
                    <div class="title">
                        <span dir="auto"> Winfuture </span>
                    </div>
                    <a class="top-site-button" href="https://winfuture.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="top-site-icon rich-icon"> <img src="preview_02.png" width="50" height="50">
                            </div>
                        </div>
                    </a>
                </div>
            </li>                
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="top-logo">
                    <img src="favicons_03.png">
                    </div>
                    
                    
    
                    <a class="top-site-button" href="https://www.computerbase.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_03.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>
    Alles anzeigen

    ???

    Gruß

    Mira

  • Eine Startpage oder auch ein Speeddialersatz

    • Mira_Belle
    • 28. Januar 2022 um 03:55

    Danke.

    Eure Antworten waren schon recht niederschmetternd! :D

    Und ich dachte mir so, Euch zeige ich's. :saint:

    Ich habe noch einmal von ganz vorne angefangen

    und das ist der Stand der Dinge.

    HTML
    <!d<!doctype html>
    <html lang="de">
      <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Startseite</title>
        
        <style>
    
        body {
            background-image: url("Rights.jpg");
        }
        
    
    
    .top-site-outer {
        width: 180px;
        padding-top: 5px;
        padding-left: 20px;     
        border-radius: 8px;
        display: inline-block;
    }
    
    
    
    .tile {
    
            border-color: #e1e1e170;
                border-color: #e1e1e170 !important;       
                border-radius: 8px !important;      
                border-width:  1px !important;
                border-style: solid !important;
    
        
        background-color: transparent;
        justify-content: center;
    /*    margin: 0 auto;    */
        height: 125px;
        width: 193px;
        align-items: center;
        display: flex;
    }
    
    .tile:hover {
    background-color: #d2d2d218;
    }
    
    
    .top-site-outer .default-icon[data-fallback]::before {
    
        content: attr(data-fallback);
    
    }
    
    .title {
        padding-top: 5px;
        padding-bottom: 2px;
        padding-left: 20px;    
        font: caption;
        text-align: center;
        position: relative;
        color: red;
    }
    
    
    </style>
    
        
        
        
      </head>
              
      <body>
    
        <ul class="top-sites-list">
            <li class="top-site-outer">
                <div class="top-site-inner">
                        <div class="title">
                            <span dir="auto">
                            heise
                            </span>
                        </div>
                        <a class="top-site-button" href="https://www.heise.de/" tabindex="0" draggable="true">
                            <div class="tile" aria-hidden="true">
                                <div class="icon-wrapper" data-fallback="h">
                                    <div class="top-site-icon rich-icon"> <img src="preview_01.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>
            <li class="top-site-outer">
                <div class="top-site-inner">
                        <div class="title">
                            <span dir="auto">
                            Winfuture
                            </span>
                        </div>
                    <a class="top-site-button" href="https://winfuture.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_02.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>                
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="title">
                            <span dir="auto">
                            ComputerBase
                            </span>
                        </div>
                    <a class="top-site-button" href="https://www.computerbase.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_03.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>            
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="title">
                            <span dir="auto">
                            golem
                            </span>
                        </div>
                    <a class="top-site-button" href="https://www.golem.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_04.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>                
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="title">
                            <span dir="auto">
                            Chip
                            </span>
                        </div>
                    <a class="top-site-button" href="https://www.chip.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_05.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>
        </ul>
    
        <ul class="top-sites-list">
            <li class="top-site-outer">
                <div class="top-site-inner">
                        <div class="title">
                            <span dir="auto">
                            heise
                            </span>
                        </div>
                        <a class="top-site-button" href="https://www.heise.de/" tabindex="0" draggable="true">
                            <div class="tile" aria-hidden="true">
                                <div class="icon-wrapper" data-fallback="h">
                                    <div class="top-site-icon rich-icon"> <img src="preview_01.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>
            <li class="top-site-outer">
                <div class="top-site-inner">
                        <div class="title">
                            <span dir="auto">
                            Winfuture
                            </span>
                        </div>
                    <a class="top-site-button" href="https://winfuture.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_02.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>                
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="title">
                            <span dir="auto">
                            ComputerBase
                            </span>
                        </div>
                    <a class="top-site-button" href="https://www.computerbase.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_03.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>            
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="title">
                            <span dir="auto">
                            golem
                            </span>
                        </div>
                    <a class="top-site-button" href="https://www.golem.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_04.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>                
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="title">
                            <span dir="auto">
                            Chip
                            </span>
                        </div>
                    <a class="top-site-button" href="https://www.chip.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_05.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>
        </ul>
    
        <ul class="top-sites-list">
            <li class="top-site-outer">
                <div class="top-site-inner">
                        <div class="title">
                            <span dir="auto">
                            heise
                            </span>
                        </div>
                        <a class="top-site-button" href="https://www.heise.de/" tabindex="0" draggable="true">
                            <div class="tile" aria-hidden="true">
                                <div class="icon-wrapper" data-fallback="h">
                                    <div class="top-site-icon rich-icon"> <img src="preview_01.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>
            <li class="top-site-outer">
                <div class="top-site-inner">
                        <div class="title">
                            <span dir="auto">
                            Winfuture
                            </span>
                        </div>
                    <a class="top-site-button" href="https://winfuture.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_02.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>                
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="title">
                            <span dir="auto">
                            ComputerBase
                            </span>
                        </div>
                    <a class="top-site-button" href="https://www.computerbase.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_03.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>            
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="title">
                            <span dir="auto">
                            golem
                            </span>
                        </div>
                    <a class="top-site-button" href="https://www.golem.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_04.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>                
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="title">
                            <span dir="auto">
                            Chip
                            </span>
                        </div>
                    <a class="top-site-button" href="https://www.chip.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_05.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>
        </ul>
        
        <ul class="top-sites-list">
            <li class="top-site-outer">
                <div class="top-site-inner">
                        <div class="title">
                            <span dir="auto">
                            heise
                            </span>
                        </div>
                        <a class="top-site-button" href="https://www.heise.de/" tabindex="0" draggable="true">
                            <div class="tile" aria-hidden="true">
                                <div class="icon-wrapper" data-fallback="h">
                                    <div class="top-site-icon rich-icon"> <img src="preview_01.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>
            <li class="top-site-outer">
                <div class="top-site-inner">
                        <div class="title">
                            <span dir="auto">
                            Winfuture
                            </span>
                        </div>
                    <a class="top-site-button" href="https://winfuture.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_02.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>                
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="title">
                            <span dir="auto">
                            ComputerBase
                            </span>
                        </div>
                    <a class="top-site-button" href="https://www.computerbase.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_03.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>            
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="title">
                            <span dir="auto">
                            golem
                            </span>
                        </div>
                    <a class="top-site-button" href="https://www.golem.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_04.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>                
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="title">
                            <span dir="auto">
                            Chip
                            </span>
                        </div>
                    <a class="top-site-button" href="https://www.chip.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_05.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>
        </ul>
    
        <ul class="top-sites-list">
            <li class="top-site-outer">
                <div class="top-site-inner">
                        <div class="title">
                            <span dir="auto">
                            heise
                            </span>
                        </div>
                        <a class="top-site-button" href="https://www.heise.de/" tabindex="0" draggable="true">
                            <div class="tile" aria-hidden="true">
                                <div class="icon-wrapper" data-fallback="h">
                                    <div class="top-site-icon rich-icon"> <img src="preview_01.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>
            <li class="top-site-outer">
                <div class="top-site-inner">
                        <div class="title">
                            <span dir="auto">
                            Winfuture
                            </span>
                        </div>
                    <a class="top-site-button" href="https://winfuture.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_02.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>                
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="title">
                            <span dir="auto">
                            ComputerBase
                            </span>
                        </div>
                    <a class="top-site-button" href="https://www.computerbase.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_03.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>            
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="title">
                            <span dir="auto">
                            golem
                            </span>
                        </div>
                    <a class="top-site-button" href="https://www.golem.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_04.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>                
            <li class="top-site-outer">
                <div class="top-site-inner">
                    <div class="title">
                            <span dir="auto">
                            Chip
                            </span>
                        </div>
                    <a class="top-site-button" href="https://www.chip.de/" tabindex="0" draggable="true">
                        <div class="tile" aria-hidden="true">
                            <div class="icon-wrapper" data-fallback="h">
                                <div class="top-site-icon rich-icon"> <img src="preview_05.png" width="50" height="50">
                                </div>
                            </div>
                        </div>
                    </a>
                </div>
            </li>
        </ul>    
    
        
      </body>
    </html>
    Alles anzeigen

    Sieht das besser aus?

    Also ich finde ja, der "Tabellen"-Code ist/war schon übersichtlicher.

    Gruß

    Mira

  • Eine Startpage oder auch ein Speeddialersatz

    • Mira_Belle
    • 27. Januar 2022 um 14:12

    Danke Sören!

    Wie ich schon schrieb, lag das HTML schon lange auf der Platte!

    Das "Grundgerüst" hatte ich dann vor einigen Tage neu erstellt

    und habe dann "die alte Tabelle" eingefügt.

    Hat ja auch irgendwie geklappt!

    Weil aber so einiges nicht wirklich so angezeigt wurde, wie ich es gerne gehabt hätte

    und ich auch nun Eurer Hilfe etwas Erfahrung in CSS gemacht haben,

    wollte ich per CSS "eingreifen".

    Wie ich nun sehe, war dieser Gedanke schon mal nicht schlecht,

    aber ich muss mich jetzt erst einmal noch näher und wieder mit HTML beschäftigen.

    Gruß

    Mira

    Zitat von .DeJaVu

    ... Dann kannst das Ergebnis auf deine Fahne schreiben. Aber vorab schon nach Unterstützung fragen ...

    ... nicht alles nachfragen.

    Ich will mir hier gar nichts "auf die eigene Fahne schreiben"!

    Ich übe! Frage nach. Und jeder der es möchte, kann daraus machen was er/sie will.

    Sörens Antwort hat mir sicherlich mehr gebracht, als Deine.

    Denn er zähle "Ungereimtheiten" auf und machte mir auf NETTE Art klar,

    dass ich da noch ein paar Hausaufgaben machen muss. ;)


    Zitat von .DeJaVu

    Das MDN ist dafür ideal geeignet, ein Pdf für Css hat milupo mal verlinkt.

    milupo

    Kannst Du das pdf hier auch noch einmal verlinken, bitte.

    Kann es nicht finden.

    Gruß

    Mira

  • Eine Startpage oder auch ein Speeddialersatz

    • Mira_Belle
    • 27. Januar 2022 um 12:19
    Zitat von Dharkness

    Könntest Du sie nicht per Zip hier einfügen?

    Oha, ja sicher.

    Favicons.zip

    Previews.zip

    Gruß

    Mira

  • Eine Startpage oder auch ein Speeddialersatz

    • Mira_Belle
    • 27. Januar 2022 um 12:05

    Moin, ja ist mir dann auch noch eingefallen,

    aber es war schon so spät.

    Hier liefere ich die Grafiken nach.

    Der (mein) Hintergrund.

    (Es kann im Prinzip jeder Wallpaper genommen werden)

    Nun die Favicons.

           

           

    Und nun die Previews

          

     

    Gruß

    Mira


    Zitat von .DeJaVu

    Ein guter Anfang, dich! reinzuarbeiten und dann andere, wenn fertig, teilhaben zu lassen.

    Ist das jetzt ernst gemeint und ein Lob,

    oder eher nicht? Ich bin mir da gerade nicht so sicher. :/

    Gruß

    Mira

  • Eine Startpage oder auch ein Speeddialersatz

    • Mira_Belle
    • 26. Januar 2022 um 22:30

    Habe mich schon länger damit befasst und habe mir schwergetan, eine HTML-Seite zu "bauen"!

    Nun habe ich es irgendwie hinbekommen.

    Eine Startpage! Ein kleiner Ersatz für "Speeddeal".

    Ja, ich weiß, hat jetzt nicht unbedingt direkt was mit dem Firefox zu tun,

    aber,

    es kommt auch viel CSS-Code vor,

    und,

    ohne dieses Board und meine "Gehversuche" den Firefox mittels CSS anzupassen,

    würde diese HTML-Leiche immer noch hier bei mir auf der Festplatte dahin siechen.


    Es gibt 25 Kacheln, habe jetzt nur die ersten 10 hier veröffentlicht.

    HTML
    <!doctype html>
    <html lang="de">
      <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Startseite</title>
    
        <style>
    
            body {
                background-image: url("Rights.jpg");
            }
            p:nth-child(1) {
                margin-block: 1px !important;
                text-align: center !important;
                padding-bottom:  2px !important;
                color: #ff9600 !important; 
                font-size: 24px !important; 
                font-weight: bold !important;
        }
    
            th:nth-child(1),
            th:nth-child(3),
            th:nth-child(5),
            th:nth-child(7),
            th:nth-child(9) 
            {
                padding-top:  10px !important;
                padding-bottom:  1px !important;
                border-color: transparent !important;       
                border-radius: 4px !important;      
                border-width:  1px !important;
                border-style: outset !important;
                font-size:15px!important;
                font-weight: normal !important;
                min-width: 190px !important;
                max-width: 2000px !important;            
    
        }
        
            td:nth-child(1),
            td:nth-child(3),
            td:nth-child(5),
            td:nth-child(7),
            td:nth-child(9) 
            {    
                width: 150px !important;
                height: 120px !important;
                border-color: #e1e1e170 !important;       
                border-radius: 8px !important;      
                border-width:  1px !important;
                border-style: solid !important;
    
        }
        
            th:nth-child(2),
            th:nth-child(4),
            th:nth-child(6),
            th:nth-child(8)
        {
                min-width: 5px !important;
                max-width: 5px !important;
    }
    
            img:nth-child(1){
                padding-left: 10px !important;    
                padding-right: 0px !important;    
        }
        
            font:nth-child(2) {
                padding-right: 15px !important;
                padding-left: 10px !important;
                padding-bottom: 2px!important;
        }    
        
            td:nth-child(1):hover,
            td:nth-child(3):hover,
            td:nth-child(5):hover,
            td:nth-child(7):hover,
            td:nth-child(9):hover 
            {    
                background: #d2d2d218 !important;
                border-color: #e1e1e1 !important;       
                border-radius: 8px !important;      
                border-width:  1px !important;
                border-style: solid !important;
    }
     
        </style>
    
      </head>
      <body>
        <p>Miras Startseite</p>
      </body>
      
    <CENTER>
      <table>  
        <thead>
                <tr>
                    <th>    <img src="favicon-16x16.png"> <font color=#FFFFFF> heise online - IT-News</font></th>
              <th>    <img src="head.png" width="10" height="30">                
                    <th>    <img src="favicons_02.png"> <font color=#FFFFFF> Winfuture</font></th>
              <th>    <img src="head.png" width="10" height="30">
                    <th>    <img src="favicons_03.png"> <font color=#FFFFFF> ComputerBase</font></th>
              <th>    <img src="head.png" width="10" height="30">
                    <th>    <img src="favicons_04.png"> <font color=#FFFFFF> Golem.de: IT-News</font></th>
              <th>    <img src="head.png" width="10" height="30">
                    <th>    <img src="favicons_05.png"> <font color=#FFFFFF> Chip.de</font></th>
                </tr>
        </thead>
    
        <tbody>
                <tr>
                    <td>
              <a href="https://www.heise.de/" target="_blank">  <img src="preview_01.png" width="90%" height="100%"> </a> 
            </td>
            <th>    <img src="head.png" width="10" height="30"> </th>   
                    <td>
              <a href="https://winfuture.de/" target="_blank">  <img src="preview_02.png" width="90%" height="100%">  </a>
                    </td>
            <th>    <img src="head.png" width="10" height="30"> </th>
                    <td>    
              <a href="https://www.computerbase.de/" target="_blank">  <img src="preview_03.png" width="90%" height="100%"> </a>
            </td>
            <th>    <img src="head.png" width="10" height="30"> </th>
                    <td>
              <a href="https://www.golem.de/" target="_blank">  <img src="preview_04.png" width="80%" height="55%"> </a>                
                    </td>
            <th>    <img src="head.png" width="10" height="30"> </th>
                    <td>
                <a href="https://www.chip.de/" target="_blank">  <img src="preview_05.png" width="90%" height="100%"> </a>                
                    </td>
                </tr>
        </tbody>
      </table>
    </CENTER>  
      
    <CENTER>
      <table>  
        <thead>
                <tr>
                    <th>    <img src="favicons_06.png"> <font color=#FFFFFF> Aktuelle Nachrichten</font></th>
              <th>    <img src="head.png" width="10" height="30">                
                    <th>    <img src="favicons_07.png"> <font color=#FFFFFF> Supernature Board</font></th>
              <th>    <img src="head.png" width="10" height="30">
                    <th>    <img src="favicons_08.png"> <font color=#FFFFFF> Dr.Windows</font></th>
              <th>    <img src="head.png" width="10" height="30">
                    <th>    <img src="favicons_25.png"> <font color=#FFFFFF> Descmodder.de</font></th>
              <th>    <img src="head.png" width="10" height="30">
                    <th>    <img src="wordpress.png"> <font color=#FFFFFF> BornCity</font></th>
                </tr>
        </thead>
    
        <tbody>
                <tr>
                    <td>
              <a href="https://www.tagesschau.de/" target="_blank">  <img src="preview_06.png" width="90%" height="100%"> </a>
            </td>
            <th>    <img src="head.png" width="10" height="30"> </th>   
                    <td>
              <a href="https://www.supernature-forum.de/forum.php" target="_blank">  <img src="preview_07.png" width="90%" height="50%">  </a>
                    </td>
            <th>    <img src="head.png" width="10" height="30"> </th>
                    <td>    
              <a href="https://www.drwindows.de/content/" target="_blank">  <img src="preview_08.png" width="90%" height="50%"> </a>
            </td>
            <th>    <img src="head.png" width="10" height="30"> </th>
                    <td>
              <a href="https://www.deskmodder.de/blog/" target="_blank">  <img src="preview_25a.png" width="90%" height="60%"> </a>                
                    </td>
            <th>    <img src="head.png" width="10" height="30"> </th>
                    <td>
                <a href="https://www.borncity.com/blog/" target="_blank">  <img src="preview_26.png" width="90%" height="40%"> </a>                
                    </td>
                </tr>
        </tbody>
      </table>
    </CENTER>
    Alles anzeigen

    Wenn da mal jemand drüberschauen kann und mir sagen kann, ob es da etwas gibt,

    das auch leichter oder einfacher umzusetzen geht.

    Oder schöner!

    Gerade das mit den preview-Bildchen und dem Rahmen td habe ich mir irgendwie einfacher vorgestellt.

    Und auch die Icons th:nth-child(1) > img:nth-child(1) sitzen nicht so wirklich an Ihrem Platz.

    Ich habe mir vorgestellt, dass die etwas Rechts eingerückt sind, mit ein wenig Platz dahinter dann der Text (Titel) kommt,

    und wenn der zu lang ist, dann einfach per " ... " abgeschnitten wird.

    Aber das bekomme ich einfach nicht hin.

    Nun ja, aber so im Großen und Ganzen bin ich doch schon damit zufrieden

    und kann jetzt "Speeddeal" von der Platte fegen.

    Gruß

    Mira

    Wenn erlaubt, würde ich dieses "Projekt" hier gerne mit Eurer Hilfe weiter führen.

  • about:logins anpassen

    • Mira_Belle
    • 23. Januar 2022 um 12:25
    Zitat von Boersenfeger

    Nun gut, deine Entscheidung!

    Wenn diese Mailadresse deine Hauptadresse ist mit der du vielleicht auch bei Banken oder anderen Shops angemeldet bist, wäre ein Schritt zum Identitätsklau getan.. BTW: Niemand muss Hinweisen folgen, eine Diskussion darüber braucht man aber auch nicht führen!

    Habe doch die Grafik rausgenommen.

    Und die Frage ist, war erst gemeint!

    Gruß

    Mira

  • about:logins anpassen

    • Mira_Belle
    • 23. Januar 2022 um 12:19
    Zitat von Boersenfeger

    BTW: Du solltest vielleicht aus dem Bild deine Mailadresse entfernen, wenn diese real ist... :)

    Danke, aber was kann passieren, wenn nicht?

    Spam? Es gibt da zwei vorgeschaltete unterschiedliche Filter.

    Und wenn es einfach zu blöd wird, wird dieses Postfach einfach nicht mehr genutzt.

    Ist eh nur ein fast toter Briefkasten.

    Gruß

    Mira

    PS: habe aber vorsichtshalber dennoch die Grafik mal rausgenommen.

  • about:logins anpassen

    • Mira_Belle
    • 22. Januar 2022 um 23:01
    Zitat von Sören Hentzschel

    Du kannst dir bestehendes CSS auch über die Entwicklerwerkzeuge von Firefox ansehen, auch das CSS für :focus. Klicke dazu auf die Schaltfläche :hov.

    Danke Sören,

    dass muss ich mir merken,

    und damit mal etwas herumspielen, damit ich damit auch lerne umzugehen.

    Gruß

    Mira

  • about:logins anpassen

    • Mira_Belle
    • 22. Januar 2022 um 14:28
    Zitat von 2002Andreas

    Meinst du das so bei focus?


    Wenn ja, dann teste bitte mal:

    CSS
    .filter:focus {
        --in-content-focus-outline-color: #0BDCFF !important;
    }

    Ja.

    Der Code war's!

    Danke.

    CSS
        .filter:focus {
            --in-content-focus-outline-color: transparent !important;
            background-color: #e1e1e1 !important;
            color: #000000 !important;
            border-color: #0BDCFF !important;
            border-width:3px !important;
            border-style: outset !important;
            border-radius: 8px !important;
        }

    So ist es so, wie ich es gerne hätte.

    Gruß

    Mira

  • about:logins anpassen

    • Mira_Belle
    • 22. Januar 2022 um 13:46

    Ich habe da noch ein Problem!

    Der aktive Rahmen den ich mit diesem Code generieren,

    CSS
        .filter:focus {
    /*      background-color: #e1e1e1 !important;   */
            background-color: #a1a1a1 !important;
            color: #5b5b66 !important;
            border-color: #0BDCFF !important;
            border-width:3px !important;
            border-style: outset !important;
            border-radius: 8px !important;
        }

    Wird durch einen Blauen überdeckt!

    Das ist der vom FF.

    Wie bekomme ich DEN den weg?

    Gruß

    Mira

  • about:logins anpassen

    • Mira_Belle
    • 21. Januar 2022 um 18:52
    Zitat von 2002Andreas

    Du hast dir dabei auch viel Mühe gegeben :thumbup:

    Danke.

    Ich hoffe, dass auch andere User mit dem Code was anfangen können,

    und ich hab' "Blut" geleckt.

    Gruß

    Mira

    Apropos Mühe, ich habe auch das Design z.T, in den anderen Codes angepasst.

    Es ist ja noch nicht ganz stimmig.

    Die "Einstellungen" werden alles von mir abverlangen.

  • about:logins anpassen

    • Mira_Belle
    • 21. Januar 2022 um 18:39

    Der neue Code für das Suchfeld schaut jetzt so aus:

    CSS
    .filter {
            background-color: #5b5b66 !important;        
            color: #e1e1e1 !important;
            border-color: #e1e1e1 !important;
            border-width:1px !important;
    /*        border-style: outset !important;    */
            border-radius: 8px !important;
    }        
    
    
    .filter:focus {
            background-color: #e1e1e1 !important;
            color: #5b5b66 !important;
            border-color: #0BDCFF !important;
            border-width:3px !important;
            border-style: outset !important;
            border-radius: 8px !important;
    }
    Alles anzeigen

    Ich find's klasse.

    Danke Sören. :thumbup:

    Und der Code für den Button so:

    CSS
        .menu-button {
            background-color: #5b5b66 !important;                /* Hintergrundfarbe des "..."-Button    */  
            color: #e1e1e1 !important;                    /* Textfarbe des "..."-Button    */
            margin-left: 1px !important;
            margin-right: 10px !important;
            margin-top: 3px !important;
            margin-bottom: 5px !important;
            padding-top: 3px!important;
            padding-left: 15px !important;
            padding-right: 15px !important;
            padding-bottom: 3px !important;     
            border-color: #0BDCFF !important;
            border-style: outset !important;
            border-width:3px !important;
        border-radius: 8px !important;
        }    
        
        
        .menu-button:hover {    
            background-color: #e1e1e1 !important;                /* Textfarbe des gehoverten "..."-Button    */
            color: #292c2f !important;                    /* Hintergrundfarbe des gehoverten "..."-Button    */    
        }
    Alles anzeigen

    Danke Andreas. :thumbup:

    Gruß

    Mira

    Mal schauen, was ich als Nächstes anstelle. :/

  • about:logins anpassen

    • Mira_Belle
    • 21. Januar 2022 um 17:23

    Und hier mein zweites Projekt!

    Und der Code dazu.

    CSS
    @-moz-document url("about:logins") {
        
        /*------------------------------*/
        /********** Loginliste **********/
        /*------------------------------*/    
    
        .meta {
            background-color: #292c2f !important;            /* Hintergrundfarbe links in der Kopfzeile der Loginliste    */
            color: #e1e1e1 !important;                        /* Text links in der Kopfzeile der Loginliste    */
        }
        #login-sort {
            color: #e1e1e1 !important;                        /* Text links (Name (A-Z))in der Loginliste    */
        }    
        .login-list-item.selected {
            background-color: #292c2f !important;            /* Hintergrundfarbe des ausgewählten Feldes in der Loginliste    */
            border-inline-start-color: #0BDCFF !important;    /* Linker Rahmen des ausgewählten Feldes in der Loginliste    */
            color: #e1e1e1 !important;                        /* Textfarbe des ausgewählten Feldes in der Loginliste    */
        }
        .login-list-item {
            background-color: #292c2f !important;            /* Hintergrundfarbe der Loginliste    */
        }    
        .login-list-item:hover {
            background: #484B4D !important;                    /* Hintergrundfarbe der Loginliste    */
        }    
        .login-list-item:not(.selected):hover {
            color: #e1e1e1 !important;                        /* Textfarbe in der Loginliste    */
        }
    
        .title{
            color: #e1e1e1 !important;                        /* Textfarbe Überschriften (IPs & Urls)    */
        }
        .favicon-wrapper {
            color: #e1e1e1 !important;                        /* Farbe der kleinen "Weltkugeln"    */
        }
    
    
    
    
    .empty-search-message{
        color: #e1e1e1 !important;
        background: #292c2f !important;
    }
    
    .empty-search-message span{
        color: #e1e1e1 !important;
    }
    
    ol {
        background: #292c2f !important;
    }
    
        /*-----------------------------*/
        /******** Benutzernamen ********/
        /*-----------------------------*/
    
        .username {
            color: #e1e1e1 !important;                        /* Benutzernamen links in der Loginliste    */
        }
    
        /*----------------------------*/
        /********** Suchfeld **********/
        /*----------------------------*/
    
        header {
            background-color: #292c2f !important;            /* Hintergrundfarbe um das Suchfeld    */
        }    
    
    .filter {
            background-color: #e1e1e1 !important;
    color: green !important;        
            border: 1px solid red !important;
    }        
    
    /*
    .filter[type="text"] {
            border: 1px solid red !important;
            color: red !important;
    }
    */
    
    
    
    .empty-search-message  {    
        background-color: #292c2f !important;            /* Hintergrundfarbe der Mesagebox links    */
    }
    
    
        /*-------------------------------*/
        /**** Button "..." ****/
        /*-------------------------------*/
    
        .menu-button {
            background: #5b5b66 !important;                /* Hintergrundfarbe des "..."-Button    */  
            color: #e1e1e1 !important;                    /* Textfarbe des "..."-Button    */
            content: "©" !important;
            font-size: 11px !important;
            margin-left: 1px !important;
            margin-right: 10px !important;
            margin-top: 3px !important;
            margin-bottom: 5px !important;
            padding-top: 3px!important;
            padding-left: 15px !important;
            padding-right: 15px !important;
            padding-bottom: 3px !important;     
            border-color: #0BDCFF !important;
            border-style: outset !important;
            border-width:3px !important;
        border-radius: 8px !important;
        }    
        
        
        .menu-button:hover {    
            background: #e1e1e1 !important;                /* Textfarbe des gehoverten "..."-Button    */
            color: #292c2f !important;                    /* Hintergrundfarbe des gehoverten "..."-Button    */    
        }
        
        
        
        /*-----------------------------*/
        /************ Mitte ************/
        /*-----------------------------*/
    
        .container {
            background-color: #292c2f !important;         /* Hintergrundfarbe des Mittelfeldes    */
        }    
        .field-label {
            color: #e1e1e1 !important;                    /* Text im Mittelfeld */
        }
        .header {
            border-bottom: 2px solid #e1e1e1 !important;    /* Trennlinie (Seperator) */
            color: #e1e1e1 !important;                        /* Farbe der Wltkugel    */
        }
        input[type="text"]:read-only {
        color: #e1e1e1 !important;                        /* Farbe des "Benutzer"    */    
        }
    
        .password-display {
            color: #e1e1e1 !important;                    /* Farbe der "Dots"    */    
        }            
        .reveal-password-checkbox {
            color: #e1e1e1 !important;                    /* Farbe des "Auges"    */    
        }    
        /*-------------------------------*/
        /**** Button "Syncronisieren" ****/
        /*-------------------------------*/
        
    .fxaccounts-extra-text {
        color: #e1e1e1 !important;                        /* Farbe des Textes vor dem Syncronisieren-Button    */
            padding-right: 20px !important;    
        }
        .fxaccounts-enable-button {
            background: #5b5b66 !important;                /* Hintergrundfarbe des Syncronisieren-Button    */  
            color: #e1e1e1 !important;                    /* Textfarbe des Syncronisieren-Button    */
            margin-left: 1px !important;
            margin-right: 10px !important;
            margin-top: 3px !important;
            margin-bottom: 5px !important;
            padding-top: 3px!important;
            padding-left: 20px !important;
            padding-right: 20px !important;
            padding-bottom: 3px !important;     
            border-color: #0BDCFF !important;
            border-style: outset !important;
            border-width:3px !important;
        border-radius: 8px !important;
        }
        .fxaccounts-enable-button:hover {
            background: #e1e1e1 !important;                /* Textfarbe des gehoverten Syncronisieren-Button    */
            color: #292c2f !important;                    /* Hintergrundfarbe des gehoverten Syncronisieren-Button    */    
        }
    
        /*---------------------------*/
        /**** Button "Bearbeiten" ****/
        /*---------------------------*/
        
        .edit-button {
            background: #5b5b66 !important;                /* Hintergrundfarbe des Bearbeiten-Button    */
            color: #e1e1e1 !important;                    /* Textfarbe des Bearbeiten-Button    */    
            margin-left: 1px !important;
            margin-right: 10px !important;
            margin-top: 3px !important;
            margin-bottom: 5px !important;
            padding-top: 3px!important;
            padding-left: 20px !important;
            padding-right: 20px !important;
            padding-bottom: 3px !important;     
            border-color: #0BDCFF !important;
            border-style: outset !important;
            border-width:3px !important;
        border-radius: 8px !important;    
        
    /*    fill: blue !important;    */                        /* Farbe des Bearbeiten-Icon    */    
    
    }
        .edit-button:hover {
            background: #e1e1e1 !important;                /* Textfarbe des gehoverten Syncronisieren-Button    */
            color: #292c2f !important;                    /* Hintergrundfarbe des gehoverten Bearbeiten-Button    */
        }
    
        /*--------------------------*/
        /**** Button "Entfernen" ****/
        /*--------------------------*/
        
        .delete-button {
            background: #5b5b66 !important;                /* Hintergrundfarbe des Entfernen-Button    */         
            color: #e1e1e1 !important;                    /* Textfarbe des Entfernen-Button    */            
            margin-left: 1px !important;
            margin-right: 10px !important;
            margin-top: 3px !important;
            margin-bottom: 5px !important;
            padding-top: 3px!important;
            padding-left: 20px !important;
            padding-right: 20px !important;
            padding-bottom: 3px !important;     
            border-color: #0BDCFF !important;
            border-style: outset !important;
            border-width:3px !important;
        border-radius: 8px !important;
    
    /*    fill: blue !important;    */                        /* Farbe des Entfernen-Button    */
    
    }
        .delete-button:hover {
            background: #e1e1e1 !important;                /* Textfarbe des gehoverten Entfernen-Button    */
            color: #292c2f !important;                    /* Hintergrundfarbe des gehoverten Entfernen-Button    */
        }
    
        /*---------------------------------------*/
        /**** Button "Kopieren Benutzernamen" ****/
        /*---------------------------------------*/
        
        .copy-username-button {
            background: #5b5b66 !important;                /* Hintergrundfarbe des Kopieren-Button    */         
            color: #e1e1e1 !important;                    /* Textfarbe des Kopieren-Button    */            
            margin-left: 1px !important;
            margin-right: 10px !important;
            margin-top: 3px !important;
            margin-bottom: 5px !important;
            padding-top: 3px!important;
            padding-left: 20px !important;
            padding-right: 20px !important;
            padding-bottom: 3px !important;     
            border-color: #0BDCFF !important;
            border-style: outset !important;
            border-width:3px !important;
            border-radius: 8px !important;        
        }
        .copy-username-button:hover {
            background: #e1e1e1 !important;                /* Textfarbe des gehoverten Kopieren-Button    */
            color: #292c2f !important;                    /* Hintergrundfarbe des gehoverten Kopieren-Button    */
        }        
    
        /*----------------------------------*/
        /**** Button "Kopieren Passwort" ****/
        /*----------------------------------*/
        
        .copy-password-button {
            background: #5b5b66 !important;                /* Hintergrundfarbe des Kopieren-Button    */         
            color: #e1e1e1 !important;                    /* Textfarbe des Kopieren-Button    */            
            margin-left: 1px !important;
            margin-right: 10px !important;
            margin-top: 3px !important;
            margin-bottom: 5px !important;
            padding-top: 3px!important;
            padding-left: 20px !important;
            padding-right: 20px !important;
            padding-bottom: 3px !important;     
            border-color: #0BDCFF !important;
            border-style: outset !important;
            border-width:3px !important;
            border-radius: 8px !important;        
        }        
    
        .copy-password-button:hover {
            background: #e1e1e1 !important;                /* Textfarbe des gehoverten Kopieren-Button    */
            color: #292c2f !important;                    /* Hintergrundfarbe des gehoverten Kopieren-Button    */
        }
    
        /*----------------------------------*/
        /******** Meta-Informationen ********/
        /*----------------------------------*/
        
        .meta-info {
            color: #e1e1e1 !important;                    /* Textfarbe der Metainfos    */
        }
    
        /*-----------------------------------*/
        /** Button "Zugansdaten hinzufügen" **/
        /*-----------------------------------*/
    
        .create-login-button {
            background: #5b5b66 !important;                /* Hintergrundfarbe des Zugansdaten hinzufügen-Button*/         
            color: #e1e1e1 !important;                    /* Textfarbe des Zugansdaten hinzufügen-Button*/            
            margin-left: 50px !important;
            margin-right: 50px !important;
            margin-top: 3px !important;
            margin-bottom: 5px !important;
            padding-top: 3px!important;
            padding-left: 5px !important;
            padding-right: 5px !important;
            padding-bottom: 3px !important;     
            border-color: #0BDCFF !important;
            border-style: outset !important;
            border-width:3px !important;
            border-radius: 8px !important;        
        }        
        .create-login-button:hover {
            background: #e1e1e1 !important;                /* Textfarbe des gehoverten Zugansdaten hinzufügen-Button    */
            color: #292c2f !important;                    /* Hintergrundfarbe des gehoverten Zugansdaten hinzufügen-Button*/
        }                
        .create-login-button-container {
            background-color: #292c2f !important;        /* Hintergrundfarbe um den Button    */
        }
        .create-login-button-container:hover {
            background: #292c2f !important;                /* Hintergrundfarbe um den gehoverten Button    */
        }
    
        /*------------------------------*/
        /*** Button zur Url, bzw Page ***/
        /*------------------------------*/
    
        .origin-input{
            background: #5b5b66 !important;
            color: #e1e1e1 !important;
            margin-left: 1px !important;
            margin-right: 10px !important;
            margin-top: 3px !important;
            margin-bottom: 5px !important;
            padding-top: 3px!important;
            padding-left: 20px !important;
            padding-right: 20px !important;
            padding-bottom: 3px !important;     
            border-color: #0BDCFF !important;
            border-style: outset !important;
            border-width:3px !important;
            border-radius:8px!important;
        }
        .origin-input:hover{
            background: #e1e1e1 !important;
            color: #292c2f !important;   
        }
        a:hover {
            text-decoration: none !important;        /* Links nicht unterstichen    */
        }
     
    }
    Alles anzeigen

    Wie unschwer zu erkennen bin ich nicht fertig.

    Das liegt daran, dass ich mal wieder nicht weiter komme und die richtigen "Zeiger" finde.

    Deshalb erbitte ich mir Hilfe.

    Da wäre das Suchfeld!

    Im "aktiven" Zustand ist der Ramen blau! Dazu habe ich den Eintrag nicht gefunden.

    Im "passiven" Zustand ist der Ramen rot und auch nur 1px "dick".

    Da zu hat dieser Code beigetragen.

    CSS
    .filter {
            border: 1px solid red !important;
    }

    Ich habe es mit .filter:active versucht, mit .filter:hover:active,

    hat nichts genutzt.

    Auch möchte ich die Hintergrundfarbe und die Textfarbe ändern,

    und zwar in beiden Zuständen unterschiedlich!

    Die andere Baustelle ist der Button ganz oben rechts!

    Da wird der Text, das sind nur drei Punkte, einfach nicht dargestellt!

    Warum?

    Dann kam mir eine ganz verwegene Idee!

    Kann man diesen nicht vorhandenen Text nicht durch das "Hamburgermenüsymbol" ersetzen?

    UND jeweils einmal hell und gehovert dunkel einfügen?

    Gruß

    Mira

  • about:preferences anpassen

    • Mira_Belle
    • 18. Januar 2022 um 14:29
    Zitat von 2002Andreas

    Kannst du auch sein ;)

    Das solltest du aber bitte mal genauer überprüfen:

    Jeweils gleiche Einträge, aber mit unterschiedlichen Farben.


    Und damit sehe ich keine Funktion:

    :root {

    color: #e1e1e1 !important;

    Alles anzeigen

    Danke für die Korrektur.

    Ist berichtigt.

    Zitat von Dharkness

    Da ↓ sind für die Farbwerte 8 statt 6 stellen.

    Stimmt. Habe die Farben mit Visual Studio Code ermittelt

    und sie sollten transparent sein.

    Daher die etwas komischen Werte.

    Gruß

    Mira

  • about:preferences anpassen

    • Mira_Belle
    • 17. Januar 2022 um 22:44

    TADA, bumbumbumbumbum

    CSS
    @-moz-document url("about:preferences") {
    
        /* Hintergrund  */
        html {
            background-color: #292c2f !important;
        }
        /* Bereich um Suchfeld  */
        .sticky-container {
            background-color: transparent !important;
        }
        /*  Suchfeld  */
        #searchInput {
            background-color: #292c2f !important;                        /*  Hintergrund */
            color: #e1e1e1 !important;                                    /*  Text  */
        }
        /* Textfarbe */
        #mainPrefPane {
            color: #e1e1e1!important;
        }
        /*----------------------------------*/
        /********** Auswahlfeld  **********/
        /*----------------------------------*/
    
        /* Augewähles Element in Auswahlfeld (Icon) */
        .category[selected] > .category-icon, .category.selected > .category-icon {
            color: #0bdcff !important;
        }
        /* Augewähles Element in Auswahlfeld (Text) */
        .category[selected] > .category-name, .category.selected > .category-name{
            color: #0bdcff !important;
        }
        /* Augewähles Element in Auswahlfeld (gedrückt) */
        #categories > .category:hover:active {
            background-color: #414446 !important;
        }
        /* Text im Auswahlfeld  */
        .category-name {
            color: #e1e1e1 !important;
        }
        /* Icons im Auswahlfeld  */
        .category-icon {
            color: #e1e1e1 !important;
        }
        /*-------------------------------*/
        /********** Checkboxen  **********/
        /*-------------------------------*/
        
        #chooseFolder,
        #downloadFolder,
        #otherInstanceHandlingUpdates > button{
            opacity: 1 !important;
        }
        .checkbox-check {
            color: #e1e1e1 !important;                                    /*  Rahmen  */
        }    
        .checkbox-check[checked] {
            background-color: #0bdcff !important;                        /*  Hintergrund aktiv */
            border-color: transparent !important;                        /*  Rahmen aktiv  */
            fill: black !important;                                        /*  Häkchen  */
        }
    
        :root {
            color: #e1e1e1 !important;
            --in-content-button-background: #414446 !important;            /* Hintergrund Felder  */
            --in-content-button-text-color: #e1e1e1 !important;            /* Textfarbe Felder  */
            --in-content-button-background-hover: #484B4D !important;    /* Hintergrund Felder hover  */
            --in-content-button-text-color-hover: #e1e1e1 !important;    /* Textfarbe Felder hover  */
            --in-content-text-color: #e1e1e1 !important;                 /* Textfarbe Überschriften */
    	--in-content-button-background-active: #414446  !important;
    
            --in-content-primary-button-background: #e1e1e1 !important;
            --in-content-box-background: #414446 !important;
    
            --in-content-item-selected:#5a5d5e !important;
            --in-content-item-selected-text:#e1e1e1 !important;
    
            --in-content-primary-button-background: #0bdcff !important;                /* Button */
            --in-content-primary-button-text-color: #e1e1e1 !important;                /* Button (mitte) */
            --in-content-primary-button-background-active: red !important;            /* Button aktiv  */
    
            --in-content-focus-outline-color: #e1e1e1 !important;                    /* Rahmen um Suchfeld */
    
            --in-content-item-hover: #5a5d5e !important;                /* Reiter hover */
            --in-content-item-hover-text: #e1e1e1 !important;
            --in-content-item-selected:#292c2f !important;                /* Reiter aktiv */
            --in-content-item-selected-text:#e1e1e1 !important;
        }
        /*-----------------------------*/
        /************ Links ************/
        /*-----------------------------*/
        
        .text-link {
            color: #0bdcff !important; 
            text-decoration: none !important; 
        }
        .text-link:hover {
            color: #0990a8 !important;
            text-decoration: underline !important; 
        }
        .text-link:hover:active {
            color: #054652 !important;
            text-decoration: underline !important; 
        }
        /*Rahmen um die Buttons */
        radio[focused="true"] > .radio-check {
            outline: none !important;
        }
        /*Text in Schaltflächen */
        button {
            color: #e1e1e1 !important;
        } 
        /* Infobox Dateitypen */
        .info-box-container {
            background-color: #414446 !important;
        }
        /*------------------------------------------------*/
        /**** Auswahlfeld in Datenschutz & Sicherheit **** /
        /*------------------------------------------------*/
    
        .content-blocking-category.selected {
            background-color: #e1e1e13f !important;
        }
        .content-blocking-category.selected {
            border-color: #e1e1e1 !important;
        }
        .content-blocking-category.selected .content-blocking-warning {
            background-color: #e1e1e15b !important;
        }
    
    }
    Alles anzeigen

    Ich bin schon ein klein wenig stolz.

    Gruß

    Mira

  • about:preferences anpassen

    • Mira_Belle
    • 17. Januar 2022 um 20:02

    Habe es hinbekommen.

    Habe so lange "Strg+Umschalt+Alt+I" gedrückt gehalten,

    bist das Fenster öffnete, gleich die Fehlermeldungen ALLE gelöscht.

    Nun geht es wieder.

    Aber Danke für den oben genannten Tipp, den muss ich mir merken.

    Habe auch etwas weiter rumgebastelt und kann sagen,

    so gut wie fertig :)

    Noch ein wenig putzen, Farben anpassen und dokumentieren.

    Gruß

    Mira

    PS: Und nochmals Danke an ALLE, die mir weitergeholfen haben.

Unterstütze uns!

Jährlich (2025)

105,8 %

105,8% (687,41 von 650 EUR)

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