]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/sass/z-index.scss
Fix table pagination responsive
[github/Chocobozzz/PeerTube.git] / client / src / sass / z-index.scss
CommitLineData
26da644e
C
1@use '_variables' as *;
2@use '_mixins' as *;
3
ace01da3
C
4.root-header {
5 z-index: z(root-header);
26da644e
C
6}
7
8.help-popover {
9 z-index: z(help-popover);
10}
11
12ngx-loading-bar {
ace01da3 13 z-index: z(root-header) + 1 !important;
26da644e
C
14}
15
73114c10
C
16// Dropdown added to body, override default z-index
17body > .dropdown,
18body > .dropup {
26da644e
C
19 z-index: z(dropdown) !important;
20}
21
22.list-overflow-menu,
23.parent-entry {
24 z-index: z(menu) - 1 !important;
25}
26
27.btn-group,
28.dropdown-root,
29.action-dropdown,
26da644e
C
30.column-toggle {
31 z-index: inherit !important;
32}
33
34.dropdown-menu {
35 z-index: z(dropdown) + 1 !important;
36}
37
38p-toast .p-toast {
39 z-index: z(notification) !important;
40}
41
42ngb-modal-backdrop {
43 z-index: z(modal) - 1 !important;
44}
45
46ngb-popover-window {
47 z-index: z(popover) !important;
48}
49
50ngb-tooltip-window {
51 z-index: z(tooltip) !important;
52}
53
54ngb-modal-window {
55 z-index: z(modal) !important;
56
57 ngb-tooltip-window {
58 z-index: z(modal + 1) !important;
59 }
60
61 ngb-popover-window {
62 z-index: z(modal + 1) !important;
63 }
64
65 .help-popover {
66 z-index: z(modal + 1) !important;
67 }
68}