-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathazrbackup
More file actions
28 lines (27 loc) · 697 Bytes
/
Copy pathazrbackup
File metadata and controls
28 lines (27 loc) · 697 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* I copy some of the relevant code from my azr blog as backup before I play with it */
/* 735-758 */
.collapsible,.collapsible>summary{
display:block;
overflow:hidden
}
.collapsible>:not(summary){
display:none
}
.collapsible[open]>:not(summary){
display:block
}
.collapsible:focus,.collapsible>summary:focus{
outline:0
}
.collapsible>summary{
cursor:pointer;
display:block;
padding:0
}
.collapsible:focus>summary,.collapsible>summary:focus{
background-color:transparent
}
.collapsible>summary::-webkit-details-marker{
display:none
}
/* changing summary default "display: list-item" value with "display: flex" will hide it as well via 2 issues; so does "list-style: none" in details > summary */