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

  • CSS Code für neue Einträge im Kontextmenü

    • Endor
    • 29. Juli 2024 um 19:23

    Für Ask Chat findet man im Inspector, ist dort auf hidden true gesetzt.
    Wie man den aktiviert, keine Ahnung. About:config Eintrag?

    Selector wäre:

    #context-ask-chat

    #context-translate-selection und #context-ask-chat habe ich hier so gemacht:

    CSS
    #context-translate-selection{
    	appearance: none !important;
    	background: url("..//icons/Translate1.png") no-repeat !important;
    	min-height: 24px!important;
    	padding-left:28px!important;
    	background-position:7px 9px!important;}
    
    #context-translate-selection:hover{
    	appearance: none !important; 
    	background: #ecf0f6 url("..//icons/Translate1.png") no-repeat !important;
    	min-height: 24px!important;
    	padding-left:28px!important;
    	background-position:7px 9px!important;}
    	
    #context-ask-chat{
    	appearance: none !important;
    	background: url("..//icons/Ask-Chat1.png") no-repeat !important;
    	min-height: 24px!important;
    	padding-left:28px!important;
    	background-position:7px 9px!important;}
    
    #context-ask-chat:hover{
    	appearance: none !important; 
    	background: #ecf0f6 url("..//icons/Ask-Chat1.png") no-repeat !important;
    	min-height: 24px!important;
    	padding-left:28px!important;
    	background-position:7px 9px!important;}
    Alles anzeigen

    Symbole:  

    Mfg.
    Endor

  • Der Glückwunsch-Thread

    • Endor
    • 29. Juli 2024 um 19:13

    Hallo Road-Runner .

    Auch von mir alles alles Gute zum Geburtstag.
    Vor allem viel Gesundheit aber auch viel Glück und Wohlergehen
    wünsche ich Dir von ganzen Herzen.

    Mfg.
    Endor

  • Der Glückwunsch-Thread

    • Endor
    • 27. Juli 2024 um 08:09

    Hallo AngelOfDarkness !
    Auch von mir alles alles Gute zum Geburtstag.
    Vor allem viel Gesundheit, aber auch Glück und Wohlergehen wünsche
    ich Dir von ganzen Herzen.

    Mfg.
    Endor

  • ups - 403 forbidden

    • Endor
    • 26. Juli 2024 um 19:32

    Ja dieses sehe ich letztens auch immer mal wieder beim Anmelden hier im Forum,
    eben auch wieder. :/ Keine Ahnung warum.
    Mfg.
    Endor

  • Kann die Übersetzungsanzeige vergrößert werden?

    • Endor
    • 24. Juli 2024 um 21:12

    2002Andreas

    Genau so wie von Sören beschrieben war es hier.
    Ohne die namespace Zeile funktioniert Dein CSS Code einwandfrei.
    Wieder etwas dazugelernt.

    Mfg.
    Endor

  • Kann die Übersetzungsanzeige vergrößert werden?

    • Endor
    • 24. Juli 2024 um 19:38

    Hallo 2002Andreas.
    Habe Deinen CSS Code auch mal getestet.
    Fenster wird damit größer aber die Schriftgröße
    ändert sich hier nicht.

    Wenn ich es so machen dann passt es
    es wird aber sämtlicher Text im Panel Größer.
    Weiß jetzt nicht ob das dann so gewollt ist.

    CSS
    #select-translations-panel {
      min-width: 500px !important;
      font-size: 28px !important;
    }

    Trotzdem auch von mir vielen Dank für dem CSS Code.
    Mfg.
    Endor

  • Seite drucken im Kontextmenü fehlt

    • Endor
    • 24. Juli 2024 um 13:36

    Erledigt:

    userChrome.js/Firefox 128/PrintPreview.uc.js at master · Endor8/userChrome.js
    Skripte für die Firefox-Erweiterung userChromeJS. Contribute to Endor8/userChrome.js development by creating an account on GitHub.
    github.com

    Mfg.
    Endor

  • Seite drucken im Kontextmenü fehlt

    • Endor
    • 24. Juli 2024 um 11:49

    Ok mache ich.

    Vielen Dank milupo

    Mfg.
    Endor

  • Seite drucken im Kontextmenü fehlt

    • Endor
    • 24. Juli 2024 um 11:00

    Hallo 2002Andreas
    Ja diese Zeile musste ich hier auch ändern, da der angegebene Separator
    nicht mehr vorhanden ist. Habe hier es so gemacht:

    Code
       document.getElementById('contentAreaContextMenu')
        .insertBefore(menu, document.getElementById('context-sep-open').nextSibling);


    Frage tut sich bei euch bei klick auf Druckvorschau noch etwas?
    Hier nicht.

    Mfg.
    Endor

    Ps. Das Script bei Github muss ich auch mal aktualisieren.

  • userChrome.js Scripte für den Fuchs (Diskussion)

    • Endor
    • 19. Juli 2024 um 11:55

    Hi pleassssse
    I am not sure, is this Script used to change the new Tab url?
    If yes, here another version:

    Code
    // ==UserScript==
    // @name          NewTabUrl.uc.js
    // @namespace     https://egg.5ch.net/test/read.cgi/software/1710343177/
    // @description   NewTabUrl
    // @include       main
    // @author        Mozilla Firefox 
    // @compatibility 126+
    // @version       2024/05/27 22:00
    // ==/UserScript==
    (function() {
      let func = BrowserCommands.openTab.toString();
    
      func = func.replace(
      'url ??= BROWSER_NEW_TAB_URL;',
      'url ??= "https://www.camp-firefox.de/forum";'  //change url to your needs
      );
    
      BrowserCommands.openTab = new Function(
        func.match(/\(([^)]*)/)[1],
        func.replace(/[^)]*/, '').replace(/[^{]*/, '').replace(/^{/, '').replace(/}\s*$/, '')
      );
    })();
    Alles anzeigen

    Mfg.
    Endor

  • Toggle Findbar

    • Endor
    • 16. Juli 2024 um 10:10

    Hallo Speravir
    Vielen Dank.
    Funktioniert hier bestens.
    :thumbup:

    Darf ich die bei mir, bei Github hochladen?
    Mfg.
    Endor

  • In memoriam

    • Endor
    • 14. Juli 2024 um 19:08

    Shannen Doherty hat leider den Kampf gegen den Krebs verloren.

    US-Schauspielerin Shannen Doherty im Alter von 53 Jahren gestorben
    Ihren großen Durchbruch feierte sie als "Brenda" mit der Fernsehserie "Beverly Hills, 90210". Nun ist Shannen Doherty im Alter von 53 Jahren gestorben. Die…
    www.tagesschau.de

    R.I.P.

    Mfg.
    Endor

  • Toggle Findbar

    • Endor
    • 12. Juli 2024 um 08:14

    Speravir
    Vielen Dank auch von mir.
    Funktioniert wieder bestens.
    Mfg.
    Endor

  • Dialog über Firefox - originale Icons ausblenden

    • Endor
    • 4. Juli 2024 um 13:28

    milupo
    Danke habe ich oben geändert.

    FuchsFan
    Gerne freut mich wenn es hilft.

    Mfg.
    Endor

  • Dialog über Firefox - originale Icons ausblenden

    • Endor
    • 4. Juli 2024 um 12:16

    Ich habe mir ein Lesezeichen für:
    chrome://browser/content/aboutDialog.xhtml
    gemacht. So wird aboutDialog.xhtml in einem neuen Tab geöffnet
    und kann wie gewohnt inspiziert werden.

    Mfg.
    Endor

  • About Seiten mit CSS Codes anpassen

    • Endor
    • 2. Juli 2024 um 16:03

    Boersenfeger

    Nein.
    Der von Deinem Bild ist nicht von mir.
    Ich habe nur meinen der zum Teil nicht mehr ging aktualisiert.
    Mfg.
    Endor

  • About Seiten mit CSS Codes anpassen

    • Endor
    • 2. Juli 2024 um 13:47

    Hallo zusammen.
    Habe mal den CSS Code von about:logins aktualisiert.
    Habe mich länger nicht damit befassen können.
    Also hier der aktuelle CSS Code für Interessierte:

    CSS
        @namespace url(http://www.w3.org/1999/xhtml);
        @-moz-document url-prefix(about:logins) {
            
        .container > ol:nth-child(1){
            scrollbar-width: none !important;
        }
        
        button.menu-button.ghost-button:hover {
            background-color: lightblue !important;
            fill: red !important;        
        }
    
        .meta-info:first-of-type::before {
            border-top: none  !important;
        }
    	
        .column:before {
            content: "Design by Endor & FuchsFan 07.2024";
            margin-top: 15px !important;
            font-size: 14px !important;
            font-weight: bold !important;
            color: red !important;
        }        
        
        /* linke Seite die Auflistung */    
        body > login-list {
            width: auto !important;
            border-bottom: none !important;
            scrollbar-width: none !important;
    		border-right: none !important;
    		background-color: #fffff0 !important;
        }
        
        /* oben der Text "Zugangsdaten" */
        .count {
            color: #0f6acc !important; 
            font-size: 15px !important; 
            font-weight: bold !important;
            margin-left: 10px !important;
        }
    	    
        body > login-list:nth-child(2){ 
            border-bottom: none !important; 
        }
    	       
        li[class="login-list-item"],
        li[class="login-list-item selected"]{
        padding-left: 25px !important;
        }
    	
    	[class="title"]{
    	color: #d90000 !important;
    	font-weight: 600 !important;
    	font-size: 16px !important;
    	}
    	
    	[class="username"]{
    	color: #008c69 !important;
    	font-weight: 600 !important;
    	font-size: 15px !important;
    	}	
        
        div.detail-row:nth-child(2) > div:nth-child(1) > label:nth-child(1) > input:nth-child(2),
        .password-display {
            width: 280px !important;
        }
    	
        /* erstes Feld linke Seite (bei Name u. Zugangsdaten) */	
        div.meta {
    		height: 55px !important;
    		margin-top: 4px !important;
    		padding-top: 12px !important;
            padding-left: 35px !important;
    		background-color: #fffff0 !important;
        }    
        
    	/* Hintergrundbox bei Button mit + Zeichen */   
        .create-login-button-container {
            padding-left: 0px !important; 
            padding-right: 0px !important; 
            padding-top: 20px !important;
            margin: -15px 140px 0 0!important; 
            box-shadow: none !important; 
            border-top: none !important;
    		background-color: none !important;
        }
    	
    	/* Button mit + Zeichen */
    	[data-l10n-id="create-login-button"]{
    		background-color: transparent !important;
            color: red !important;
        }    
        [data-l10n-id="create-login-button"]:hover{        
            color: #0066cc !important;
        }  
        
        .container > ol:nth-child(1){
            border-bottom: none !important; 
            box-shadow: none !important;
        }
        
        .header, li {
            border-bottom: none !important;
            box-shadow: none !important;        
        }
    	
        .header {
            margin-top: 20px!important;
        }
    	
         /* HG für das obere rechte Feld */
        header {
        background-color: #fbe8d2 !important;
        height: 56px !important;
        border-top-right-radius: 28px  !important;
        }   
    	
    	/* HG für das linke obere Feld */
    	login-list.initialized{
    	background-color: #fbe8d2 !important;
    	border-bottom-left-radius: 28px  !important;
    	border-top-left-radius: 28px  !important;}
        	    
        .empty-search-message {
        background:#fffff0 !important;
        border-bottom: none !important; 
        box-shadow: none !important;
        }
        
        html {
            background: #ffffff!important;
        }
        
        body > h1:nth-child(2) {
            margin-top: 10px !important;
        }
        
        body {
            max-width: 1200px !important; /* Breite einstellen */
            max-height: 800px !important;
            margin-left: auto  !important;
            margin-right: auto !important;
            border-left-color: lightblue!important;
    	    border-top-color:  lightblue!important;
    	    border-right-color: dodgerblue!important;
    	    border-bottom-color: dodgerblue!important;
    	    border-width:  4px !important;
            border-style: outset !important;
            border-radius:28px!important;
            margin-top: 30px !important;
        }
        
        /* Suchfeld oben */  
        .filter,
        login-filter {
            appearance: none !important; 
            border-radius:24px !important;
    		margin-left: 60px !important;
    		margin-top: 2px  !important;
    	    min-width: 235px !important;
            max-width: 235px !important;
        }
        
    	div.listHeader div.create-login-button-container button.create-login-button {
            margin-left: 65px  !important;
            margin-top: -155px  !important;
        }    
    	
        .menu-button {
            fill: #e69500 !important;
        }
        
        .fxaccounts-extra-text {
            color: #0066cc !important; 
            font-weight: bold !important;
    		padding-right: 30px !important;
        }
        
        div.container ol{
            background-color: beige !important;
        }
    	
    	    /* rechte Seite großes Feld */
        html.official-branding.no-logins.initialized body section login-intro,
        div.container {
        max-height: 728px !important;
    	}
    	
    	body > login-item:nth-child(3){
    	border-bottom-right-radius: 28px  !important;
    	}
    
        .time-created,
        body > login-list:nth-child(2), li, .header, header,
        .meta{
        box-shadow: none !important;
        }
        
    	/* Linkes oberes Feld unteren Rand entfernen */
    	.meta{
        border-bottom: none !important;
        }
    
        .meta,
        body > login-item:nth-child(3),
        .container {
          background-color: #fffff0 !important; 
        }
        
    	.meta:hover {
    	background: #ffdb4d !important;
    	}
        
        #login-sort label {
            padding-left: 25px !important;
        } 
    	
        .list-item.selected {
            background: #fff0b3 !important; 
            border-left: 2px!important;
        }
        .list-item.selected:hover {
            background: #ffdb4d !important;        
        }
        
        .list-item {
            background-color: #FFFFF0 !important;
        }
        .list-item:hover {
            background-color: #ffe680 !important;
        }
            
        .login-item-title {
            color: #0066cc !important;
        }
        
        .favicon,
    	.icon,
        .login-item-favicon {
            fill: #e69500 !important;
        }
    	
    	div.container {
            border-left: 1px solid silver !important;
        }
         
        #login-sort {
        background: #F0F0F0 url("..//icons/Bild86.png")no-repeat !important;
        padding-left:40px !important;
        padding-right: 5px !important;
        padding-top:  2px!important; 
        padding-bottom: 4px!important; 
        background-position:10px 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;
        color:black !important;
        margin-left: -15px !important;
        max-width: 160px  !important;
        }
        
        #login-sort:hover {
        background: #B2EDFA url("..//icons/Bild86.png")no-repeat !important;
        padding-left:40px!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:10px 6px!important;
        }
    	
        .ghost-button:not([class="menu-button ghost-button"]):not([class="menuitem-button menuitem-import-browser ghost-button"]):not([class="menuitem-button menuitem-export ghost-button"]):not([class="menuitem-button menuitem-remove-all-logins ghost-button"]):not([class="menuitem-button menuitem-import-file ghost-button"]):not([class="menuitem-button menuitem-preferences ghost-button"]):not([class="menuitem-button menuitem-help ghost-button"]),
        .action-button,
        .text-button{background: none!important;}
    	
    
    	
        copy-username-button.copy-button {
        appearance:none!important;
        background: #F0F0F0 url("..//icons/Bild73.png")no-repeat !important;
    	max-height: 28px !important;
        padding-left:20px!important;
        padding-top:  2px!important; 
        padding-bottom: 6px!important; 
        background-position:14px 10px!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:16px!important;
        color:black !important; 
        }
    
        copy-username-button.copy-button:hover {
        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 10px!important;
        }
        
        copy-password-button.copy-button {
        appearance:none!important;
        background: #F0F0F0 url("..//icons/Bild74.png")no-repeat !important;
    	max-height: 28px !important;
        padding-left:20px!important;
        padding-top:  2px!important; 
        padding-bottom: 6px!important; 
        background-position:14px 10px!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:16px!important;
        color:black !important;
        }
    
        copy-password-button.copy-button:hover {
        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 10px!important;
        }        
    
        .origin-input {
        appearance:none!important;
        background: #F0F0F0 url("..//icons/Bild75.png")no-repeat !important;
        padding-left:35px !important;
        padding-top:  2px !important; 
        padding-bottom: 4px !important; 
        padding-right: 35px !important; 
        min-width: 350px !important; 
        background-position:10px 5px!important;
        color:black!important;
        font-size:14px!important;
        text-decoration:none!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:16px!important;
        }
    
        .origin-input:hover {
        appearance:none!important;
        background: #B2EDFA url("..//icons/Bild75.png")no-repeat !important;
        background-position:10px 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;
        }    
        
        .fxaccounts-enable-button {
        appearance:none!important;
        background: #F0F0F0 url("..//icons/Bild83.png")no-repeat !important;
        padding-left:35px!important;
        padding-top:  2px!important; 
        padding-bottom: 4px!important; 
        background-position:10px 6px!important;
        color:black!important;
        font-size:14px!important;
        text-decoration:none!important;
        padding-right:25px!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:16px!important;
        }
    
        .fxaccounts-enable-button:hover {
        appearance:none!important;
        background: #B2EDFA url("..//icons/Bild83.png")no-repeat !important;
        background-position:10px 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;
        }    
    
        .action-buttons > edit-button:nth-child(1){
        appearance:none!important;
        background: #F0F0F0 url("..//icons/Bild67.png")no-repeat !important;
    	max-height: 29px !important; 
    	margin-right: 5px !important; 
        padding-left:40px!important;
        padding-right: 20px !important;
        padding-top:  2px!important; 
        padding-bottom: 6px!important; 
        background-position:18px 11px!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:16px !important;
        color:black !important; 
        }
    
        .action-buttons > edit-button:nth-child(1):hover {
        appearance:none!important;
        background: #B2EDFA url("..//icons/Bild67.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:18px 11px!important;
        }
    	
    	.ghost-button > img:nth-child(n+1){display: none !important;}
    	
        .action-buttons > delete-button:nth-child(3) {
        appearance:none!important;
        background: #F0F0F0 url("..//icons/Bild8.gif")no-repeat !important;
        padding-left:40px!important;
        padding-right:20px!important;
        padding-top:  2px!important; 
        padding-bottom: 7px!important; 
    	max-height: 28px !important; 
        background-position:18px 10px!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:16px !important;
        color:black !important; 
        }
    	  
    	.action-buttons > delete-button:nth-child(3):hover {
        appearance:none!important;
        background: #B2EDFA url("..//icons/Bild8.gif")no-repeat !important;
        background-position:18px 10px!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;
        }
    	
    	.confirm-button	{
        appearance:none!important;
        background: #ff2626 url("..//icons/Bild8.gif")no-repeat !important;
        padding-left:40px!important;
        padding-right:20px!important;
        padding-top:  2px!important; 
        padding-bottom: 4px!important; 
    	min-height: 38px !important; 
        background-position:14px 10px!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:16px !important;
        color:#ffffff !important; 
        }
    	
    	.confirm-button:hover{
        appearance:none!important;
        background: #ce1c44 url("..//icons/Bild8.gif")no-repeat !important;
        background-position:14px 10px!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;
        }
    	
    	.warning-icon{
    	fill: gold !important;
        }
        
        .save-changes-button {
        appearance:none!important;
        background: #F0F0F0 url("..//icons/Bild87.png")no-repeat !important;
        padding-left:40px!important;
        padding-right:20px!important;
        padding-top:  2px!important; 
        padding-bottom: 4px!important;
        min-height: 38px !important;	
        background-position:14px 10px!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:16px !important;
        color:black !important; 
        }
        
        .save-changes-button:hover {
        appearance:none!important;
        background: #B2EDFA url("..//icons/Bild87.png")no-repeat !important;
        background-position:14px 10px!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;
        }    
        
        .cancel-button {
        appearance:none!important;
        background: #F0F0F0 url("..//icons/Bild88.png")no-repeat !important;
        padding-left:40px!important;
        padding-right:20px!important;
        padding-top:  2px!important; 
        padding-bottom: 4px!important; 
    	min-height: 38px !important;
        background-position:14px 10px!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:16px !important;
        color:black !important; 
        }
        
        .cancel-button:hover {
        appearance:none!important;
        background: #B2EDFA url("..//icons/Bild88.png")no-repeat !important;
        background-position:14px 10px!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;
        }        
        
        .reveal-password-checkbox {
            fill: #0066cc !important;
        }
        
        .menu {
            border-radius: 20px !important;
            border: 1px solid dodgerblue !important;
            padding: 5px !important;
        }
    
        .menuitem-import-browser {
            width: 100% !important;
            height: 24px !important;
            fill:  green !important;
            color: black!important;
        }
        
        .menuitem-export {
            width: 100% !important;
            height: 24px !important;
            fill:  orange !important;
            color: black !important;
        }
        
        .menuitem-import {
            width: 100% !important;
            height: 24px !important;
            fill:  #cc3300!important;
            color: black !important;
        }
        
        .menuitem-import-file {
            width: 100% !important;
            height: 24px !important;
            fill:  blue !important;
            color: black !important;
        }
        
        .menuitem-remove-all-logins {
            width: 100% !important;
            height: 24px !important;
            fill:  #cc3300!important;
            color: black !important;
            margin-left: -1px !important;
        }
        
        .menuitem-help {
            width: 100% !important;
            height: 24px !important;
            fill: blue!important;
            color: black !important;
        }
        
        .menuitem-preferences {
            width: 100% !important;
            height: 24px !important;
            fill: red!important;
            color: black !important;
        }    
        
        .menuitem-mobile[data-l10n-id="menu-menuitem-android-app"] {
            width: 100% !important;
            height: 24px !important;
            fill: #33cc33!important;
            color: black!important;
        }
    
        .menuitem-mobile[data-l10n-id="menu-menuitem-iphone-app"] {
            width: 100% !important;
            height: 24px !important;
            fill: #9900ff!important;
            color: black!important;
        }    
        }
    Alles anzeigen

    Hier der Link zu den verwendeten Symbolen:

    CSS/Icons/about:logins at master · Endor8/CSS
    CSS Codes. Contribute to Endor8/CSS development by creating an account on GitHub.
    github.com

    Mfg.
    Endor

  • Benutzt eigentlich noch jemand das "Suchfeld"?

    • Endor
    • 28. Juni 2024 um 11:25
    Zitat von Speravir

    Ich bin auch Team separate Suchleiste.

    Ich gehöre auch dazu und hoffe es bleibt die Möglichkeit das zu aktivieren wenn
    man sie möchte. Ich verwende sie schon immer und möchte sie auf keinen Fall missen.
    Telemetrie ist hier immer schon aktiviert. Wüsste nicht warum man das deaktivieren sollte.

  • Violent Monkey Script "Remove Adblock Thing" entfernt in der neuen Version 5.6 die Grössenansicht im Menü

    • Endor
    • 27. Juni 2024 um 18:03

    Bei mir nur ublock. Keinerlei Werbung zu sehen.
    Daher verwende ich auch keine solche Erweiterung.

  • Violent Monkey Script "Remove Adblock Thing" entfernt in der neuen Version 5.6 die Grössenansicht im Menü

    • Endor
    • 27. Juni 2024 um 17:56

    Keine Ahnung. Wie gesagt nur so eine Idee. ;)

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