diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2020-02-18 12:01:08 +0100 |
---|---|---|
committer | Rigel Kent <sendmemail@rigelk.eu> | 2020-02-18 12:01:08 +0100 |
commit | 757ffdfe901fddc34c311e3b45689e09a4055aa5 (patch) | |
tree | 6e482641432211a0ff624e33c560c32322a80b0e /client/src/sass/include | |
parent | 887e1a0376193aa0c53cb2a814eb030750e240cc (diff) | |
download | PeerTube-757ffdfe901fddc34c311e3b45689e09a4055aa5.tar.gz PeerTube-757ffdfe901fddc34c311e3b45689e09a4055aa5.tar.zst PeerTube-757ffdfe901fddc34c311e3b45689e09a4055aa5.zip |
Add notifications popover and tooltips to the z-index table
Diffstat (limited to 'client/src/sass/include')
-rw-r--r-- | client/src/sass/include/_bootstrap-variables.scss | 4 | ||||
-rw-r--r-- | client/src/sass/include/_variables.scss | 12 |
2 files changed, 7 insertions, 9 deletions
diff --git a/client/src/sass/include/_bootstrap-variables.scss b/client/src/sass/include/_bootstrap-variables.scss index b3ab0eb2b..d536eac86 100644 --- a/client/src/sass/include/_bootstrap-variables.scss +++ b/client/src/sass/include/_bootstrap-variables.scss | |||
@@ -1,6 +1,5 @@ | |||
1 | $dropdown-link-active-bg: inherit; | 1 | $dropdown-link-active-bg: inherit; |
2 | 2 | ||
3 | $zindex-modal: 10005; | ||
4 | $modal-footer-border-width: 0; | 3 | $modal-footer-border-width: 0; |
5 | $modal-md: 600px; | 4 | $modal-md: 600px; |
6 | 5 | ||
@@ -31,6 +30,3 @@ $input-focus-border-color: #ced4da; | |||
31 | 30 | ||
32 | $nav-pills-link-active-bg: #F0F0F0; | 31 | $nav-pills-link-active-bg: #F0F0F0; |
33 | $nav-pills-link-active-color: #000; | 32 | $nav-pills-link-active-color: #000; |
34 | |||
35 | $zindex-dropdown: 10000; | ||
36 | $zindex-popover: 10000; | ||
diff --git a/client/src/sass/include/_variables.scss b/client/src/sass/include/_variables.scss index 3fb8bb625..0c37cd68a 100644 --- a/client/src/sass/include/_variables.scss +++ b/client/src/sass/include/_variables.scss | |||
@@ -104,13 +104,15 @@ $variables: ( | |||
104 | $zindex: ( | 104 | $zindex: ( |
105 | header : 1000, | 105 | header : 1000, |
106 | /* header context */ | 106 | /* header context */ |
107 | headerLeft : 10, | 107 | headerLeft : 10, |
108 | menu : 11000, | 108 | menu : 11000, |
109 | dropdown : 12000, | 109 | dropdown : 12000, |
110 | loadbar : 13000, | 110 | popover : 13000, |
111 | modal : 14000, | 111 | tooltip : 14000, |
112 | notification : 15000, | 112 | loadbar : 15000, |
113 | hotkeys : 16000 | 113 | modal : 16000, |
114 | notification : 17000, | ||
115 | hotkeys : 18000 | ||
114 | ); | 116 | ); |
115 | 117 | ||
116 | @function z($label) { | 118 | @function z($label) { |