mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-07 19:31:54 +01:00
17 lines
273 B
CSS
17 lines
273 B
CSS
|
.wp-block-details{
|
||
|
box-sizing:border-box;
|
||
|
overflow:hidden;
|
||
|
}
|
||
|
|
||
|
.wp-block-details summary{
|
||
|
cursor:pointer;
|
||
|
}
|
||
|
|
||
|
.wp-block-details>:not(summary){
|
||
|
margin-block-end:0;
|
||
|
margin-block-start:var(--wp--style--block-gap);
|
||
|
}
|
||
|
|
||
|
.wp-block-details>:last-child{
|
||
|
margin-bottom:0;
|
||
|
}
|