mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 20:46:21 +00:00
fix: estilos de details
This commit is contained in:
parent
dbf658a4a1
commit
875de47a40
1 changed files with 29 additions and 0 deletions
|
@ -599,3 +599,32 @@ $bezier: cubic-bezier(0.75, 0, 0.25, 1);
|
|||
hr {
|
||||
border-bottom: 1px solid #dee2e6;
|
||||
}
|
||||
|
||||
details {
|
||||
summary {
|
||||
.show-when-open {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.hide-when-open {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
&[open] {
|
||||
summary {
|
||||
.show-when-open {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.hide-when-open {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
& > summary {
|
||||
list-style: none;
|
||||
&::-webkit-details-marker { display: none; }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue