2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

FIX: <details> should expand when supported by the browser

This commit is contained in:
Régis Hanol 2016-04-06 21:44:29 +02:00
parent 8e50f0de6a
commit fe000cd9c2

View file

@ -22,6 +22,10 @@ summary:before {
margin-right: .25em;
}
details[open] > * {
display: block;
}
details[open] > summary:before,
details.open > summary:before {
content: '\25BC';