PeerTube/client/src/sass/z-index.scss

69 lines
1.0 KiB
SCSS
Raw Normal View History

2022-05-04 09:02:50 +02:00
@use '_variables' as *;
@use '_mixins' as *;
2022-07-18 15:01:47 +02:00
.root-header {
z-index: z(root-header);
2022-05-04 09:02:50 +02:00
}
.help-popover {
z-index: z(help-popover);
}
ngx-loading-bar {
2022-07-18 15:01:47 +02:00
z-index: z(root-header) + 1 !important;
2022-05-04 09:02:50 +02:00
}
2022-06-20 11:39:54 +02:00
// Dropdown added to body, override default z-index
body > .dropdown,
body > .dropup {
2022-05-04 09:02:50 +02:00
z-index: z(dropdown) !important;
}
.list-overflow-menu,
.parent-entry {
z-index: z(menu) - 1 !important;
}
.btn-group,
.dropdown-root,
.action-dropdown,
.column-toggle {
z-index: inherit !important;
}
.dropdown-menu {
z-index: z(dropdown) + 1 !important;
}
p-toast .p-toast {
z-index: z(notification) !important;
}
ngb-modal-backdrop {
z-index: z(modal) - 1 !important;
}
ngb-popover-window {
z-index: z(popover) !important;
}
ngb-tooltip-window {
z-index: z(tooltip) !important;
}
ngb-modal-window {
z-index: z(modal) !important;
ngb-tooltip-window {
z-index: z(modal + 1) !important;
}
ngb-popover-window {
z-index: z(modal + 1) !important;
}
.help-popover {
z-index: z(modal + 1) !important;
}
}