mirror of
https://codeberg.org/librewolf/source.git
synced 2024-12-22 13:43:04 -05:00
24 lines
493 B
CSS
24 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;
|
||
|
}
|