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

Beiträge von Endor

  • Firefox Menü, Hintergrundfarbe ändern

    • Endor
    • 21. August 2020 um 11:13

    Hallo zusammen.

    In Firefox verwende ich dieses Script, zum anpassen der Tooltips:

    CSS
    // ==UserScript==
    // @name tooltipStyling.uc.js
    // @description tooltipStyling
    // @include *
    // ==/UserScript==
    (function () {
    let sss = Components.classes["@mozilla.org/content/style-sheet-service;1"].getService(Components.interfaces.nsIStyleSheetService);
    
    
    let uri = Services.io.newURI("data:text/css;charset=utf-8," + encodeURIComponent(`
    tooltip,
    #tooltip,
    .tooltip,
    #aHTMLTooltip {
    
    
    -moz-appearance: none !important;
    background-color: #f7f2bd !important;
    color: #000000 !important;
    padding: 2px 12px !important;
    }
    `), null, null);
    
    
    sss.loadAndRegisterSheet(uri, sss.AGENT_SHEET);
    })();
    Alles anzeigen

    Damit wird hier die Hintergrundfarbe gelb und der Text schwarz.
    Kann oben entsprechend angepasst werden.

    Mfg.
    Endor

  • Nightly v.81 - Script für mehrzeilige Tableiste

    • Endor
    • 13. August 2020 um 17:39

    Hallo FuchsFan

    Entschuldige bitte, dass ich im anderen Thread nicht geantwortet

    habe. Ich habe die Scripte nur gefunden und übersetzt. Anschließend

    bei mir hoch geladen. Deine Änderung oben werde ich auch mal testen.
    Danke für die Info.

    Mfg.
    Endor

  • mehzeilige Tableiste die ganz unten

    • Endor
    • 13. August 2020 um 17:35

    @laubenpieper

    Teste mal von hier:

    https://github.com/Endor8/userChr…tabs/Firefox-81

    Script 5 oder 6.

    Keine Ahnung, ob damit Dein Problem behoben wird.

    Mfg.
    Endor

  • User Script Probleme mit Firefox 78 ESR

    • Endor
    • 11. August 2020 um 14:14

    Hallo sam2008

    Bitte mal testen:

    Code
    (function() {
    
    
    
    
    if (location != 'chrome://browser/content/browser.xhtml')
    return;
    
    
    
    
    try {
    CustomizableUI.createWidget({
    id: 'print-toolbarbutton',
    type: 'custom',
    defaultArea: CustomizableUI.AREA_NAVBAR,
    onBuild: function(aDocument) {
    var toolbaritem = aDocument.createElementNS('http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul', 'toolbarbutton');
    var attrs = {
    id: 'print-toolbarbutton',
    class: 'chromeclass-toolbar-additional',
    type: 'menu',
    removable: true,
    label: 'Drucken',
    tooltiptext: 'Drucken'
    };
    for (var a in attrs)
    toolbaritem.setAttribute(a, attrs[a]);
    return toolbaritem;
    }
    });
    } catch(e) { };
    
    
    var css = '\
    #print-toolbarbutton {list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAYCAYAAADkgu3FAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAABGdBTUEAALGOfPtRkwAAACBjSFJNAAB6JQAAgIMAAPn/AACA6QAAdTAAAOpgAAA6mAAAF2+SX8VGAAAEEElEQVR42mL8//8/Az0AQACxkKJYSNmE30ZbMVRKRPgHsviBYxfv37hx/Cg+vQABxEiMjxRVLSyiIv3UXjx/aeLlYJTNyMjAhCx/9MyNHdz8Aktv3Lj979rlE2uuXLnyC90MgABiAFmED4tKaxvcunnr4r+/v/8Twr9//fxf19hdi80cgABiIuSb+OgITxUVRT18av7/+8fw4+t7hu+fXjDYWRvHYFMDEEAE40hUiFv5968fWOWAvmD4+e0jw++fXxkYmZgZmJlZGb59/SqGTS1AABG06Mv7l+xfPr2Fuvwvwz8g/v/vD8Pf3z+BQfIXaAELAxPQEmC8AcX/M3z68IYZmzkAAYTTIgkZfSemf/8/utjpC12+coNh9bpdDJKSIgxsLIwMoPQDNBNK/2eApacvX74x8HKxM0tJ6Rn/Y2SUfvH04iaYeQABhDUBGBo66p89d+HCf6ATYXjC7NX/zz/4gBd39c+Eq3/77t2X5LTieJiZAAGE1UeOzrbBuloq+r9/foOLPX7zmeHCvZd4g/n79x8MMD28XGzcVub6EUDmQhAfIICwWiQrJazwBxjByODhy/cMfwlYxP3rJwOyPk52ZmUYGyCAMCxKD3Pl1zJ3l/6D5BsQ0FVXYDDXEWPg4+ZgEOTjxLDk6Yu3DL/E1RmQ9TH//8PfVxwpW9S7/DFAAGFYJC7Eq/X3+0dFdB/l+qgDyT+gKIdiNH1SQEJKGcVHv39/F2RkYrAFMpcBBBBGhhXkYVUD5htRQiUGMRhoOCuQ1g8LC+MECCAUHzk6OrL4GYvJMjMycoD4127cZpizYBnJJbWHmyODm5MdjCuvJ84gARBAKBZpSnHzArOEBNA9YPFnz18wLF+9EZINGP5DswM8X2AXB4WKoADYImYWFlB+k+RmZZADCCAUi768+f2LUYrxyL2Hz92XLF4h8uDRE1YleWluGQkxhoT4BLih2As8Boa7t28xLFm9luHR/Qc/gfq/3334kkGM7e9WZtb/jwECCMWiRTt3fgWG5zoVWRF+FWWFGdKSwgy37txmsDMzYgiNiSUYZJdOHGY4fvokg562KruzvRn7hy1HNr69+3Fy36rV3wECCCPVrVq1CliXrJ6zbtmXiV9//mdXkpNmUFNSYPjz5xdBi1S0dRj0VBQY2Ng5GF5++MXAzs2zv2/Vqu8gOYAAwlHWhf4NimLg6G8sElJRlFSUlJLa8ff3LxFCFjGzsDIYaanOePLufZeTd8h9J2+EHEAA4S29C+v73gGpd8c2L2L+85uwj/79BZbuP7/+KWmefB9dDiCAiGozXDu2+cHVo1sEGQmo+8/A+JOB6e8lbHIAAUSURYw/GV2Y2f8J/GMGVkB4a9r/7ALsLA+wyQEEECO9mlsAAQYAq1BA/vIVsYsAAAAASUVORK5CYII=)}\
    #print-toolbarbutton > dropmarker {display: none}\
    #print-toolbarbutton > image{min-height: 24px}\
    #print-toolbarbutton > image{min-width: 26px}\
    ';
    
    
    var stylesheet = document.createProcessingInstruction('xml-stylesheet', 'type="text/css" href="data:text/css;utf-8,' + encodeURIComponent(css) + '"');
    
    
    document.insertBefore(stylesheet, document.documentElement);
    
    
    var menu, menuitem, menuseparator, menupopup;
    
    
    // menupopup of toolbarbutton
    
    
    menupopup = document.createXULElement('menupopup');
    menupopup.id = "print-button-popup";
    document.getElementById('print-toolbarbutton').appendChild(menupopup);
    
    
    menuitem = document.createXULElement('menuitem');
    menuitem.setAttribute('label', "Drucken…");
    menuitem.setAttribute('tooltiptext', "Drucken…");
    menuitem.setAttribute('accesskey', "D");
    menuitem.setAttribute('command', "cmd_print");
    menupopup.appendChild(menuitem);
    
    
    menuitem = document.createXULElement('menuitem');
    menuitem.setAttribute('label', "Druckvorschau");
    menuitem.setAttribute('tooltiptext', "Druckvorschau");
    menuitem.setAttribute('accesskey', "v");
    menuitem.setAttribute('oncommand', "PrintUtils.printPreview(PrintPreviewListener); event.stopPropagation()");
    menupopup.appendChild(menuitem);
    
    
    menuseparator = document.createXULElement('menuseparator');
    menupopup.appendChild(menuseparator);
    
    
    menuitem = document.createXULElement('menuitem');
    menuitem.setAttribute('label', "Seite einrichten…");
    menuitem.setAttribute('tooltiptext', "Seite einrichten…");
    menuitem.setAttribute('accesskey', "e");
    menuitem.setAttribute('command', "cmd_pageSetup");
    menupopup.appendChild(menuitem);
    
    
    // submenu of context menu
    
    
    menu = document.createXULElement('menu');
    menu.id = "context-print-menu";
    menu.setAttribute('label', "Drucken…");
    menu.setAttribute('accesskey', "D");
    document.getElementById('contentAreaContextMenu')
    .insertBefore(menu, document.getElementById('context-sep-viewbgimage').nextSibling);
    
    
    menupopup = document.createXULElement('menupopup');
    menu.appendChild(menupopup);
    
    
    menuitem = document.createXULElement('menuitem');
    menuitem.id = "context-print-menu-print";
    menuitem.setAttribute('label', "Drucken…");
    menuitem.setAttribute('accesskey', "D");
    menuitem.setAttribute('command', "cmd_print");
    menupopup.appendChild(menuitem);
    
    
    menuitem = document.createXULElement('menuitem');
    menuitem.id = "context-print-menu-preview";
    menuitem.setAttribute('label', "Druckvorschau");
    menuitem.setAttribute('accesskey', "v");
    menuitem.setAttribute('oncommand', "PrintUtils.printPreview(PrintPreviewListener)");
    menupopup.appendChild(menuitem);
    
    
    menuseparator = document.createXULElement('menuseparator');
    menupopup.appendChild(menuseparator);
    
    
    menuitem = document.createXULElement('menuitem');
    menuitem.id = "context-print-menu-printSetup";
    menuitem.setAttribute('label', "Seite einrichten…");
    menuitem.setAttribute('accesskey', "e");
    menuitem.setAttribute('command', "cmd_pageSetup");
    menupopup.appendChild(menuitem);
    
    
    })();
    Alles anzeigen

    Müsste nun passen.

    Mfg.
    Endor

  • Ton Aus auf Tab funktioniert nicht

    • Endor
    • 10. August 2020 um 20:04

    Bitte sehr :wink: :

    https://github.com/Endor8/userChr…tabs/Firefox-81

    Mfg.

    Endor

  • Ton Aus auf Tab funktioniert nicht

    • Endor
    • 10. August 2020 um 17:34

    Hallo zusammen.

    Die CSS Codes habe ich alle aktualisiert.

    Es sind jetzt 6 verschiedene.
    https://github.com/Endor8/userChr…Mutirowtabs/CSS


    Readme muss ich noch überarbeiten - erweitern.

    Was die Scripte betrifft, da muss ich mich erst noch darum kümmern.

    Hoffe, dass ich da bald mal dazu komme.

    Mfg.
    Endor

  • Ton Aus auf Tab funktioniert nicht

    • Endor
    • 9. August 2020 um 14:40
    Zitat von 2002Andreas

    Wobei ich gerade auch sehe, Alice hat schon neue Versionen für Fx 81

    Wie kommst Du darauf?

    Habe bei Alice nichts gefunden.

    Aber der Autor meiner Quelle hat neue Versionen im Angebot.

    Sei es CSS Versionen oder Scripte dafür. :wink:

    Melde mich bei gleich mal per PN bei Dir 2002Andreas.
    :wink:

    Mfg.

    Endor

  • Tab Toolbar verstecken wenn nur ein Tab vorhanden

    • Endor
    • 7. August 2020 um 20:02

    Ich kann bestätigen, das Script von bananovic

    funktioniert einwandfrei.

    Voraussetzung ist, dass man diese Vorarbeiten dazu gemacht hat:

    https://github.com/Endor8/userChr…ster/userChrome

    Mfg.
    Endor

  • Datei - Seite einrichten bzw. Datei - Druckvorschau

    • Endor
    • 6. August 2020 um 17:25

    Hallo Mandel

    Du könntest mal folgendes Probieren:

    Gib in Firefox in die Adressleiste:

    about:config ein und mit Enter aufrufen

    in die Zeile wo steht :Einstellungsname Suchen gibst Du:

    Printer ein

    Es wird eine Liste mit Einträgen zu Druckern angezeigt.
    Nun suchst Du deinen aktuellen Drucken in der Liste, bei einem

    steht daneben: .print_scaling rechts daneben steht Wert da machst Du

    einen Doppelklick drauf und trägst Du mal 1.00 ein .

    Sieht bei meinem Drucker so aus:


    Firefox neu starten und testen.

    Mfg.
    Endor

  • Suchvorschläge schließen

    • Endor
    • 3. August 2020 um 14:48
    Zitat von Dharkness

    Das wird aber normalerweise mit beenden der Browser-Werkzeuge zurückgesetzt.

    Wie Thomas S. schon schreibt, wird das auch hier nicht immer
    beim Schließen der Browser-Werkzeuge zurückgesetzt.

    Keine Ahnung warum.

    Mfg.
    Endor

  • Script um Lezezeichensymboleiste zu verstecken

    • Endor
    • 30. Juli 2020 um 21:54

    Wie wäre eine Lösung nur per CSS:

    CSS Code:

    CSS
    /* ----------------------------- */
    /* Firefox Sliding Bookmarks Bar */
    /* ----------------------------- */
    :root {
    --toolbar-offset-height: 40px;
    }
    
    
    #PersonalToolbar:not([customizing]) {
    background: #E7E7E7 !important;
    position: fixed !important;
    margin-top: -27px !important;
    padding-bottom: 5px !important;
    height: auto !important;
    width: 100% !important;
    border: none !important;
    box-shadow: 0 1px 0 0 rgba(0,0,0,0.3);
    transform: scaleY(0.8);
    transform-origin: center bottom;
    transition: transform cubic-bezier(.22,.61,.36,1) 0.15s !important;
    z-index: 2;
    }
    
    
    #PersonalToolbar:not([customizing]) #personal-bookmarks {
    opacity: 0;
    transition: opacity 0.15s;
    }
    
    
    /* prevent 1px border in selected tab */
    #titlebar {
    z-index: 4 !important;
    }
    
    
    #nav-bar {
    z-index: 3 !important;
    }
    
    
    /* bring up nav-bar z-index when megabar is open */
    #nav-bar[urlbar-exceeds-toolbar-bounds="true"] {
    z-index: 5 !important;
    }
    
    
    .tabbrowser-tab[selected="true"] {
    z-index: 4 !important;
    }
    
    
    #navigator-toolbox:hover > #PersonalToolbar:not([customizing]) {
    position: fixed !important;
    transform: translateY(100%) scaleY(1);
    }
    
    
    #navigator-toolbox:hover > #PersonalToolbar:not([customizing]) #personal-bookmarks {
    opacity: 1;
    }
    
    
    /* Hide 1px bottom border */
    #navigator-toolbox:after {
    display: none !important;
    }
    
    
    /* compact theme */
    :root[lwtheme="true"] #PersonalToolbar:not([customizing]) {
    top: var(--toolbar-offset-height) !important;
    }
    
    
    /* compact + titlebar active */
    :root[lwtheme="true"]:not([tabsintitlebar="true"])
    #nav-bar ~ #PersonalToolbar:not([customizing]) {
    top: calc(var(--toolbar-offset-height) + 20px) !important;
    }
    
    
    /* default theme */
    :root:not([lwtheme="true"]) #PersonalToolbar:not([customizing]) {
    top: calc(var(--toolbar-offset-height) + 17px) !important;
    }
    
    
    /* default + titlebar active */
    :root:not([lwtheme="true"]):not([tabsintitlebar="true"])
    #nav-bar ~ #PersonalToolbar:not([customizing]) {
    top: calc(var(--toolbar-offset-height) + 8px) !important;
    }
    Alles anzeigen

    Code muss in oder mit userChrome.css geladen werden.
    Hintergrundfarbe der Lesezeichenleiste kannst Du nach bedarf anpassen.

    Sobald die Maus die Navleiste berührt wird die Lesezeichenleiste eingeblendet.

    Mfg.
    Endor

  • Der Glückwunsch-Thread

    • Endor
    • 29. Juli 2020 um 17:10

    Hallo AngelOfDarkness und Road-Runner

    auch von mir nachträglich noch

    alles alles Gute zum Geburtstag, vor allem viel Gesundheit.

    Mfg.
    Endor

  • About Seiten mit CSS Codes anpassen

    • Endor
    • 29. Juli 2020 um 16:27

    Hallo zusammen.

    Hier eine Aktualisierung vom CSS Code für about:support für Firefox 79+

    Neue Schaltfläche Start-Cache löschen und kleinere Anpassungen.

    CSS Code:

    CSS
    @namespace url(http://www.w3.org/1999/xhtml);
    @-moz-document url-prefix(about:support) {
    
    
    body::before {content: "Design by Endor und FuchsFan";
    margin-left: 0px;
    font-size: 25px;
    font-weight: bold;
    color: red;}
    
    
    html{
    background: #ffffff !important;
    }
    
    
    body > h1:nth-child(2){
    margin-top: 10px !important;
    }
    
    
    body{
    margin-left: 150px !important;
    max-width: 1150px !important;
    }
    
    
    #action-box{
    width: 30% !important;
    border-radius:24px !important;
    }
    
    
    #clear-startup-cache-box > h3:nth-child(1){
    margin-left: 17px !important;
    }
    
    
    #reset-box, #safe-mode-box {
    margin-left: 11px !important;
    }
    
    
    td, th{
    padding-left: 15px !important;
    }
    
    
    #copy-raw-data-to-clipboard {
    min-width: 330px !important;
    }
    
    
    #clear-startup-cache-box > h3,
    #safe-mode-box > h3, #reset-box > h3, h2, h1 {
    color: #057A7A !important;
    }
    
    
    #prefs-user-js-section > h3, h2 {
    margin-left: 8px !important;
    color: red !important;
    }
    
    
    #safe-mode-box > h3, #reset-box > h3 {
    margin-left: 4px !important;
    }
    
    
    #action-box {
    background: #FDF5E6 !important;
    }
    
    
    #media-input-devices-tbody > tr:nth-child(n+1) > td:nth-child(2),
    #media-output-devices-tbody > tr:nth-child(n+1) > td:nth-child(2){
    word-break: break-all !important;
    min-width: 10em !important;}
    
    
    #graphics-decisions-tbody > tr:nth-child(n+1) > td > table,
    #graphics-decisions-tbody > tr:nth-child(n+1) > td > table > tr > td {
    border: none! important;
    }
    
    
    #graphics-decisions-tbody > tr:nth-child(n+1) > td > table > tr > td:hover,
    #graphics-decisions-tbody > tr:nth-child(n+1) > td > table > tr:hover {
    border: none! important;
    }
    
    
    #graphics-decisions-tbody > tr:nth-child(n+2) > td:nth-child(2) > table:nth-child(1) {
    margin-left: -15px!important;
    }
    
    
    #graphics-decisions-tbody > tr:nth-child(n+1) > td:nth-child(2) > table:nth-child(1),
    #graphics-decisions-tbody > tr:nth-child(n+1) > td:nth-child(2) > table:nth-child(1) > tr:nth-child(1) {
    border: none! important;
    }
    
    
    #graphics-decisions-tbody > tr:nth-child(n+1) > td > table > tr > td:hover,
    #graphics-decisions-tbody > tr:nth-child(n+1) > td > table > tr:hover {
    border: none! important;
    }
    
    
    td {
    background: #FFFFF0 !important;
    }
    td:hover {
    background: #ffeb99 !important;
    }
    
    
    th {
    background-color: #ee7621 !important;
    }
    th:hover {
    background-color: #b54f06 !important;
    }
    
    
    
    
    #copy-raw-data-to-clipboard{
    -moz-appearance:none!important;
    background: #F0F0F0 url("..//icons/Bild73.png")no-repeat !important;
    padding-left:20px!important;
    padding-bottom: 5px!important;
    background-position:14px 6px!important;
    font-size:14.0px!important;
    border-style: outset !important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-width:2px !important;
    border-radius:12px!important;
    margin-right:10px!important;
    color:black !important;}
    
    
    #copy-raw-data-to-clipboard:hover{
    -moz-appearance:none!important;
    background: #B2EDFA url("..//icons/Bild73.png")no-repeat !important;
    padding-left:20px!important ;
    border-style: outset !important;
    border-width:2px !important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;
    background-position:14px 6px!important;}
    
    
    #copy-to-clipboard {min-width: 290px !important;}
    
    
    #copy-to-clipboard{
    -moz-appearance:none!important;
    background: #F0F0F0 url("..//icons/Bild74.png")no-repeat !important;
    padding-left:20px!important;
    padding-bottom: 5px!important;
    background-position:14px 6px!important;
    font-size:14.0px!important;
    border-style: outset !important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-width:2px !important;
    border-radius:12px!important;
    color:black !important;}
    
    
    #copy-to-clipboard:hover{
    -moz-appearance:none!important;
    background: #B2EDFA url("..//icons/Bild74.png")no-repeat !important;
    padding-left:20px!important ;
    border-style: outset !important;
    border-width:2px !important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;
    background-position:14px 6px!important;}
    
    
    #show-update-history-button{min-width: 220px !important;}
    
    
    #show-update-history-button{
    -moz-appearance:none!important;
    background: #F0F0F0 url("..//icons/Bild75.png")no-repeat !important;
    padding-left:19px!important;
    padding-bottom: 5px!important;
    background-position:8px 5px!important;
    color:black!important;
    margin-left: -3px !important;
    font-size:14px!important;
    text-decoration:none!important;
    padding-right:8px!important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-style: outset !important;
    border-width:2px !important;
    border-radius:14px!important;}
    
    
    #show-update-history-button:hover{
    -moz-appearance:none!important;
    background: #B2EDFA url("..//icons/Bild75.png")no-repeat !important;
    background-position:8px 5px!important;
    border-style: outset !important;
    border-width:2px !important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;}
    
    
    #update-dir-button{min-width: 220px !important;}
    
    
    #update-dir-button{
    -moz-appearance:none!important;
    background: #F0F0F0 url("..//icons/Bild76.png")no-repeat !important;
    padding-left:19px!important;
    padding-bottom: 5px!important;
    background-position:8px 5px!important;
    color:black!important;
    margin-left: -3px !important;
    font-size:14px!important;
    text-decoration:none!important;
    padding-right:76px!important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-style: outset !important;
    border-width:2px !important;
    border-radius:14px!important;}
    
    
    #update-dir-button:hover{
    -moz-appearance:none!important;
    background: #B2EDFA url("..//icons/Bild76.png")no-repeat !important;
    background-position:8px 5px!important;
    border-style: outset !important;
    border-width:2px !important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;}
    
    
    #profile-dir-button {min-width: 217px !important;}
    
    
    #profile-dir-button{
    -moz-appearance:none!important;
    background: #F0F0F0 url("..//icons/Bild76.png")no-repeat !important;
    padding-left:32px!important;
    background-position:8px 4px!important;
    color:black!important;
    margin-left: -3px !important;
    font-size:14px!important;
    text-decoration:none!important;
    padding-right:76px!important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-style: outset !important;
    border-width:2px !important;
    border-radius:14px!important;}
    
    
    #profile-dir-button:hover{
    -moz-appearance:none!important;
    background: #B2EDFA url("..//icons/Bild76.png")no-repeat !important;
    padding-left:32px!important ;
    border-style: outset !important;
    border-width:2px !important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;
    background-position:8px 4px!important;}
    
    
    #reset-box-button{
    -moz-appearance:none!important;
    background: #F0F0F0 url("..//icons/Bild77.png")no-repeat !important;
    padding-left:40px!important;
    padding-right: 130px !important;
    padding-bottom: 4px!important;
    background-position:14px 5px!important;
    font-size:14.0px!important;
    border-style: outset !important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-width:2px !important;
    border-radius:12px !important;
    color:black !important; }
    
    
    #reset-box-button:hover{
    -moz-appearance:none!important;
    background: #B2EDFA url("..//icons/Bild77.png")no-repeat !important;
    border-style: outset !important;
    border-width:2px !important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;
    background-position:14px 5px!important;}
    
    
    #restart-in-safe-mode-button{
    -moz-appearance:none!important;
    background: #F0F0F0 url("..//icons/Bild78.png")no-repeat !important;
    padding-left:40px!important;
    padding-right:5px!important;
    background-position:14px 5px!important;
    font-size:14.0px!important;
    border-style: outset !important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-width:2px !important;
    border-radius:12px !important;
    color:black !important; }
    
    
    #restart-in-safe-mode-button:hover{
    -moz-appearance:none!important;
    background: #B2EDFA url("..//icons/Bild78.png")no-repeat !important;
    background-position:14px 5px!important;
    border-style: outset !important;
    border-width:2px !important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;}
    
    
    #clear-startup-cache-button{
    -moz-appearance:none!important;
    background: #F0F0F0 url("..//icons/database_delete.png")no-repeat !important;
    padding-left:40px!important;
    padding-right:116px!important;
    margin-left: 10px !important;
    background-position:14px 6px!important;
    font-size:14.0px!important;
    border-style: outset !important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-width:2px !important;
    border-radius:20px !important;
    color:black !important; }
    
    
    #clear-startup-cache-button:hover{
    -moz-appearance:none!important;
    background: #B2EDFA url("..//icons/database_delete.png")no-repeat !important;
    background-position:14px 6px!important;
    border-style: outset !important;
    border-width:2px !important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;}
    
    
    #supportLink{
    -moz-appearance:none!important;
    background: #F0F0F0 url("..//icons/Bild52.gif") no-repeat !important;
    color:black!important;
    font-size:14px!important;
    text-decoration:none!important;
    padding-right:13px!important;
    padding-left:29px!important;
    padding-bottom: 2px !important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-style: outset !important;
    border-width: 2px !important;
    background-position:6px 2px!important;
    border-radius:14px!important;
    line-height: 2.2 !important;}
    
    
    #supportLink:hover{
    -moz-appearance:none!important;
    background: #B2EDFA url("..//icons/Bild52.gif") no-repeat !important;
    color:black!important;
    font-size:14px!important;
    text-decoration:none!important;
    padding-right:13px!important;
    padding-left:29px!important;
    background-position:6px 2px!important;
    border-radius:14px!important;
    border-style: outset !important;
    border-width:2px !important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;}
    
    
    a[href="about:plugins"]{
    -moz-appearance:none!important;
    background: #F0F0F0 url("..//icons/Bild3.png") no-repeat !important;
    color:black!important;
    margin-left: -3px !important;
    font-size:14.0px!important;
    text-decoration:none!important;
    padding-right:96px!important;
    padding-left:35px!important;
    padding-bottom: 2px !important;
    padding-top: 2px !important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-style: outset !important;
    border-width:2px !important;
    background-position:8px 2px!important;
    border-radius:14px!important;
    min-height: 28px !important;
    line-height: 2.2 !important;}
    
    
    a[href="about:buildconfig"]{
    -moz-appearance:none!important;
    background: #F0F0F0 url("..//icons/Bild3.png") no-repeat !important;
    color:black!important;
    margin-left: -3px !important;
    font-size:14.0px!important;
    text-decoration:none!important;
    padding-right:73px!important;
    padding-left:35px!important;
    padding-bottom: 2px !important;
    padding-top: 2px !important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-style: outset !important;
    border-width:2px !important;
    background-position:8px 2px!important;
    border-radius:14px!important;
    line-height: 2.2 !important;}
    
    
    #crashes-allReportsWithPending{
    -moz-appearance:none!important;
    background: #F0F0F0 url("..//icons/Bild3.png") no-repeat !important;
    color:black!important;
    margin-left: 3px !important;
    font-size:14px!important;
    text-decoration:none!important;
    padding-right:15px!important;
    padding-left:35px!important;
    padding-bottom: 2px !important;
    padding-top: 2px !important;
    max-width: 125px !important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-style: outset !important;
    border-width:2px !important;
    background-position:8px 2px!important;
    border-radius:14px!important;}
    
    
    #crashes-allReportsWithPending:hover{
    -moz-appearance:none!important;
    background: #B2EDFA url("..//icons/Bild3.png") no-repeat !important;
    color:black!important;
    margin-left: 3px !important;
    font-size:14px!important;
    text-decoration:none!important;
    padding-right:15px!important;
    padding-left:35px!important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;
    border-style: outset !important;
    border-width:2px !important;
    background-position:8px 2px!important;
    border-radius:14px!important;}
    
    
    a[href="about:plugins"]:hover{
    -moz-appearance:none!important;
    background: #B2EDFA url("..//icons/Bild3.png") no-repeat !important;
    color:black!important;
    font-size:14px!important;
    text-decoration:none!important;
    background-position:8px 2px!important;
    border-radius:14px!important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;
    border-style: outset !important;
    border-width:2px !important;}
    
    
    a[href="about:buildconfig"]:hover{
    -moz-appearance:none!important;
    background: #B2EDFA url("..//icons/Bild3.png") no-repeat !important;
    color:black!important;
    font-size:14px!important;
    text-decoration:none!important;
    background-position:8px 2px!important;
    border-radius:14px!important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;
    border-style: outset !important;
    border-width:2px !important;}
    
    
    a[href="about:serviceworkers"]{
    -moz-appearance:none!important;
    background: #F0F0F0 url("..//icons/Bild3.png") no-repeat !important;
    color:black!important;
    margin-left: -3px !important;
    font-size:14px!important;
    text-decoration:none!important;
    padding-right:50px!important;
    padding-left:35px!important;
    padding-bottom: 2px !important;
    padding-top: 2px !important;
    max-width: 125px !important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-style: outset !important;
    border-width:2px !important;
    background-position:8px 2px!important;
    border-radius:14px!important;
    line-height: 2.2 !important;}
    
    
    a[href="about:serviceworkers"]:hover{
    -moz-appearance:none!important;
    background: #B2EDFA url("..//icons/Bild3.png") no-repeat !important;
    color:black!important;
    font-size:14px!important;
    text-decoration:none!important;
    padding-left:35px!important;
    background-position:8px 2px!important;
    border-radius:14px!important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;
    border-style: outset !important;
    border-width:2px !important;}
    
    
    a[href="about:memory"]{
    -moz-appearance:none!important;
    background: #F0F0F0 url("..//icons/Bild3.png") no-repeat !important;
    color:black!important;
    margin-left: -3px !important;
    font-size:14.0px!important;
    text-decoration:none!important;
    padding-right:88px!important;
    padding-left:35px!important;
    padding-bottom: 2px !important;
    padding-top: 2px !important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-style: outset !important;
    border-width:2px !important;
    background-position:8px 2px!important;
    border-radius:14px!important;
    line-height: 2.2 !important;}
    
    
    a[href="about:memory"]:hover{
    -moz-appearance:none!important;
    background: #B2EDFA url("..//icons/Bild3.png") no-repeat !important;
    color:black!important;
    font-size:14px!important;
    text-decoration:none!important;
    background-position:8px 2px!important;
    border-radius:14px!important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;
    border-style: outset !important;
    border-width:2px !important;}
    
    
    #prefs-user-js-link{
    -moz-appearance:none!important;
    background: #F0F0F0 url("..//icons/Bild3.png") no-repeat !important;
    color:black!important;
    margin-left: 3px !important;
    font-size:14px!important;
    text-decoration:none!important;
    padding-right:15px!important;
    padding-left:35px!important;
    padding-bottom: 2px !important;
    padding-top: 2px !important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-style: outset !important;
    border-width:2px !important;
    background-position:8px 2px!important;
    border-radius:14px!important;}
    
    
    #prefs-user-js-link:hover{
    -moz-appearance:none!important;
    color:black!important; background: #B2EDFA url("..//icons/Bild3.png") no-repeat !important;
    font-size:14px!important;
    text-decoration:none!important;
    padding-right:15px!important;
    padding-left:35px!important;
    background-position:8px 2px!important;
    border-radius:14px!important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;
    border-style: outset !important;
    border-width:2px !important;}
    
    
    a[href="about:performance"]{
    -moz-appearance:none!important;
    background: #F0F0F0 url("..//icons/Bild3.png") no-repeat !important;
    color:black!important;
    margin-left: -3px !important;
    margin-top: 3px !important;
    font-size:14px!important;
    text-decoration:none!important;
    padding-right:63px!important;
    padding-left:35px!important;
    padding-bottom: 2px !important;
    padding-top: 2px !important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-style: outset !important;
    border-width:2px !important;
    background-position:8px 2px!important;
    border-radius:14px!important;
    line-height: 2.2 !important;}
    
    
    a[href="about:performance"]:hover{
    -moz-appearance:none!important;
    background: #B2EDFA url("..//icons/Bild3.png") no-repeat !important;
    color:black!important;
    font-size:14px!important;
    text-decoration:none!important;
    background-position:8px 2px!important;
    border-radius:14px!important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;
    border-style: outset !important;
    border-width:2px !important;}
    
    
    a[href="about:profiles"]{
    -moz-appearance:none!important;
    background: #F0F0F0 url("..//icons/Bild3.png") no-repeat !important;
    color:black!important;
    margin-left: -3px !important;
    margin-top: 3px !important;
    font-size:14px!important;
    text-decoration:none!important;
    padding-right:94px!important;
    padding-left:35px!important;
    padding-bottom: 2px !important;
    padding-top: 2px !important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-style: outset !important;
    border-width:2px !important;
    background-position:8px 2px!important;
    border-radius:14px!important;
    line-height: 2.2 !important;}
    
    
    a[href="about:profiles"]:hover{
    -moz-appearance:none!important;
    background: #B2EDFA url("..//icons/Bild3.png") no-repeat !important;
    color:black!important;
    font-size:14px!important;
    text-decoration:none!important;
    background-position:8px 2px!important;
    border-radius:14px!important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;
    border-style: outset !important;
    border-width:2px !important;}
    
    
    #verify-place-integrity-button{
    -moz-appearance:none!important;
    background: #F0F0F0 url("..//icons/Bild3.png") no-repeat !important;
    color:black!important;
    margin-left: 3px !important;
    margin-top: 3px !important;
    font-size:14px!important;
    text-decoration:none!important;
    padding-right:20px!important;
    padding-left:35px!important;
    padding-bottom: 2px !important;
    padding-top: 2px !important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-style: outset !important;
    border-width:2px !important;
    background-position:8px 4px!important;
    border-radius:14px!important;}
    
    
    #verify-place-integrity-button:hover{
    -moz-appearance:none!important;
    background: #B2EDFA url("..//icons/Bild3.png") no-repeat !important;
    color:black!important;
    font-size:14px!important;
    text-decoration:none!important;
    background-position:8px 4px!important;
    border-radius:14px!important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;
    border-style: outset !important;
    border-width:2px !important;}
    
    
    button[data-l10n-id="reset-on-next-restart"]{
    -moz-appearance:none!important;
    background: #F0F0F0 url("..//icons/Bild85.png") no-repeat !important;
    color:black!important;
    margin-left: 3px !important;
    margin-top: 3px !important;
    font-size:14px!important;
    text-decoration:none!important;
    padding-right:20px!important;
    padding-left:35px!important;
    padding-bottom: 2px !important;
    padding-top: 2px !important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-style: outset !important;
    border-width:2px !important;
    background-position:8px 5px!important;
    border-radius:14px!important;}
    
    
    button[data-l10n-id="reset-on-next-restart"]:hover{
    -moz-appearance:none!important;
    background: #B2EDFA url("..//icons/Bild85.png") no-repeat !important;
    color:black!important;
    font-size:14px!important;
    text-decoration:none!important;
    background-position:8px 5px!important;
    border-radius:14px!important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;
    border-style: outset !important;
    border-width:2px !important;}
    
    
    button[data-l10n-id="gpu-process-kill-button"]{
    -moz-appearance:none!important;
    background: #F0F0F0 url("..//icons/Bild117.png") no-repeat !important;
    color:black!important;
    margin-left: -3px !important;
    margin-top: 3px !important;
    font-size:14px!important;
    text-decoration:none!important;
    padding-right:20px!important;
    padding-left:35px!important;
    padding-bottom: 2px !important;
    padding-top: 2px !important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-style: outset !important;
    border-width:2px !important;
    background-position:8px 5px!important;
    border-radius:14px!important;}
    
    
    button[data-l10n-id="gpu-process-kill-button"]:hover{
    -moz-appearance:none!important;
    background: #B2EDFA url("..//icons/Bild117.png") no-repeat !important;
    color:black!important;
    font-size:14px!important;
    text-decoration:none!important;
    background-position:8px 5px!important;
    border-radius:14px!important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;
    border-style: outset !important;
    border-width:2px !important;}
    
    
    button[data-l10n-id="gpu-device-reset-button"]{
    -moz-appearance:none!important;
    background: #F0F0F0 url("..//icons/Bild21.png") no-repeat !important;
    color:black!important;
    margin-left: -3px !important;
    margin-top: 3px !important;
    font-size:14px!important;
    text-decoration:none!important;
    padding-right:40px!important;
    padding-left:35px!important;
    padding-bottom: 2px !important;
    padding-top: 2px !important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-style: outset !important;
    border-width:2px !important;
    background-position:8px 5px!important;
    border-radius:14px!important;}
    
    
    button[data-l10n-id="gpu-device-reset-button"]:hover{
    -moz-appearance:none!important;
    background: #B2EDFA url("..//icons/Bild21.png") no-repeat !important;
    color:black!important;
    font-size:14px!important;
    text-decoration:none!important;
    background-position:8px 6px!important;
    border-radius:14px!important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;
    border-style: outset !important;
    border-width:2px !important;}
    
    
    button[id="enumerate-database-button"]{
    -moz-appearance:none!important;
    background: #F0F0F0 url("..//icons/Bild7.png") no-repeat !important;
    color:black!important;
    margin-left: 3px !important;
    margin-top: 3px !important;
    font-size:14px!important;
    text-decoration:none!important;
    padding-right:40px!important;
    padding-left:35px!important;
    padding-bottom: 2px !important;
    padding-top: 2px !important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-style: outset !important;
    border-width:2px !important;
    background-position:8px 6px!important;
    border-radius:14px!important;}
    
    
    button[id="enumerate-database-button"]:hover{
    -moz-appearance:none!important;
    background: #B2EDFA url("..//icons/Bild7.png") no-repeat !important;
    color:black!important;
    font-size:14px!important;
    text-decoration:none!important;
    background-position:8px 5px!important;
    border-radius:14px!important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;
    border-style: outset !important;
    border-width:2px !important;}
    
    
    #remoteprocesses-row > td:nth-child(2) > a:nth-child(1){
    -moz-appearance:none!important;
    margin-left: -4px !important;
    background: #F0F0F0 url("..//icons/Bild125.png") no-repeat !important;
    color:black!important;
    font-size:14px!important;
    text-decoration:none!important;
    padding-right:160px!important;
    padding-left:35px!important;
    padding-bottom: 2px !important;
    padding-top: 2px !important;
    border-left-color: lightblue!important;
    border-top-color: lightblue!important;
    border-right-color: dodgerblue!important;
    border-bottom-color: dodgerblue!important;
    border-style: outset !important;
    border-width:2px !important;
    background-position:8px 3px!important;
    border-radius:14px!important;}
    
    
    #remoteprocesses-row > td:nth-child(2) > a:nth-child(1):hover{
    -moz-appearance:none!important;
    background: #B2EDFA url("..//icons/Bild125.png") no-repeat !important;
    color:black!important;
    font-size:14px!important;
    text-decoration:none!important;
    background-position:8px 3px!important;
    border-radius:14px!important;
    border-left-color: #bbddff !important;
    border-top-color: #bbddff !important;
    border-right-color: #11508d !important;
    border-bottom-color: #11508d !important;
    border-style: outset !important;
    border-width:2px !important;}
    
    
    #remoteprocesses-row,
    #remoteprocesses-row > th:nth-child(1),
    #remoteprocesses-row > td:nth-child(2) {padding-bottom: 10px !important; padding-top: 10px !important;}
    }
    Alles anzeigen

    Symbol für neue Schaltfläche:

    Boersenfeger HInweis: obiger Code ist der ohne Abrundungen.
    Wenn Du Deinen mit Abrundungen für Firefox 79 aktualisieren möchtest
    melde dich bitte per PN. Danke. :wink:

    Mfg.
    Endor

  • Backup-Tool für den Browser

    • Endor
    • 25. Juli 2020 um 17:39

    Boersenfeger.

    Danke für den Hinweis, ist jetzt aktualisiert:

    https://github.com/Endor8/userChr…upProfile.uc.js

    Mfg.
    Endor

  • About Seiten mit CSS Codes anpassen

    • Endor
    • 19. Juli 2020 um 21:45

    Hallo Dharkness

    Habe mir deinen CSS Code mal angeschaut.
    Wie Du schon schreibst hängt er von der Größe des Viewports ab.
    Bei meinem Monitor kann ich den gar nicht so groß machen, dass es funktioniert.
    Trotzdem danke.

    Mfg.
    Endor

  • Wie kann die Farbe + Breite des Lesezeichen-Scrollbalkens (Bildlaufleiste) verändert werden?

    • Endor
    • 19. Juli 2020 um 21:42

    Speravir

    das wäre der richtige Link:

    https://github.com/Aris-t2/Custom…crollbars.uc.js

    Obige Version ist immer noch die aktuelle.

    Mfg.
    Endor

  • About Seiten mit CSS Codes anpassen

    • Endor
    • 18. Juli 2020 um 22:06

    Hallo Dharkness .

    Leider habe ich bis jetzt keinen Weg gefunden dieses Problem zu beheben.
    Habe einiges versucht, aber nichts funktioniert.

    Zweispaltige Darstellung passt soweit, sieht auch ganz gut aus,

    aber eben diese Aufteilung eines Serviceworkers ein Teil ist links unten, der andere Teil
    des selben Serviceworkers rechts oben, lässt sich bis jetzt nicht beheben.
    Keine Ahnung warum das nicht geht.:/

    Hier der aktuelle CSS Code mit zweispaltiger Darstellung und obigen Darstellungsfehler:

    CSS
            @namespace url(http://www.w3.org/1999/xhtml);
            @-moz-document url(about:serviceworkers){
            
            html {background: #FFFFFF !important;}
            
            body:before {
            content: "Endors Firefox   "; font-weight:bold !important; 
            font-size: 26px !important; 
            color:red !important; 
            text-align: center!important;
            margin-left: 510px !important;
            margin-right: auto !important;}
            
            #serviceworkers{
            column-count: 2 !important;
            column-gap: 5em !important;}
                        
            #serviceworkers > div:nth-child(n+2){
            margin-left: auto !important;
            margin-right: auto !important;}
                    
            body{ 
            margin-left: auto !important;
            margin-right: auto !important;
            justify-content: center!important;
            align-items: center!important;
            max-width: 1200px !important;
            height: auto !important;
            background-color: #fffff0 !important;
            margin-top: 20px !important;
            padding-top: 20px !important;
            padding-left: 25px !important;
            padding-right: 25px !important;
            padding-bottom: 50px !important;
            border-left-color:  lightblue!important;
            border-top-color:  lightblue!important;
            border-right-color:  dodgerblue!important;
            border-bottom-color:  dodgerblue!important;
            border-radius: 20px !important;
            border-width:  4px !important;
            border-style: outset !important;}
            
            
            #serviceworkers > div:nth-child(n+1) > ul:nth-child(2) > li:nth-child(-n+10) > strong:nth-child(1),
            ::marker{color:  #0052cc !important;}
            
            #serviceworkers > h1 {color: #af3a04 !important;}
            
            h2{color: red !important; margin-left: 18px !important; }
            
            #serviceworkers > h1:nth-child(1){
            min-width: 400px !important;
            margin-left: 410px !important; 
            margin-bottom: 45px !important; 
            margin-top: 25px !important; 
            font-weight:bold !important;}
            
            hr{display: none !important;}
            
            
            #serviceworkers{margin-top: 30px !important; height: auto !important;}        
            
            li {font-size: 14px !important;}
            
            #serviceworkers > div:nth-child(even)        {
            background-color: #fbfbf3 !important; 
            padding-left: 15px !important;
            padding-bottom: 20px !important; 
            padding-top: 15px !important; 
            margin-bottom: 10px!important; 
            margin-top: 10px!important; 
            border-left-color:  lightblue!important;
            border-top-color:  lightblue!important;
            border-right-color:  dodgerblue!important;
            border-bottom-color:  dodgerblue!important;
            border-style: outset !important;
            border-width:3px !important;
            border-radius:14px!important;}
            
            #serviceworkers > div:nth-child(even):hover{
            background-color: #ffeb99 !important; 
            padding-left: 15px !important;
            padding-bottom: 20px !important; 
            padding-top: 15px !important; 
            margin-bottom: 10px!important; 
            margin-top: 10px!important;
            border-style: outset !important;
            border-width: 3px !important;
            border-left-color:  #bbddff !important;
            border-top-color:  #bbddff !important;
            border-right-color:  #11508d !important;
            border-bottom-color:  #11508d !important;}
                    
            #serviceworkers > div:nth-child(odd){
            background-color: #fef4d8 !important; 
            padding-left: 15px !important;
            padding-bottom: 20px !important; 
            padding-top: 15px !important; 
            margin-bottom: 10px!important; 
            margin-top: 10px!important; 
            border-left-color:  lightblue!important;
            border-top-color:  lightblue!important;
            border-right-color:  dodgerblue!important;
            border-bottom-color:  dodgerblue!important;
            border-style: outset !important;
            border-width:3px !important;
            border-radius:14px!important;}
            
            #serviceworkers > div:nth-child(odd):hover {
            background-color: #fce39c !important; 
            padding-left: 15px !important;
            padding-bottom: 20px !important; 
            padding-top: 15px !important; 
            margin-bottom: 10px!important; 
            margin-top: 10px!important;
            border-style: outset !important;
            border-width: 3px !important;
            border-left-color:  #bbddff !important;
            border-top-color:  #bbddff !important;
            border-right-color:  #11508d !important;
            border-bottom-color:  #11508d !important;}                  
            
            #serviceworkers > div > button:nth-child(3){
            -moz-appearance:none!important;
            background: #F0F0F0  url("..//icons/Bild5.png")no-repeat !important;
            margin-top: 20px !important;
            padding-bottom: 2px!important; 
            padding-top: 2px!important; 
            padding-left:35px!important;
            padding-right:20px!important;
            border-left-color:  lightblue!important;
            border-top-color:  lightblue!important;
            border-right-color:  dodgerblue!important;
            border-bottom-color:  dodgerblue!important;
            border-style: outset !important;
            border-width:2px !important;
            font-size:14px!important;
            text-decoration:none!important;
            background-position:10px 2px!important;
            border-radius:14px!important;
            color:black !important;}
            
            #serviceworkers > div > button:nth-child(3):hover{
            -moz-appearance:none!important;
            background: #B2EDFA url("..//icons/Bild5.png")no-repeat !important;
            font-size:14px!important;
            border-style: outset !important;
            border-width:2px !important;
            border-left-color:  #bbddff !important;
            border-top-color:  #bbddff !important;
            border-right-color:  #11508d !important;
            border-bottom-color:  #11508d !important;
            text-decoration:none!important;
            padding-right:20px!important;
            padding-left:35px!important ;
            background-position:10px 2px!important;}
            
            #serviceworkers > div > button:nth-child(4){
            -moz-appearance:none!important;
            background: #F0F0F0  url("..//icons/Bild6.png")no-repeat !important;
            margin-left: 5px !important;
            padding-bottom: 2px!important; 
            padding-top: 2px!important;  
            padding-left:35px!important;
            padding-right:20px!important;
            border-left-color:  lightblue!important;
            border-top-color:  lightblue!important;
            border-right-color:  dodgerblue!important;
            border-bottom-color:  dodgerblue!important;
            border-style: outset !important;
            border-width:2px !important;
            font-size:14px!important;
            text-decoration:none!important;
            background-position:10px 2px!important;
            border-radius:14px!important;
            color:black !important;}
            
            #serviceworkers > div > button:nth-child(4):hover{
            -moz-appearance:none!important;
            background: #B2EDFA url("..//icons/Bild6.png")no-repeat !important;
            font-size:14px!important;
            border-style: outset !important;
            border-width:2px !important;
            border-left-color:  #bbddff !important;
            border-top-color:  #bbddff !important;
            border-right-color:  #11508d !important;
            border-bottom-color:  #11508d !important;
            text-decoration:none!important;
            padding-right:20px!important;
            padding-left:35px!important ;
            background-position:10px 2px!important;}
    
            #serviceworkers > div > ul > li:nth-child(2) > a{
            -moz-appearance:none!important;
            background: #F0F0F0  url("..//icons/Bild7.png")no-repeat !important;
            display: inline-block !important;
            min-width: 250px !important;
            max-width: 250px !important;
            margin-left: 50px !important;
            padding-left:35px!important;
            padding-right:20px!important;
            border-left-color:  lightblue!important;
            border-top-color:  lightblue!important;
            border-right-color:  dodgerblue!important;
            border-bottom-color:  dodgerblue!important;
            border-style: outset !important;
            border-width:2px !important;
            font-size:14px!important;
            text-decoration:none!important;
            background-position:10px 6px!important;
            border-radius:14px!important;
            color:black !important;
            text-align: left!important;
            white-space: nowrap!important;
            overflow: hidden !important;
            text-overflow: ellipsis!important;
            line-height: 2 !important;}
    
            #serviceworkers > div > ul > li:nth-child(2) > a:hover{
            -moz-appearance:none!important;
            background: #B2EDFA url("..//icons/Bild7.png")no-repeat !important;
            font-size:14px!important;
            border-style: outset !important;
            border-width:2px !important;
            border-left-color:  #bbddff !important;
            border-top-color:  #bbddff !important;
            border-right-color:  #11508d !important;
            border-bottom-color:  #11508d !important;
            text-decoration:none!important;
            padding-right:20px!important;
            padding-left:35px!important ;
            background-position:10px 6px!important;}
            
            #serviceworkers > div > ul > li:nth-child(3) > a{
            -moz-appearance:none!important;
            background: #F0F0F0 url("..//icons/Bild43.png")no-repeat !important;
            display: inline-block !important;
            min-width: 250px !important;
            max-width: 250px !important;
            margin-left: 13px !important;
            padding-left:35px!important;
            padding-right:20px!important;
            border-left-color:  lightblue!important;
            border-top-color:  lightblue!important;
            border-right-color:  dodgerblue!important;
            border-bottom-color:  dodgerblue!important;
            border-style: outset !important;
            border-width:2px !important;
            font-size:14px!important;
            text-decoration:none!important;
            background-position:10px 6px!important;
            border-radius:14px!important;
            color:black !important;
            text-align: left!important;
            white-space: nowrap!important;
            overflow: hidden !important;
            text-overflow: ellipsis!important;
            line-height: 2 !important;}
    
            #serviceworkers > div > ul > li:nth-child(3) > a:hover{
            -moz-appearance:none!important;
            background: #B2EDFA url("..//icons/Bild43.png")no-repeat !important;
            font-size:14px!important;
            border-style: outset !important;
            border-width:2px !important;
            border-left-color:  #bbddff !important;
            border-top-color:  #bbddff !important;
            border-right-color:  #11508d !important;
            border-bottom-color:  #11508d !important;
            text-decoration:none!important;
            padding-right:20px!important;
            padding-left:35px!important ;
            background-position:10px 6px!important;}
            }
    Alles anzeigen

    Mfg.
    Endor

  • About Seiten mit CSS Codes anpassen

    • Endor
    • 18. Juli 2020 um 18:54

    Damit werden sie zweispaltig.

    CSS
    #serviceworkers{
    column-count: 2 !important;
    }

    Sieht aber nicht gerade toll aus damit.
    Da muss man dann einiges noch anpassen.

    Mfg.

    Endor

  • About Seiten mit CSS Codes anpassen

    • Endor
    • 18. Juli 2020 um 18:49

    grisu2099

    Hast Du da auch so eine Lange Liste wie ich?

    Ich teste das mal und sag Bescheid.

    Mfg.
    Endor

  • About Seiten mit CSS Codes anpassen

    • Endor
    • 18. Juli 2020 um 17:19

    Eben auch mal im Nightly getestet, wie oben beschrieben,

    wenn Video läuft wird es angezeigt auch nachdem ich den youtube Tab geschlossen

    habe, aber sobald Nightly neu gestartet wird is es weg, dann wie bei Dir.

    Keine Ahnung warum das so ist. Hatte das hier auch für einige Firefox Version lang,

    zuerst ging es, da habe ich ja den ersten Code dafür erstellt, war letztes Jahr irgendwann im Sommer,

    dann aber Oktober, Firefox aktualisiert und es war plötzlich so wie bei Dir.

    Erst ein paar Firefox Versionen später ging es plötzlich wieder. Wieso, keine Ahnung.

    Mfg.
    Endor

Unterstütze uns!

Jährlich (2026)

35,3 %

35,3% (273,24 von 775 EUR)

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