1
1
mirror of https://github.com/primer/css.git synced 2024-12-18 11:41:33 +03:00
css/modules/primer-utilities/lib/details.scss

19 lines
340 B
SCSS
Raw Normal View History

2018-05-23 23:50:27 +03:00
// stylelint-disable selector-max-type
2018-06-02 02:43:25 +03:00
.details-overlay[open] > summary::before {
2018-05-23 23:50:27 +03:00
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
2018-06-19 00:18:57 +03:00
z-index: 80;
2018-05-23 23:50:27 +03:00
display: block;
cursor: default;
content: " ";
background: transparent;
}
2018-06-02 02:43:25 +03:00
.details-overlay-dark[open] > summary::before {
2018-06-19 00:18:57 +03:00
z-index: 99;
2018-05-23 23:50:27 +03:00
background: $black-fade-50;
}