Naja, Ordnersymbole gibt es ja sehr viele, da ist für jeden Geschmack etwas dabei, z.B.:
"folder" - iconmonstr
Schwieriger ist dann schon das Einfärben einer .svg-datei.
Beiträge von Mitleser
-
-
-
gerade gehört...
favorite song:
Externer Inhalt www.youtube.comInhalte von externen Seiten werden ohne deine Zustimmung nicht automatisch geladen und angezeigt.Durch die Aktivierung der externen Inhalte erklärst du dich damit einverstanden, dass personenbezogene Daten an Drittplattformen übermittelt werden. Mehr Informationen dazu haben wir in unserer Datenschutzerklärung zur Verfügung gestellt. -
Es fehlt oben übrigens noch etwas
Naja, 'fehlen' tut es ja nicht. Ich nehme das mal als 'Zusatzmöglichkeit'.
Kann man sicherlich so machen, aber das jeweilige #identity-icon ist dann ein anderes Icon und nicht das oben erwähnte 'Schloss'. Es hebt sich also schon durch die jeweilige Form (Puzzleteil usw.) ab. -
Ein Screenshot der geöffneten Website (bisher) nicht.
Das ist wohl so gewollt; die geöffnete Website siehst du ja im geöffneten Tab.
-
So, habe das nochmal ausgiebig getestet und für GUT befunden:
CSS
Alles anzeigen/*■■■■■■■■■■■■■■■■■Schloss■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/ /*Secure lock icon in urlbar*/ /* Green */ #identity-box[pageproxystate="valid"].verifiedDomain #identity-icon { fill: green !important; fill-opacity: 1 !important; transition: 100ms linear !important; } #identity-box[pageproxystate="valid"].mixedActiveBlocked #identity-icon { fill: green !important; fill-opacity: 1 !important; transition: 100ms linear !important; } #identity-box[pageproxystate="valid"].verifiedIdentity #identity-icon { fill: green !important; fill-opacity: 1 !important; transition: 100ms linear !important; } #identity-popup[connection^="secure"] .identity-popup-security-connection { background-color: green !important; } /* Red */ #identity-box[pageproxystate="valid"].notSecure #identity-icon { fill: red !important; fill-opacity: 1 !important; transition: 100ms linear !important; } #identity-box[pageproxystate="valid"].mixedActiveContent #identity-icon { fill: red !important; fill-opacity: 1 !important; transition: 100ms linear !important; } #identity-box[pageproxystate="valid"].insecureLoginForms #identity-icon { fill: red !important; fill-opacity: 1 !important; transition: 100ms linear !important; } .identity-popup-security-connection { background-color: red !important; } /* Orange */ #identity-box[pageproxystate="valid"].mixedDisplayContent #identity-icon { fill: orange !important; fill-opacity: 1 !important; transition: 100ms linear !important; } #identity-popup[mixedcontent~="passive-loaded"][isbroken] .identity-popup-security-connection { background-color: orange !important; } /* Yellow */ #identity-box[pageproxystate="valid"].mixedDisplayContentLoadedActiveBlocked #identity-icon { fill: yellow !important; fill-opacity: 1 !important; transition: 100ms linear !important; } #identity-box[pageproxystate="valid"].certUserOverridden #identity-icon { fill: yellow !important; fill-opacity: 1 !important; transition: 100ms linear !important; } /*■■■■■■■■■■■■■■■■■Schriftfarbe■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/ /* Mixed content including neterror */ #identity-box[pageproxystate="valid"].unknownIdentity ~ .urlbar-input-box { color: red !important; } /* http: and potentially some other insecure connections */ #identity-box[pageproxystate="valid"].notSecure ~ .urlbar-input-box { color: red !important; } /* Extension pages */ #identity-box[pageproxystate="valid"].extensionPage ~ .urlbar-input-box { color: purple !important; } /* Internal about: and chrome:// urls (includes reader-view) */ #identity-box[pageproxystate="valid"].localResource ~ .urlbar-input-box, #identity-box[pageproxystate="valid"].chromeUI ~ .urlbar-input-box { color: green !important; }
-
-
Falsch!
habe nur kurz mal dies getestet und funktionierende Beispiel-URL's einkommentiert!
EDIT: Kommentar in Zeile 6 angepasst
CSS
Alles anzeigen/*■■■■■■■■■■■■■■■■■Schriftfarbe■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/ /* Mixed content including neterror *//* funzt bei about:neterror/netTimeout/ */ #identity-box[pageproxystate="valid"].unknownIdentity ~ .urlbar-input-box { color: red !important; } /* http: and potentially some other insecure connections: */ /* funzt bei http://fritz.box/*/ #identity-box[pageproxystate="valid"].notSecure ~ .urlbar-input-box { color: red !important; } /* Extension pages *//* funzt bei allen Erweiterungen*/ #identity-box[pageproxystate="valid"].extensionPage ~ .urlbar-input-box { color: purple !important; } /* Internal about: and chrome:// urls (includes reader-view) */ /* funzt bei reader-view*/ /* funzt bei about:about*/ #identity-box[pageproxystate="valid"].localResource ~ .urlbar-input-box, #identity-box[pageproxystate="valid"].chromeUI ~ .urlbar-input-box { color: green !important; }
-
Ich habe etwas Ähnliches. Vielleicht kannst Du davon ja etwas ableiten?
CSS
Alles anzeigen/*■■■■■■■■■■■■■■■■■Schloss■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/ /*Secure lock icon in urlbar*/ /* Green */ #identity-box[pageproxystate="valid"].verifiedDomain #identity-icon { fill: green !important; fill-opacity: 1 !important; transition: 100ms linear !important; } #identity-box[pageproxystate="valid"].mixedActiveBlocked #identity-icon { fill: green !important; fill-opacity: 1 !important; transition: 100ms linear !important; } #identity-box[pageproxystate="valid"].verifiedIdentity #identity-icon { fill: green !important; fill-opacity: 1 !important; transition: 100ms linear !important; } #identity-popup[connection^="secure"] .identity-popup-security-connection { fill: green !important; } /* Red */ #identity-box[pageproxystate="valid"].notSecure #identity-icon { fill: red !important; fill-opacity: 1 !important; transition: 100ms linear !important; } #identity-box[pageproxystate="valid"].mixedActiveContent #identity-icon { fill: red !important; fill-opacity: 1 !important; transition: 100ms linear !important; } #identity-box[pageproxystate="valid"].insecureLoginForms #identity-icon { fill: red !important; fill-opacity: 1 !important; transition: 100ms linear !important; } .identity-popup-security-connection { fill: red !important; } /* Orange */ #identity-box[pageproxystate="valid"].mixedDisplayContent #identity-icon { fill: orange !important; fill-opacity: 1 !important; transition: 100ms linear !important; } #identity-popup[mixedcontent~="passive-loaded"][isbroken] .identity-popup-security-connection { fill: orange !important; } /* Yellow */ #identity-box[pageproxystate="valid"].mixedDisplayContentLoadedActiveBlocked #identity-icon { fill: yellow !important; fill-opacity: 1 !important; transition: 100ms linear !important; } #identity-box[pageproxystate="valid"].certUserOverridden #identity-icon { fill: yellow !important; fill-opacity: 1 !important; transition: 100ms linear !important; } /*■■■■■■■■■■■■■■■■■Schriftfarbe■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/ /* Mixed content including neterror */ #identity-box[pageproxystate="valid"].unknownIdentity ~ .urlbar-input-box { color: red !important; } /* http: and potentially some other insecure connections like ftp: */ #identity-box[pageproxystate="valid"].notSecure ~ .urlbar-input-box { color: red !important; } /* Extension pages */ #identity-box[pageproxystate="valid"].extensionPage ~ .urlbar-input-box { color: purple !important; } /* Internal about: and chrome:// urls (includes reader-view) */ #identity-box[pageproxystate="valid"].localResource ~ .urlbar-input-box, #identity-box[pageproxystate="valid"].chromeUI ~ .urlbar-input-box { color: green !important; }
-
Mira_Belle Diese Lsg. funzt hier auch gut; es ist aber letztlich auch eine ungeheure 'Fleißarbeit' diesen alten Button - ich denke ursprünglich mal von Aris? - wieder auf heutiges Niveau zu bringen (verschiebbarer Button, base64 entfernen und durch .svg ersetzen, Links auf Profil globalisieren usw.).
Bist Du sicher dass Du dir das antuen willst? -
Danke, verzichte.
Solange das Problem mit dem 'Hilfe-Menü' nicht gelöst ist, ist alles Andere uninteressant! -
-
Ich nutze diese Beiden für Links normal/ohne: Link.zip
-
Schau mal seine Vita an.
Etwas anderes kann der nicht! -
milupo Das wird nicht reichen, da diese Änderung auch an vielen anderen Stellen im Script relevant ist.
BeitragRE: Startseite
Es ist jetzt genau das eingetreten wovor Sören gewarnt hat:
Nicht nur das Script funktioniert nicht mehr, sondern auch z.B. das Tabkontextmenü > Alle Lesezeichen in Tabs öffnen ist durch die Nutzung des oben erwähnten Scripts funktonslos!!
Sollte jemand das Script - trotz ausdrücklicher Warnungen - in FF127 noch nutzen wollen, hier ist das update auf FF127:
(Quelltext, 53 Zeilen)
Mitleser13. Juni 2024 um 18:12 -
Evtl. bringt dich das weiter, achte bitte auch auf die Warnungen zur Nutzung dieses Scripts:
BeitragStartseite
Hallo zusammen,
bereits seit vielen Jahren habe ich die Startseite von Firefox folgendermaßen festgelegt.
camp-firefox.de/attachment/46612/
Dies entspricht auch nahezu perfekt meinen Vorstellungen, abgesehen von dem "Neuen Tab", der beim Start von Firefox angezeigt wird.
camp-firefox.de/attachment/46611/
Nach dem Start von Firefox rufe ich in der Regel zunächst meine favorisierten Lesezeichen mittels (Alle in Tabs öffnen) auf, dabei "stört" mich ein wenig der erwähnte "Neue Tab", den ich…Webmark3. Mai 2024 um 18:32 -
Mit vokoscreenNG geht es direkt, ich habe das gerade ausprobiert. Die Datei wird aber auch sehr groß.
Funzt nicht: keine Möglichkeit das Video in einem Gif-container zu speichern. An den Codecs liegt es nicht, Breche das jetzt hier mal ab. Gerne über PN weiter.
-
saobento Kurze Rückmeldung:
werde ich morgen mal testen!
Speichert leider nicht in den hier erforderlichen gif-Container.
Animated GIF output? · Issue #196 · MaartenBaert/ssrHey there, I notice you can select gif as a container format, but it doesn't seem to work, failing when you hit start recording. Any hints?github.com -
-
Leider nur mit wine on Linux:
LICEcap
simple animated screen captures
Linux: apparently works with WINE