Files
edx-platform/cms/static/sass/elements/_drawer.scss
Chris Chávez 5838d68efc feat: Tagging UX refinements - refresh tag count on edit (#34059)
* style: drawer-cover color updated for all tagging drawers
* feat: Update TagList component when a tag is updated on Manage tags drawer
* feat: Refactor TagCount to be able to refresh the count
* feat: Sync tag count in units
2024-01-25 10:33:47 -08:00

35 lines
495 B
SCSS

// studio - elements - side drawers
// ====================
.drawer-cover {
@extend %ui-depth3;
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
}
.drawer-cover.gray-cover {
background: rgba(112, 112, 112, 0.8);
}
.drawer {
@extend %ui-depth4;
display: none;
position: fixed;
top: 0;
right: 0;
width: 33.33vw;
height: 100vh;
background-color: $gray-l4;
}
body.drawer-open {
overflow: hidden;
}