- Firefox-Version
- 89
- Betriebssystem
- Windows 8.1
Habe noch eine leider noch eine Bitte. Die Darstellung der Downloads im Downloadfenster sind etwas zu gross. Kann man da etwas ändern?
mfg Hemu
Habe noch eine leider noch eine Bitte. Die Darstellung der Downloads im Downloadfenster sind etwas zu gross. Kann man da etwas ändern?
mfg Hemu
Ich habe das System-Theme 1.2 aktiviert. Unter Firefox 88 hatte ich das Theme Hell aktiviert.
Du hast Recht die Darstellung ist kleiner, allerdings ist die Schrift grösser und das hat mich etwas irritiert.
mfg Hemu
Vielleicht hilft es dir weiter:
/*downloads*/
#downloadsPanel-mainView
{
width: 27em !important;
padding: 0.2em !important;
font-size: 1.2em !important;
}
#downloadsListBox,
button#downloadsHistory,
#downloadsListBox > richlistitem
{
margin: 0 !important;
}
#downloadsListBox > richlistitem
{
border: none !important;
}
button#downloadsHistory,
{
border-bottom-right-radius: 0 !important;
border-bottom-left-radius: 0 !important;
}
#downloadsListBox > richlistitem:first-of-type
{
border-top-left-radius: 4px !important;
border-top-right-radius: 4px !important;
}
Alles anzeigen
Vielen Dank, das sieht wesentlich besser aus!
mfg Hemu
Wo ich gestern schrieb, meine ich, das war nicht richtig. Sorry.
Hier der richtige code bzgl. runden Ecken:
/*downloads*/
#downloadsPanel-mainView
{
width: 27em !important;
padding: 0.2em !important;
font-size: 1.2em !important;
}
#downloadsListBox,
button#downloadsHistory,
#downloadsListBox > richlistitem
{
margin: 0 !important;
}
#downloadsListBox > richlistitem
{
border-radius: 0 !important;
}
button#downloadsHistory,
{
border-top-right-radius: 0 !important;
border-top-left-radius: 0 !important;
}
#downloadsListBox > richlistitem:first-of-type
{
border-top-left-radius: 4px !important;
border-top-right-radius: 4px !important;
}
Alles anzeigen
richlistitem hat keine runden Ecken bis auf den ersten Eintrag und dort nur oben, hängt mit der Box darum zusammen.
Und der Button am Ende hat nur unten runde Ecken. Man würde sonst an der Trennlinie immer abgerundete Ecke erkennen.
Danke für deine Bemühungen!
Keine Ursache, interessiert mich ja selbst und kann ich zurückgeben.
In Firefox 91 wurde allerdings was geändert, daher musste ich das CSS abermals anpassen. Funktioniert daher aktuell ab Firefox 89 bis 91 (91 bis auf Widerruf ;))
/*downloads popup */
#downloadsPanel-multiView #downloadsPanel-mainView
{
width: 27em !important;
padding: 0.2em !important;
font-size: 1.2em !important;
}
#downloadsPanel-multiView #downloadsListBox,
#downloadsPanel-multiView button#downloadsHistory,
#downloadsPanel-multiView richlistitem
{
margin: 0 !important;
}
#downloadsPanel-multiView richlistitem
{
border-radius: 0 !important;
}
#downloadsPanel-multiView button#downloadsHistory
{
border-top-right-radius: 0 !important;
border-top-left-radius: 0 !important;
}
#downloadsPanel-multiView richlistitem:first-of-type
{
border-top-left-radius: 4px !important;
border-top-right-radius: 4px !important;
}
#downloadsPanel-multiView #emptyDownloads
{
padding: 10px 8px !important;
}
Alles anzeigen