0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2024-12-22 05:33:03 -05:00
LibreWolf/patches/pref-pane/librewolf.css
Bert van der Weerd eab150439a
first version
2023-10-29 16:13:41 +01:00

23 lines
493 B
CSS

.librewolf-collapse > input {
display: none;
}
.librewolf-collapse > input ~ .librewolf-collapsed {
display: none;
/* max-height: 0; */
transition: max-height 0.25s ease-in-out;
}
.librewolf-collapse > input:checked ~ .librewolf-collapsed {
display: block;
/* max-height: 20rem; */
}
.librewolf-warning {
display: inline;
font-size: 0.8em;
}
.librewolf-button-icon {
width: 16px;
height: 16px;
margin-right: 8px;
-moz-context-properties: fill, fill-opacity;
fill: currentColor;
}