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

Beiträge von universum123

  • passwordplus.uc.js

    • universum123
    • 10. Mai 2020 um 12:58

    Mahlzeit

    Zitat


    Windows 10 64 Bit

    Firefox

    Version 77.0b3

    Build-ID 20200507233245

    wieder ein Problem damit

    Meldung kommt

    Zitat

    Fehler: Datei nicht gefunden

    Die Dateien unter jar:file:///C:/Program Files/Mozilla Firefox Offi Browser77beta/omni.ja!/chrome/toolkit/content/passwordmgr/passwordManager.xhtml konnten nicht gefunden werden.

    Bitte überprüfen Sie die Adresse auf Rechtschreib-, Groß-/Kleinschreibungs- oder andere Fehler.

    Bitte überprüfen Sie, ob die Adresse umbenannt, gelöscht oder verschoben wurde.

    Code
    /*passwordplus.uc.js*/
       (function() {
    
        if (location != AppConstants.BROWSER_CHROME_URL)
           return;
    
        try {
           CustomizableUI.createWidget({
              id: 'pwuco-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: 'pwuco-toolbarbutton',
                     class: 'chromeclass-toolbar-additional',
                     type: 'menu',
                     removable: true,
                     label: 'Passwörter usw. öffnen',
                     tooltiptext: 'Cookies, Passwörter, Update-Chronik und Zertifikate öffnen'
                 };
                 for (var a in attrs)
                    toolbaritem.setAttribute(a, attrs[a]);
                 return toolbaritem;
            }
           });
       } catch(e) { };
    
       var css = '\
           #pwuco-toolbarbutton {list-style-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAq9JREFUeNp0U0toE1EUPW/mTWYSOya1FaU/0daFIEgRQbS1pQuFugiIFlyIUhdF3CpKKYKb0iK40JVo7cqNgh9cKH7A4kKQ0gqlurGCmiJBTfpLMpP3Ge9MKhQbB+4b3nv3c86597Hh24/wv09p/VhKldY6oF2w5obBMBg4N5/waoFBEEQmhExfGjgBJdQ6H9MyMXrrQbpqAsYYpJRkCp5fxvtP36jmavLVZd+ulsiH/624roJpQgcCIfzNtfWVBKziG55JJREy45p4KqXTlSTBmjKAZRq4PvYwCmLMQI3rEnSbgjVOpw9SAg0e8jx/thdGoGCsRlY0qOQJqyjGUVYWbo49x8njR6GUgk/wA01CKoLiez72DmdQVxtHTY2FuGMhETOQMAGHqBhUfbBuBAPufbCXV2ivoXecgo+dEQUUij42Jh2kam2CGUPC5khYBpywVYaNnt+jcBdeo+FAF4yYDUiBn59f4ZA7Dx7CXS74sBM2WQzxhANNVaUFlEm1YmCjPX8XTfv7SBQHz8YmCAHDkf5O7Mm9oQSEYLnggcdclEiFfIlBEQUiDuXTXREQkuR3UlEblFeAZuE+STpUuoD8isASOS2WiC9pwEyCSR2QQsMzDHj0F7ksnXP09vfQFJK4uR+00ByEM5YrSHw4l6QD2gVl6kAZGhYE24D8nW1o6OgGj3MUs/OwYjQ61IXvc18xXWgHL64sTcxOT3UNTU4ipBNqIgMTXhDHxfqraGnvhtvShqXMHGbeTcG2GCxO2jT34W1mdzRgrWQhQQzduDfppOrR1NiAjrljSDVux6bmViwuFjE/O42R7BB1RpCI4cwoiOLCBLtwbTwaHiEE8r+y48m6LWfKpHyn9RRtsY8IqI3LJfni8OWZwSrPZoH9c9BItrWKY57sS7WH90eAAQCzXjnOEP9Z6gAAAABJRU5ErkJggg==)}\
           #pwuco-toolbarbutton > dropmarker {display: none}\
           ';
    
       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 = "pwuco-button-popup";
       document.getElementById('pwuco-toolbarbutton').appendChild(menupopup);
    
       menuitem = document.createXULElement('menuitem');
       menuitem.setAttribute('label', "Passwörter öffnen");
       menuitem.setAttribute('tooltiptext', "Passwörter anzeigen");
       menuitem.setAttribute('accesskey', "P");
       menuitem.setAttribute('oncommand', "window.open('chrome://passwordmgr/content/passwordManager.xhtml', 'Toolkit:PasswordManager', 'chrome,resizable=yes');");
       menupopup.appendChild(menuitem);
    
       menuitem = document.createXULElement('menuitem');
       menuitem.setAttribute('label', "Cookies öffnen");
       menuitem.setAttribute('tooltiptext', "Cookies anzeigen");
       menuitem.setAttribute('accesskey', "C");
       menuitem.setAttribute('oncommand', "window.open('chrome://browser/content/preferences/cookies.xul', 'Browser:Cookies', 'chrome,resizable=yes');");
       menupopup.appendChild(menuitem);
    
       menuitem = document.createXULElement('menuitem');
       menuitem.setAttribute('label', "Zertifikate öffnen");
       menuitem.setAttribute('tooltiptext', "Zertifikate anzeigen");
       menuitem.setAttribute('accesskey', "z");
       menuitem.setAttribute('oncommand', "window.open('chrome://pippki/content/certManager.xul', 'mozilla:certmanager', 'chrome,resizable=yes,all,width=830,height=400');");
       menupopup.appendChild(menuitem);
       
       menuseparator = document.createXULElement('menuseparator');
       menupopup.appendChild(menuseparator);
       
       menuitem = document.createXULElement('menuitem');
       menuitem.setAttribute('label', "Chronik löschen");
       menuitem.setAttribute('tooltiptext', "Chronik löschen");
       menuitem.setAttribute('accesskey', "l");
       menuitem.setAttribute('oncommand', "window.open('chrome://browser/content/sanitize.xul', 'Toolkit:SanitizeDialog', 'chrome,resizable=yes');");
       menupopup.appendChild(menuitem);
    
       menuitem = document.createXULElement('menuitem');
       menuitem.setAttribute('label', "Update-Chronik öffnen");
       menuitem.setAttribute('tooltiptext', "Update-Chronik öffnen");
       menuitem.setAttribute('accesskey', "U");
       menuitem.setAttribute('oncommand', "window.open('chrome://mozapps/content/update/history.xul', 'Update:History', 'chrome,resizable=yes');");
       menupopup.appendChild(menuitem);
    
       // submenu of context menu
    
       menu = document.createXULElement('menu');
       menu.id = "context-pwuco-menu";
       menu.setAttribute('label', "Passwörter und co.");
       menu.setAttribute('accesskey', "o");
       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-password";
       menuitem.setAttribute('label', "Passwörter öffnen");
       menuitem.setAttribute('accesskey', "P");
       menuitem.setAttribute('oncommand', "Tab.open('chrome://passwordmgr/content/passwordManager.xul', 'Toolkit:PasswordManager', 'chrome,resizable=yes');");
       menupopup.appendChild(menuitem);
    
       menuitem = document.createXULElement('menuitem');
       menuitem.id = "context-opencookies";
       menuitem.setAttribute('label', "Cookies öffnen");
       menuitem.setAttribute('accesskey', "C");
       menuitem.setAttribute('oncommand', "window.open('chrome://browser/content/preferences/cookies.xul', 'Browser:Cookies', 'chrome,resizable=yes');");
       menupopup.appendChild(menuitem);
    
       menuitem = document.createXULElement('menuitem');
       menuitem.id = "context-opencert";
       menuitem.setAttribute('label', "Zertifikate öffnen");
       menuitem.setAttribute('accesskey', "z");
       menuitem.setAttribute('oncommand', "window.open('chrome://pippki/content/certManager.xul', 'mozilla:certmanager', 'chrome,resizable=yes,all,width=830,height=400');");
       menupopup.appendChild(menuitem);
          
       menuseparator = document.createXULElement('menuseparator');
       menupopup.appendChild(menuseparator);
       
       menuitem = document.createXULElement('menuitem');
       menuitem.id = "context-opensanitize";
       menuitem.setAttribute('label', "Chronik löschen");
       menuitem.setAttribute('accesskey', "l");
       menuitem.setAttribute('oncommand', "window.open('chrome://browser/content/sanitize.xul', 'Toolkit:SanitizeDialog', 'chrome,resizable=yes');");
       menupopup.appendChild(menuitem);
    
       menuitem = document.createXULElement('menuitem');
       menuitem.id = "context-openupdate";
       menuitem.setAttribute('label', "Update-Chronik öffnen");
       menuitem.setAttribute('accesskey', "U");
       menuitem.setAttribute('oncommand', "window.open('chrome://mozapps/content/update/history.xul', 'Update:History', 'chrome,resizable=yes');");
       menupopup.appendChild(menuitem);
    
    })();
    Alles anzeigen

    findet ewtl. jemand den Fehler oder hat eine Lösung!?

    aber bitte immer mit der Ruhe

    gruß uni

  • von list-style-image auf background umgestellt

    • universum123
    • 26. April 2020 um 18:27

    so ackere eure Vorschläge durch

    die @Import hab ich durch

    sind erst mal soweit sauber

    Zitat

    Und du kannst auch nicht einfach pauschal list.style-image gegen background austauschen

    hab ich gerade auch gemerkt

    arbeite mich von Eintrag zu Eintrag durch (Zeile für Zeile)

    was nich geht muß ich immer wieder zurück stellen

    das wird noch ne weile dauern mit nem Erfolgserlebnis der großen Art


    meld mich dann morgen Nachmittag wieder

    Gruß uni

  • von list-style-image auf background umgestellt

    • universum123
    • 26. April 2020 um 17:30

    wartet mal, ich arbeite gerade alle Positionen durch

    kann bisschen dauern

    uni

  • von list-style-image auf background umgestellt

    • universum123
    • 26. April 2020 um 17:13

    test

    ne das wars erst mal nich

    erst mal pause

    bin zurück auf die alte Version

    ....

  • von list-style-image auf background umgestellt

    • universum123
    • 26. April 2020 um 17:11
    Zitat von Boersenfeger

    .xul heißt jetzt .xhtml

    weiter habe ich nicht geguckt... erstmal..

    ich teste mal

  • Lesezeichen - eigenes Icon

    • universum123
    • 26. April 2020 um 17:04

    @ Zitronella

    werde es mal testen

    thx

  • von list-style-image auf background umgestellt

    • universum123
    • 26. April 2020 um 17:02

    von list-style-image auf background umgestellt

    dann kömmt so was raus - siehe Bild

    kommt davon wenn man(n) selbst darin rum pfuscht

    CSS
    /* userChrome.css **********************************************/
    
    @-moz-document url-prefix(chrome://browser/content/browser.xul) {
    /***************************************************************/
    
    /* CSS-Anweisungen bitte unter diesen Kommentar eintragen. */
    #fake-beispiel {
        font-color: red !important;
    }
    #@import "cssweb/hintergrund_camp-firefox.css";
    #@import "CSS/extra-config-menu.css";
    #@import "CSS/Mehrzeilige Tabreihen.css";
    #@import "CSS/pwuco-toolbarbutton.css";
    /***************************************************************/
    }
    
    @import "CSS/Button-Extras-Einstellungen.css;
    @import "CSS/extra-config-menu.css";
    @import "CSS/Hamburger-Panel.css";
    @import "CSS/Mehrstufige Lesezeichen-Symbolleiste.css";
    @import "CSS/Mehrzeilige-Tabreihen-mit-optischen-Anpassungen.css";
    @import "CSS/Menus.css";
    @import "CSS/Rahmen-um-Symbole.css";
    @import "CSS/Submenu-WebEntwickler.css";
    @import "CSS/Tabs_unten.css";
    @import "CSS/UserStyles-Loader-Button.css;
    @import "CSS/Vorwärts-Rückwärts-Button.css";
    @import "CSS/Uhr in die Menüzeile.css";
    
    /*---------------------------------------------------------------------*/
    /*                         New-TAB-Button verschönern                  */
    /*---------------------------------------------------------------------*/
    
    
    /*Ordner-Farbe anderes Symbol 23.10.2017 neu 05.2018 test*/
    
    /* Lesezeichen Sidebar - Ordnericon normal gelb */
    
        treechildren::-moz-tree-image(container) {
            background:  url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAYCAIAAAB8wupbAAAABnRSTlMAOQC3ALTOikJmAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAA7ElEQVQ4jeWTPUtDQRBFz8zu5sWUsUqXShBsLP3fQn6HNiKIlZ2VSfHi290Zi/ehhcJLIQhephmYw51huHKzu+UURUC8qtVAirlDQMBBwEAggFA0GblIMwD71fb+6poWDDIYOBgUyPAKykV+Pg8PCohbU1oMKmTwcXpycAg0HAEdVvMfqrf6IuVE/SbgyDygv8FIvM0DIiib7rDWpxlA/8E1l77rZDXPwUAIXippHjBa9bf8qT/8YyACICUkEizHfE5Vh3AXjZ+ASViUw/bxZZGP08SQuAou7yyLKsgAuEb1drO/+34JAShy1ncfywpjTlRir8AAAAAASUVORK5CYII=')
                !important; }
    }
    
    /* Lesezeichen verwalten */
    
        treechildren::-moz-tree-image(container) {
            background:  url('data:image/gif;base64,R0lGODlhEAAQAOZMAP/////MAF06AJhlAJNgAP//AP/lAP/UAJViAP/JANShAJRhAP/OAJRgAOy5AMaSAP/nAMyZAP/IAP/NAOazAP/RAMmVALaAAH5TAJNfAM2aAP/dT//XOv/KAOPOkMeRAP/nhOSxAOu4AP3KAOrTkv/nrv//1c6bAKdyAP/TAP/bPdWsMr6LA7iCALqGALiEAJNeAMCMAP/gcv/eYdGdAP/TEP/mgv/2y//gg/3JAP/ila97AP/aKsWPAJFbAJZgALeBAMiVAPC9AP/rOum2AHlQAP/4zP//z//jPpNdAP/LANixNP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAEwALAAAAAAQABAAAAefgEyCg4SFhoeFDQ0LjIiCCyU5IwEBBAiXCAOEBDohFBREIg6jQgibODQKqgonDz0fPkkwDQMEMhYRERpBMUsAv8C1Mw8uLUAXKwA2EgkJDJoEGy8swAAgCZQMz0wEKigkN8wJHZQBFZrcPDsAHErllBMT6AQ1HkYVKQf6++hMGUgAhhgYSBAChH4/TBwpwLAhw35MMAiYSLFiEUcYmQQCADs=')
    !important; }
    
    @-moz-document url-prefix(chrome://browser/content/browser.xhtml){
    url("chrome://browser/content/places/places.xul")
    
    .alertBox{
    display:none!important;}
    
    
    .bookmark-item[container="true"]{
    background: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/Folder2.ico") !important;
    
    }
    
    /* Lesezeichen verwalten - Ordnericon stehend gelb */
    @-moz-document url("chrome://browser/content/places/places.xul")  {
        background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAd5JREFUeNqMU79rFUEQ/vbuodFEEkzAImBpkUabFP4ldpaJhZXYm/RiZWsv/hkWFglBUyTIgyAIIfgIRjHv3r39MePM7N3LcbxAFvZ2b2bn22/mm3XMjF+HL3YW7q28YSIw8mBKoBihhhgCsoORot9d3/ywg3YowMXwNde/PzGnk2vn6PitrT+/PGeNaecg4+qNY3D43vy16A5wDDd4Aqg/ngmrjl/GoN0U5V1QquHQG3q+TPDVhVwyBffcmQGJmSVfyZk7R3SngI4JKfwDJ2+05zIg8gbiereTZRHhJ5KCMOwDFLjhoBTn2g0ghagfKeIYJDPFyibJVBtTREwq60SpYvh5++PpwatHsxSm9QRLSQpEVSd7/TYJUb49TX7gztpjjEffnoVw66+Ytovs14Yp7HaKmUXeX9rKUoMoLNW3srqI5fWn8JejrVkK0QcrkFLOgS39yoKUQe292WJ1guUHG8K2o8K00oO1BTvXoW4yasclUTgZYJY9aFNfAThX5CZRmczAV52oAPoupHhWRIUUAOoyUIlYVaAa/VbLbyiZUiyFbjQFNwiZQSGl4IDy9sO5Wrty0QLKhdZPxmgGcDo8ejn+c/6eiK9poz15Kw7Dr/vN/z6W7q++091/AQYA5mZ8GYJ9K0AAAAAASUVORK5CYII=') !important;
        }
    
    toolbarbutton[class="bookmark-item"][label="Movieblock"][type="menu"][container="true"]{
     background: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/My Videos2.ico") !important;
    
    }
    
    toolbarbutton[class="bookmark-item"][label="YouTube"][type="menu"][container="true"]{
     background: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/www.youtube.com.ico") !important;
    
    }
    
    toolbarbutton[class="bookmark-item"][label="MAGDEBURG"][type="menu"][container="true"]{
     background: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/Magdeburg-16x16.png") !important;
    
    }
    
     .bookmark-item[label="Lesezeichen in Tab"]{
     background: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/Firefox16x16.ico") !important;} 
    
    .bookmark-item[label="Sport"]{
     background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABc0lEQVR42mNkoBAwUmxAw7LHC/nYfsWhS2zYfIDp0MLk/wQNKJtz639ptArDmSc/4IJ//vxluH31FU5NZy7dZV/W5PYLboCyujjDj5+sKIrEhRHs33+gBv9lYHj69CPD7eu3pBbW2D+3i5/Lylg6++Z/cRl+hm9f/jF8fPeOoJ+ZWVkZzp04nfjr58/HQO4toAE3/guKcDG8f/cdrKAmVo3h2MPvRAVge8tyP8aSWTf+MzH/ZPj7h5lBV1+B4c17guEGBh/fv//15OEjU6AB1////PmRQUtTieHLT3aGf8TpZ3jy4OHxyTl6VowlM6////jxBYOltRHDi9f/iNL888cPhqePHqXPKTOfxVg889p/GSkeht8MvMCYIM761y+evZqcoyMOjkaQAfr6UgzPXvxjYGVjIqj5/79/DLdv3Fs1s8QkHGyAd9rEWH0rjwUfP/0iyvY/v3//3bmgxPLB5X1nwQYAsQVxwYYBTsAMoAhQbAAAAjCiCL9JqqgAAAAASUVORK5CYII=") !important;}
    
    
    .bookmark-item[label="Allgemein Software Download"]{
     background: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/SFX1.ico") !important;}
     
     .bookmark-item[label="02_Internet-Browser-Email"]{
     background: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/Firefox16x16.ico") !important;} 
     
     .bookmark-item[label="00_Mozilla Firefox DE"]{
     background: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/Firefox16x16.ico") !important;} 
    
    
    .bookmark-item[label="MAGDEBURG"]{
     background: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/Magdeburg-16x16.png") !important;}
    
    
    .bookmark-item[label="Fan Club Seiten"]{
     background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABc0lEQVR42mNkoBAwUmxAw7LHC/nYfsWhS2zYfIDp0MLk/wQNKJtz639ptArDmSc/4IJ//vxluH31FU5NZy7dZV/W5PYLboCyujjDj5+sKIrEhRHs33+gBv9lYHj69CPD7eu3pBbW2D+3i5/Lylg6++Z/cRl+hm9f/jF8fPeOoJ+ZWVkZzp04nfjr58/HQO4toAE3/guKcDG8f/cdrKAmVo3h2MPvRAVge8tyP8aSWTf+MzH/ZPj7h5lBV1+B4c17guEGBh/fv//15OEjU6AB1////PmRQUtTieHLT3aGf8TpZ3jy4OHxyTl6VowlM6////jxBYOltRHDi9f/iNL888cPhqePHqXPKTOfxVg889p/GSkeht8MvMCYIM761y+evZqcoyMOjkaQAfr6UgzPXvxjYGVjIqj5/79/DLdv3Fs1s8QkHGyAd9rEWH0rjwUfP/0iyvY/v3//3bmgxPLB5X1nwQYAsQVxwYYBTsAMoAhQbAAAAjCiCL9JqqgAAAAASUVORK5CYII=") !important;}
    
     .bookmark-item[label="OttO Shop"]{
     background: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/otto.de16x16.ico") !important;} 
     
    .bookmark-item[label="BLUE GENERATION - ULTRAS 1.FC MAGDEBURG"]{
        -moz-appearance:none!important;
        background:  url("file:///c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/BlockU16x16.png") no-repeat !important;
        padding-left: 25px !important;
        background-position: 5px 4px !important;
    }
    .bookmark-item[label="BLUE GENERATION - ULTRAS 1.FC MAGDEBURG"] > image,
    .bookmark-item[label="BLUE GENERATION - ULTRAS 1.FC MAGDEBURG"] > .menu-iconic-left {
        display: none!important;
    }
    .bookmark-item[label="BLUE GENERATION - ULTRAS 1.FC MAGDEBURG"]:hover {
        background:  url("file:///c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/BlockU16x16.png") no-repeat !important;
        padding-left: 25px !important;
        background-position: 5px 4px !important;
        background-color: #91C9F7 !important;
    }
    
    
    /************************/
    /* Menü Einträge färben */
    /************************/
    
    #menuitem, [label="Add-ons"]{
    color:Blue!important}
    #menuitem, [label="Beenden"]{
    color:red!important}
    #menuitem, [label="Einstellungen"]{
    color:blue!important}
    #menuitem, [label="Hilfe"]{
    color:green!important}
    #menuitem, [label="Neues privates Fenster"]{
    color:violet!important}
    #menuitem, [label="Bei Sync anmelden"]{
    color:grey!important}
    #menuitem, [label="Sonstiges"]{
    color:grey!important}
    #menuitem, [label="Web-Entwickler"]{
    color:red!important}
    #favorititem, [label="Lesezeichen verwalten"]{
    color:blue!important}
    #favorititem, [label="Lesezeichen-Symbolleiste"]{
    color:grey!important}
    #favorititem, [label="Weitere Lesezeichen"]{
    color:grey!important}
    #favorititem, [label="about : config"]{
    color:lightblue!important}
    #favorititem, [label="Lesezeichen-Sidebar anzeigen"]{
    color:grey!important}
    Alles anzeigen

    wo sind die Fehler im System :?:

    uni

  • Lesezeichen - eigenes Icon

    • universum123
    • 26. April 2020 um 16:47

    @ Andreas oder wer will

    hätte da noch mal eine Frage

    CSS
    .bookmark-item[label="BLUE GENERATION - ULTRAS 1.FC MAGDEBURG"]{
        -moz-appearance:none!important;
        background:  url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABc0lEQVR42mNkoBAwUmxAw7LHC/nYfsWhS2zYfIDp0MLk/wQNKJtz639ptArDmSc/4IJ//vxluH31FU5NZy7dZV/W5PYLboCyujjDj5+sKIrEhRHs33+gBv9lYHj69CPD7eu3pBbW2D+3i5/Lylg6++Z/cRl+hm9f/jF8fPeOoJ+ZWVkZzp04nfjr58/HQO4toAE3/guKcDG8f/cdrKAmVo3h2MPvRAVge8tyP8aSWTf+MzH/ZPj7h5lBV1+B4c17guEGBh/fv//15OEjU6AB1////PmRQUtTieHLT3aGf8TpZ3jy4OHxyTl6VowlM6////jxBYOltRHDi9f/iNL888cPhqePHqXPKTOfxVg889p/GSkeht8MvMCYIM761y+evZqcoyMOjkaQAfr6UgzPXvxjYGVjIqj5/79/DLdv3Fs1s8QkHGyAd9rEWH0rjwUfP/0iyvY/v3//3bmgxPLB5X1nwQYAsQVxwYYBTsAMoAhQbAAAAjCiCL9JqqgAAAAASUVORK5CYII=") no-repeat !important;
        padding-left: 25px !important;
        background-position: 5px 4px !important;
    }
    .bookmark-item[label="BLUE GENERATION - ULTRAS 1.FC MAGDEBURG"] > image,
    .bookmark-item[label="BLUE GENERATION - ULTRAS 1.FC MAGDEBURG"] > .menu-iconic-left {
        display: none!important;
    }
    .bookmark-item[label="BLUE GENERATION - ULTRAS 1.FC MAGDEBURG"]:hover {
        background:  url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABc0lEQVR42mNkoBAwUmxAw7LHC/nYfsWhS2zYfIDp0MLk/wQNKJtz639ptArDmSc/4IJ//vxluH31FU5NZy7dZV/W5PYLboCyujjDj5+sKIrEhRHs33+gBv9lYHj69CPD7eu3pBbW2D+3i5/Lylg6++Z/cRl+hm9f/jF8fPeOoJ+ZWVkZzp04nfjr58/HQO4toAE3/guKcDG8f/cdrKAmVo3h2MPvRAVge8tyP8aSWTf+MzH/ZPj7h5lBV1+B4c17guEGBh/fv//15OEjU6AB1////PmRQUtTieHLT3aGf8TpZ3jy4OHxyTl6VowlM6////jxBYOltRHDi9f/iNL888cPhqePHqXPKTOfxVg889p/GSkeht8MvMCYIM761y+evZqcoyMOjkaQAfr6UgzPXvxjYGVjIqj5/79/DLdv3Fs1s8QkHGyAd9rEWH0rjwUfP/0iyvY/v3//3bmgxPLB5X1nwQYAsQVxwYYBTsAMoAhQbAAAAjCiCL9JqqgAAAAASUVORK5CYII=") no-repeat !important;
        padding-left: 25px !important;
        background-position: 5px 4px !important;
        background-color: #91C9F7 !important;
    }
    Alles anzeigen

    warum ist das hier ein solch "doppelgemoppel" im css?

    sonst ist das doch bloß immer 2 bzw. 3 Zeiler


    gruß uni

  • Lesezeichen - eigenes Icon

    • universum123
    • 26. April 2020 um 15:18
    Zitat von 2002Andreas
    Zitat von universum123

    es geht hurra

    Nur das zählt:thumbup:;)

    ein sorry sorry sorry an alle die ich heut hier beschäftigt habe


  • Lesezeichen - eigenes Icon

    • universum123
    • 26. April 2020 um 15:09
    Zitat von milupo

    Tipp: Schaue mal, ob in der Originalbezeichnung deiner Mageburger Lesezeichen wirklich ein Bindestrich enthalten ist. ;)

    och menno

    häts dat nich gleich sagen können

    omg is mir nicht aufgefallen

    es geht hurra

  • Lesezeichen - eigenes Icon

    • universum123
    • 26. April 2020 um 14:59
    Zitat von 2002Andreas

    Beitrag Nr. 22 hast du mal überprüft?

    ja

    geht alles bis auf das ominöse Lesezeichen

  • Lesezeichen - eigenes Icon

    • universum123
    • 26. April 2020 um 14:55
    Zitat von 2002Andreas

    Und so?

    CSS
    .bookmark-item[label="Sport"]{
     list-style-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABc0lEQVR42mNkoBAwUmxAw7LHC/nYfsWhS2zYfIDp0MLk/wQNKJtz639ptArDmSc/4IJ//vxluH31FU5NZy7dZV/W5PYLboCyujjDj5+sKIrEhRHs33+gBv9lYHj69CPD7eu3pBbW2D+3i5/Lylg6++Z/cRl+hm9f/jF8fPeOoJ+ZWVkZzp04nfjr58/HQO4toAE3/guKcDG8f/cdrKAmVo3h2MPvRAVge8tyP8aSWTf+MzH/ZPj7h5lBV1+B4c17guEGBh/fv//15OEjU6AB1////PmRQUtTieHLT3aGf8TpZ3jy4OHxyTl6VowlM6////jxBYOltRHDi9f/iNL888cPhqePHqXPKTOfxVg889p/GSkeht8MvMCYIM761y+evZqcoyMOjkaQAfr6UgzPXvxjYGVjIqj5/79/DLdv3Fs1s8QkHGyAd9rEWH0rjwUfP/0iyvY/v3//3bmgxPLB5X1nwQYAsQVxwYYBTsAMoAhQbAAAAjCiCL9JqqgAAAAASUVORK5CYII=") !important;}
    
    
    .bookmark-item[label="Allgemein Software Download"]{
     list-style-image: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/SFX1.ico") !important;}
     
     .bookmark-item[label="02_Internet-Browser-Email"]{
     list-style-image: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/Firefox16x16.ico") !important;} 
     
     .bookmark-item[label="00_Mozilla Firefox DE"]{
     list-style-image: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/Firefox16x16.ico") !important;} 
    
    
    .bookmark-item[label="MAGDEBURG"]{
     list-style-image: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/Magdeburg-16x16.png") !important;}
    
    
    .bookmark-item[label="Fan Club Seiten"]{
     list-style-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABc0lEQVR42mNkoBAwUmxAw7LHC/nYfsWhS2zYfIDp0MLk/wQNKJtz639ptArDmSc/4IJ//vxluH31FU5NZy7dZV/W5PYLboCyujjDj5+sKIrEhRHs33+gBv9lYHj69CPD7eu3pBbW2D+3i5/Lylg6++Z/cRl+hm9f/jF8fPeOoJ+ZWVkZzp04nfjr58/HQO4toAE3/guKcDG8f/cdrKAmVo3h2MPvRAVge8tyP8aSWTf+MzH/ZPj7h5lBV1+B4c17guEGBh/fv//15OEjU6AB1////PmRQUtTieHLT3aGf8TpZ3jy4OHxyTl6VowlM6////jxBYOltRHDi9f/iNL888cPhqePHqXPKTOfxVg889p/GSkeht8MvMCYIM761y+evZqcoyMOjkaQAfr6UgzPXvxjYGVjIqj5/79/DLdv3Fs1s8QkHGyAd9rEWH0rjwUfP/0iyvY/v3//3bmgxPLB5X1nwQYAsQVxwYYBTsAMoAhQbAAAAjCiCL9JqqgAAAAASUVORK5CYII=") !important;}
    
     .bookmark-item[label="OttO Shop"]{
     list-style-image: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/otto.de16x16.ico") !important;} 
     
    .bookmark-item[label="BLUE GENERATION - ULTRAS 1.FC MAGDEBURG"]{
        -moz-appearance:none!important;
        background:  url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABc0lEQVR42mNkoBAwUmxAw7LHC/nYfsWhS2zYfIDp0MLk/wQNKJtz639ptArDmSc/4IJ//vxluH31FU5NZy7dZV/W5PYLboCyujjDj5+sKIrEhRHs33+gBv9lYHj69CPD7eu3pBbW2D+3i5/Lylg6++Z/cRl+hm9f/jF8fPeOoJ+ZWVkZzp04nfjr58/HQO4toAE3/guKcDG8f/cdrKAmVo3h2MPvRAVge8tyP8aSWTf+MzH/ZPj7h5lBV1+B4c17guEGBh/fv//15OEjU6AB1////PmRQUtTieHLT3aGf8TpZ3jy4OHxyTl6VowlM6////jxBYOltRHDi9f/iNL888cPhqePHqXPKTOfxVg889p/GSkeht8MvMCYIM761y+evZqcoyMOjkaQAfr6UgzPXvxjYGVjIqj5/79/DLdv3Fs1s8QkHGyAd9rEWH0rjwUfP/0iyvY/v3//3bmgxPLB5X1nwQYAsQVxwYYBTsAMoAhQbAAAAjCiCL9JqqgAAAAASUVORK5CYII=") no-repeat !important;
        padding-left: 25px !important;
        background-position: 5px 4px !important;
    }
    .bookmark-item[label="BLUE GENERATION - ULTRAS 1.FC MAGDEBURG"] > image,
    .bookmark-item[label="BLUE GENERATION - ULTRAS 1.FC MAGDEBURG"] > .menu-iconic-left {
        display: none!important;
    }
    .bookmark-item[label="BLUE GENERATION - ULTRAS 1.FC MAGDEBURG"]:hover {
        background:  url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABc0lEQVR42mNkoBAwUmxAw7LHC/nYfsWhS2zYfIDp0MLk/wQNKJtz639ptArDmSc/4IJ//vxluH31FU5NZy7dZV/W5PYLboCyujjDj5+sKIrEhRHs33+gBv9lYHj69CPD7eu3pBbW2D+3i5/Lylg6++Z/cRl+hm9f/jF8fPeOoJ+ZWVkZzp04nfjr58/HQO4toAE3/guKcDG8f/cdrKAmVo3h2MPvRAVge8tyP8aSWTf+MzH/ZPj7h5lBV1+B4c17guEGBh/fv//15OEjU6AB1////PmRQUtTieHLT3aGf8TpZ3jy4OHxyTl6VowlM6////jxBYOltRHDi9f/iNL888cPhqePHqXPKTOfxVg889p/GSkeht8MvMCYIM761y+evZqcoyMOjkaQAfr6UgzPXvxjYGVjIqj5/79/DLdv3Fs1s8QkHGyAd9rEWH0rjwUfP/0iyvY/v3//3bmgxPLB5X1nwQYAsQVxwYYBTsAMoAhQbAAAAjCiCL9JqqgAAAAASUVORK5CYII=") no-repeat !important;
        padding-left: 25px !important;
        background-position: 5px 4px !important;
        background-color: #91C9F7 !important;
    }
    Alles anzeigen

    nö

    irgendwo ist der wurm drin

    bis auf dat Lesezeichen geht alles

  • Lesezeichen - eigenes Icon

    • universum123
    • 26. April 2020 um 14:46

    ja Andreas hab ich

    wenn ich komplette auf "background" zerhauts mir die "userChrome"

    so hier mal die alte originale

    CSS
    /* userChrome.css **********************************************/
    
    @-moz-document url-prefix(chrome://browser/content/browser.xul) {
    /***************************************************************/
    
    /* CSS-Anweisungen bitte unter diesen Kommentar eintragen. */
    #fake-beispiel {
        font-color: red !important;
    }
    #@import "cssweb/hintergrund_camp-firefox.css";
    #@import "CSS/extra-config-menu.css";
    #@import "CSS/Mehrzeilige Tabreihen.css";
    #@import "CSS/pwuco-toolbarbutton.css";
    /***************************************************************/
    }
    
    @import "CSS/Button-Extras-Einstellungen.css;
    @import "CSS/extra-config-menu.css";
    @import "CSS/Hamburger-Panel.css";
    @import "CSS/Mehrstufige Lesezeichen-Symbolleiste.css";
    @import "CSS/Mehrzeilige-Tabreihen-mit-optischen-Anpassungen.css";
    @import "CSS/Menus.css";
    @import "CSS/Rahmen-um-Symbole.css";
    @import "CSS/Submenu-WebEntwickler.css";
    @import "CSS/Tabs_unten.css";
    @import "CSS/UserStyles-Loader-Button.css;
    @import "CSS/Vorwärts-Rückwärts-Button.css";
    @import "CSS/Uhr in die Menüzeile.css";
    
    /*---------------------------------------------------------------------*/
    /*                         New-TAB-Button verschönern                  */
    /*---------------------------------------------------------------------*/
    
    
    /*Ordner-Farbe anderes Symbol 23.10.2017 neu 05.2018 test*/
    
    /* Lesezeichen Sidebar - Ordnericon normal gelb */
    
        treechildren::-moz-tree-image(container) {
            list-style-image:  url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAYCAIAAAB8wupbAAAABnRSTlMAOQC3ALTOikJmAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAA7ElEQVQ4jeWTPUtDQRBFz8zu5sWUsUqXShBsLP3fQn6HNiKIlZ2VSfHi290Zi/ehhcJLIQhephmYw51huHKzu+UURUC8qtVAirlDQMBBwEAggFA0GblIMwD71fb+6poWDDIYOBgUyPAKykV+Pg8PCohbU1oMKmTwcXpycAg0HAEdVvMfqrf6IuVE/SbgyDygv8FIvM0DIiib7rDWpxlA/8E1l77rZDXPwUAIXippHjBa9bf8qT/8YyACICUkEizHfE5Vh3AXjZ+ASViUw/bxZZGP08SQuAou7yyLKsgAuEb1drO/+34JAShy1ncfywpjTlRir8AAAAAASUVORK5CYII=')
                !important; }
    }
    
    /* Lesezeichen verwalten */
    
        treechildren::-moz-tree-image(container) {
            list-style-image:  url('data:image/gif;base64,R0lGODlhEAAQAOZMAP/////MAF06AJhlAJNgAP//AP/lAP/UAJViAP/JANShAJRhAP/OAJRgAOy5AMaSAP/nAMyZAP/IAP/NAOazAP/RAMmVALaAAH5TAJNfAM2aAP/dT//XOv/KAOPOkMeRAP/nhOSxAOu4AP3KAOrTkv/nrv//1c6bAKdyAP/TAP/bPdWsMr6LA7iCALqGALiEAJNeAMCMAP/gcv/eYdGdAP/TEP/mgv/2y//gg/3JAP/ila97AP/aKsWPAJFbAJZgALeBAMiVAPC9AP/rOum2AHlQAP/4zP//z//jPpNdAP/LANixNP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAEwALAAAAAAQABAAAAefgEyCg4SFhoeFDQ0LjIiCCyU5IwEBBAiXCAOEBDohFBREIg6jQgibODQKqgonDz0fPkkwDQMEMhYRERpBMUsAv8C1Mw8uLUAXKwA2EgkJDJoEGy8swAAgCZQMz0wEKigkN8wJHZQBFZrcPDsAHErllBMT6AQ1HkYVKQf6++hMGUgAhhgYSBAChH4/TBwpwLAhw35MMAiYSLFiEUcYmQQCADs=')
    !important; }
    
    @-moz-document url-prefix(chrome://browser/content/browser.xhtml){
    url("chrome://browser/content/places/places.xul")
    
    .alertBox{
    display:none!important;}
    
    
    .bookmark-item[container="true"]{
    list-style-image: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/Folder2.ico") !important;
    
    }
    
    /* Lesezeichen verwalten - Ordnericon stehend gelb */
    @-moz-document url("chrome://browser/content/places/places.xul")  {
        list-style-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAd5JREFUeNqMU79rFUEQ/vbuodFEEkzAImBpkUabFP4ldpaJhZXYm/RiZWsv/hkWFglBUyTIgyAIIfgIRjHv3r39MePM7N3LcbxAFvZ2b2bn22/mm3XMjF+HL3YW7q28YSIw8mBKoBihhhgCsoORot9d3/ywg3YowMXwNde/PzGnk2vn6PitrT+/PGeNaecg4+qNY3D43vy16A5wDDd4Aqg/ngmrjl/GoN0U5V1QquHQG3q+TPDVhVwyBffcmQGJmSVfyZk7R3SngI4JKfwDJ2+05zIg8gbiereTZRHhJ5KCMOwDFLjhoBTn2g0ghagfKeIYJDPFyibJVBtTREwq60SpYvh5++PpwatHsxSm9QRLSQpEVSd7/TYJUb49TX7gztpjjEffnoVw66+Ytovs14Yp7HaKmUXeX9rKUoMoLNW3srqI5fWn8JejrVkK0QcrkFLOgS39yoKUQe292WJ1guUHG8K2o8K00oO1BTvXoW4yasclUTgZYJY9aFNfAThX5CZRmczAV52oAPoupHhWRIUUAOoyUIlYVaAa/VbLbyiZUiyFbjQFNwiZQSGl4IDy9sO5Wrty0QLKhdZPxmgGcDo8ejn+c/6eiK9poz15Kw7Dr/vN/z6W7q++091/AQYA5mZ8GYJ9K0AAAAAASUVORK5CYII=') !important;
        }
    
    toolbarbutton[class="bookmark-item"][label="Movieblock"][type="menu"][container="true"]{
     list-style-image: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/My Videos2.ico") !important;
    
    }
    
    toolbarbutton[class="bookmark-item"][label="YouTube"][type="menu"][container="true"]{
     list-style-image: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/www.youtube.com.ico") !important;
    
    }
    
    toolbarbutton[class="bookmark-item"][label="MAGDEBURG"][type="menu"][container="true"]{
     list-style-image: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/Magdeburg-16x16.png") !important;
    
    }
    
     .bookmark-item[label="Lesezeichen in Tab"]{
     list-style-image: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/Firefox16x16.ico") !important;} 
    
    .bookmark-item[label="Sport"]{
     list-style-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABc0lEQVR42mNkoBAwUmxAw7LHC/nYfsWhS2zYfIDp0MLk/wQNKJtz639ptArDmSc/4IJ//vxluH31FU5NZy7dZV/W5PYLboCyujjDj5+sKIrEhRHs33+gBv9lYHj69CPD7eu3pBbW2D+3i5/Lylg6++Z/cRl+hm9f/jF8fPeOoJ+ZWVkZzp04nfjr58/HQO4toAE3/guKcDG8f/cdrKAmVo3h2MPvRAVge8tyP8aSWTf+MzH/ZPj7h5lBV1+B4c17guEGBh/fv//15OEjU6AB1////PmRQUtTieHLT3aGf8TpZ3jy4OHxyTl6VowlM6////jxBYOltRHDi9f/iNL888cPhqePHqXPKTOfxVg889p/GSkeht8MvMCYIM761y+evZqcoyMOjkaQAfr6UgzPXvxjYGVjIqj5/79/DLdv3Fs1s8QkHGyAd9rEWH0rjwUfP/0iyvY/v3//3bmgxPLB5X1nwQYAsQVxwYYBTsAMoAhQbAAAAjCiCL9JqqgAAAAASUVORK5CYII=") !important;}
    
    
    .bookmark-item[label="Allgemein Software Download"]{
     list-style-image: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/SFX1.ico") !important;}
     
     .bookmark-item[label="02_Internet-Browser-Email"]{
     list-style-image: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/Firefox16x16.ico") !important;} 
     
     .bookmark-item[label="00_Mozilla Firefox DE"]{
     list-style-image: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/Firefox16x16.ico") !important;} 
    
    
    .bookmark-item[label="MAGDEBURG"]{
     list-style-image: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/Magdeburg-16x16.png") !important;}
    
    
    .bookmark-item[label="Fan Club Seiten"]{
     list-style-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABc0lEQVR42mNkoBAwUmxAw7LHC/nYfsWhS2zYfIDp0MLk/wQNKJtz639ptArDmSc/4IJ//vxluH31FU5NZy7dZV/W5PYLboCyujjDj5+sKIrEhRHs33+gBv9lYHj69CPD7eu3pBbW2D+3i5/Lylg6++Z/cRl+hm9f/jF8fPeOoJ+ZWVkZzp04nfjr58/HQO4toAE3/guKcDG8f/cdrKAmVo3h2MPvRAVge8tyP8aSWTf+MzH/ZPj7h5lBV1+B4c17guEGBh/fv//15OEjU6AB1////PmRQUtTieHLT3aGf8TpZ3jy4OHxyTl6VowlM6////jxBYOltRHDi9f/iNL888cPhqePHqXPKTOfxVg889p/GSkeht8MvMCYIM761y+evZqcoyMOjkaQAfr6UgzPXvxjYGVjIqj5/79/DLdv3Fs1s8QkHGyAd9rEWH0rjwUfP/0iyvY/v3//3bmgxPLB5X1nwQYAsQVxwYYBTsAMoAhQbAAAAjCiCL9JqqgAAAAASUVORK5CYII=") !important;}
    
     .bookmark-item[label="OttO Shop"]{
     list-style-image: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/otto.de16x16.ico") !important;} 
     
     .bookmark-item[label="BLUE GENERATION ULTRAS 1.FC MAGDEBURG"]{
     list-style-image: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/BlockU16x16.png) !important;}
     
    
    
    /************************/
    /* Menü Einträge färben */
    /************************/
    
    #menuitem, [label="Add-ons"]{
    color:Blue!important}
    #menuitem, [label="Beenden"]{
    color:red!important}
    #menuitem, [label="Einstellungen"]{
    color:blue!important}
    #menuitem, [label="Hilfe"]{
    color:green!important}
    #menuitem, [label="Neues privates Fenster"]{
    color:violet!important}
    #menuitem, [label="Bei Sync anmelden"]{
    color:grey!important}
    #menuitem, [label="Sonstiges"]{
    color:grey!important}
    #menuitem, [label="Web-Entwickler"]{
    color:red!important}
    #favorititem, [label="Lesezeichen verwalten"]{
    color:blue!important}
    #favorititem, [label="Lesezeichen-Symbolleiste"]{
    color:grey!important}
    #favorititem, [label="Weitere Lesezeichen"]{
    color:grey!important}
    #favorititem, [label="about : config"]{
    color:lightblue!important}
    #favorititem, [label="Lesezeichen-Sidebar anzeigen"]{
    color:grey!important}
    Alles anzeigen
  • Lesezeichen - eigenes Icon

    • universum123
    • 26. April 2020 um 14:35

    es geht ja nur das "dümmliche" Lesezeichen Icon von "BLUE GENERATION - ULTRAS 1.FC MAGDEBURG" nicht


    Andreas gibt sich ja schon die größte mühe damit

  • Lesezeichen - eigenes Icon

    • universum123
    • 26. April 2020 um 14:27

    die mit "list-style-image" und mit "//" gehen alle

    werde sie aber mal umstellen auf dein Rat

    uni

  • Lesezeichen - eigenes Icon

    • universum123
    • 26. April 2020 um 14:17

    verzwickt

    nix nada

    aus userChrome.css

    CSS
    .bookmark-item[label="Sport"]{
     list-style-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABc0lEQVR42mNkoBAwUmxAw7LHC/nYfsWhS2zYfIDp0MLk/wQNKJtz639ptArDmSc/4IJ//vxluH31FU5NZy7dZV/W5PYLboCyujjDj5+sKIrEhRHs33+gBv9lYHj69CPD7eu3pBbW2D+3i5/Lylg6++Z/cRl+hm9f/jF8fPeOoJ+ZWVkZzp04nfjr58/HQO4toAE3/guKcDG8f/cdrKAmVo3h2MPvRAVge8tyP8aSWTf+MzH/ZPj7h5lBV1+B4c17guEGBh/fv//15OEjU6AB1////PmRQUtTieHLT3aGf8TpZ3jy4OHxyTl6VowlM6////jxBYOltRHDi9f/iNL888cPhqePHqXPKTOfxVg889p/GSkeht8MvMCYIM761y+evZqcoyMOjkaQAfr6UgzPXvxjYGVjIqj5/79/DLdv3Fs1s8QkHGyAd9rEWH0rjwUfP/0iyvY/v3//3bmgxPLB5X1nwQYAsQVxwYYBTsAMoAhQbAAAAjCiCL9JqqgAAAAASUVORK5CYII=") !important;}
    
    
    .bookmark-item[label="Allgemein Software Download"]{
     list-style-image: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/SFX1.ico") !important;}
     
     .bookmark-item[label="02_Internet-Browser-Email"]{
     list-style-image: url(file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/Firefox16x16.ico") !important;} 
     
     .bookmark-item[label="00_Mozilla Firefox DE"]{
     list-style-image: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/Firefox16x16.ico") !important;} 
    
    
    .bookmark-item[label="MAGDEBURG"]{
     list-style-image: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/Magdeburg-16x16.png") !important;}
    
    
    .bookmark-item[label="Fan Club Seiten"]{
     list-style-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABc0lEQVR42mNkoBAwUmxAw7LHC/nYfsWhS2zYfIDp0MLk/wQNKJtz639ptArDmSc/4IJ//vxluH31FU5NZy7dZV/W5PYLboCyujjDj5+sKIrEhRHs33+gBv9lYHj69CPD7eu3pBbW2D+3i5/Lylg6++Z/cRl+hm9f/jF8fPeOoJ+ZWVkZzp04nfjr58/HQO4toAE3/guKcDG8f/cdrKAmVo3h2MPvRAVge8tyP8aSWTf+MzH/ZPj7h5lBV1+B4c17guEGBh/fv//15OEjU6AB1////PmRQUtTieHLT3aGf8TpZ3jy4OHxyTl6VowlM6////jxBYOltRHDi9f/iNL888cPhqePHqXPKTOfxVg889p/GSkeht8MvMCYIM761y+evZqcoyMOjkaQAfr6UgzPXvxjYGVjIqj5/79/DLdv3Fs1s8QkHGyAd9rEWH0rjwUfP/0iyvY/v3//3bmgxPLB5X1nwQYAsQVxwYYBTsAMoAhQbAAAAjCiCL9JqqgAAAAASUVORK5CYII=") !important;}
    
     .bookmark-item[label="OttO Shop"]{
     list-style-image: url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/otto.de16x16.ico") !important;} 
     
    
     
    .bookmark-item[label="BLUE GENERATION - ULTRAS 1.FC MAGDEBURG"]{
        -moz-appearance:none!important;
        background:  url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABc0lEQVR42mNkoBAwUmxAw7LHC/nYfsWhS2zYfIDp0MLk/wQNKJtz639ptArDmSc/4IJ//vxluH31FU5NZy7dZV/W5PYLboCyujjDj5+sKIrEhRHs33+gBv9lYHj69CPD7eu3pBbW2D+3i5/Lylg6++Z/cRl+hm9f/jF8fPeOoJ+ZWVkZzp04nfjr58/HQO4toAE3/guKcDG8f/cdrKAmVo3h2MPvRAVge8tyP8aSWTf+MzH/ZPj7h5lBV1+B4c17guEGBh/fv//15OEjU6AB1////PmRQUtTieHLT3aGf8TpZ3jy4OHxyTl6VowlM6////jxBYOltRHDi9f/iNL888cPhqePHqXPKTOfxVg889p/GSkeht8MvMCYIM761y+evZqcoyMOjkaQAfr6UgzPXvxjYGVjIqj5/79/DLdv3Fs1s8QkHGyAd9rEWH0rjwUfP/0iyvY/v3//3bmgxPLB5X1nwQYAsQVxwYYBTsAMoAhQbAAAAjCiCL9JqqgAAAAASUVORK5CYII=") no-repeat !important;
        padding-left: 25px !important;
        background-position: 5px 4px !important;
    }
    .bookmark-item[label="BLUE GENERATION - ULTRAS 1.FC MAGDEBURG"] > image,
    .bookmark-item[label="BLUE GENERATION - ULTRAS 1.FC MAGDEBURG"] > .menu-iconic-left {
        display: none!important;
    }
    .bookmark-item[label="BLUE GENERATION - ULTRAS 1.FC MAGDEBURG"]:hover {
        background:  url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABc0lEQVR42mNkoBAwUmxAw7LHC/nYfsWhS2zYfIDp0MLk/wQNKJtz639ptArDmSc/4IJ//vxluH31FU5NZy7dZV/W5PYLboCyujjDj5+sKIrEhRHs33+gBv9lYHj69CPD7eu3pBbW2D+3i5/Lylg6++Z/cRl+hm9f/jF8fPeOoJ+ZWVkZzp04nfjr58/HQO4toAE3/guKcDG8f/cdrKAmVo3h2MPvRAVge8tyP8aSWTf+MzH/ZPj7h5lBV1+B4c17guEGBh/fv//15OEjU6AB1////PmRQUtTieHLT3aGf8TpZ3jy4OHxyTl6VowlM6////jxBYOltRHDi9f/iNL888cPhqePHqXPKTOfxVg889p/GSkeht8MvMCYIM761y+evZqcoyMOjkaQAfr6UgzPXvxjYGVjIqj5/79/DLdv3Fs1s8QkHGyAd9rEWH0rjwUfP/0iyvY/v3//3bmgxPLB5X1nwQYAsQVxwYYBTsAMoAhQbAAAAjCiCL9JqqgAAAAASUVORK5CYII=") no-repeat !important;
        padding-left: 25px !important;
        background-position: 5px 4px !important;
        background-color: #91C9F7 !important;
    }
    Alles anzeigen

    keine Ahnung woran das jetzt noch liegen mag

  • Lesezeichen - eigenes Icon

    • universum123
    • 26. April 2020 um 14:04

    3x /// auch nix zu machen

    teste gleich auch aus #8

  • Lesezeichen - eigenes Icon

    • universum123
    • 26. April 2020 um 13:58
    Zitat

    Teste bitte mal meinen Code aus Beitrag Nr. 4 mit dem base64 Code für das Icon.

    nö - will nich

    3x Neustart - und nix

    Zitat

    file:///C:/Users/

    teste ich gleich noch mal mit ///

    uni

  • Lesezeichen - eigenes Icon

    • universum123
    • 26. April 2020 um 13:48

    nö will nicht

    oder hab ich ein Fehler eingebaut :?:

    CSS
    menuitem.bookmark-item[label="BLUE GENERATION - ULTRAS 1.FC MAGDEBURG"]{
        -moz-appearance:none!important;
        background:  url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/BlockU16x16.png") no-repeat !important;
        padding-left: 25px !important;
        background-position: 5px 4px !important;
    }
    menuitem.bookmark-item[label="BLUE GENERATION - ULTRAS 1.FC MAGDEBURG"] > image,
    menuitem.bookmark-item[label="BLUE GENERATION - ULTRAS 1.FC MAGDEBURG"] > .menu-iconic-left {
        display: none!important;
    }
    menuitem.bookmark-item[label="BLUE GENERATION - ULTRAS 1.FC MAGDEBURG"]:hover {
        background:  url("file://c:/Users/Metatron10x64/AppData/Roaming/Mozilla/Favicon Picker/BlockU16x16.png") no-repeat !important;
        padding-left: 25px !important;
        background-position: 5px 4px !important;
        background-color: #91C9F7 !important;
    }
    Alles anzeigen
  • Lesezeichen - eigenes Icon

    • universum123
    • 26. April 2020 um 13:32

    hi andreas

    ich zeige erst mal dat Bild

    dann weist du erst mal was ich so meine

    dann werde ich mal dein *.css testen

    gruß uni

Unterstütze uns!

Jährlich (2025)

92,9 %

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

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