fix popover menu overlapping
Signed-off-by: GretaD <gretadoci@gmail.com>
This commit is contained in:
parent
5fa31f1335
commit
04281407f1
|
@ -597,8 +597,8 @@ span.usersLastLoginTooltip {
|
|||
}
|
||||
.userActions {
|
||||
position: sticky;
|
||||
right: 50px;
|
||||
z-index: 110;
|
||||
right: 60px;
|
||||
z-index: 20;
|
||||
}
|
||||
.userActions input {
|
||||
width: 44px;
|
||||
|
@ -1371,6 +1371,7 @@ doesnotexist:-o-prefocus, .strengthify-wrapper {
|
|||
grid-row-start: span 1;
|
||||
grid-gap: 3px;
|
||||
align-items: center;
|
||||
z-index: 0;
|
||||
/* let's define the column until storage path,
|
||||
what follows will be manually defined */
|
||||
grid-template-columns: 44px minmax($grid-col-min-width + 30px, 1fr) repeat(auto-fit, minmax($grid-col-min-width, 1fr));
|
||||
|
@ -1408,7 +1409,7 @@ doesnotexist:-o-prefocus, .strengthify-wrapper {
|
|||
.userActions {
|
||||
min-width: 44px;
|
||||
position: sticky;
|
||||
right: 50px;
|
||||
right: 20px;
|
||||
z-index: 109;
|
||||
}
|
||||
.subtitle {
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
@ -56,10 +56,14 @@
|
|||
:sub-admins-groups="subAdminsGroups"
|
||||
:user-actions="userActions"
|
||||
:user="user"
|
||||
:class="{'row--menu-opened': openedMenu}"
|
||||
@hideMenu="hideMenu"
|
||||
@toggleMenu="toggleMenu" />
|
||||
<div v-else
|
||||
:class="{'disabled': loading.delete || loading.disable}"
|
||||
:class="{
|
||||
'disabled': loading.delete || loading.disable,
|
||||
'row--menu-opened': openedMenu
|
||||
}"
|
||||
:data-id="user.id"
|
||||
class="row row--editable">
|
||||
<div :class="{'icon-loading-small': loading.delete || loading.disable || loading.wipe}"
|
||||
|
@ -675,3 +679,9 @@ export default {
|
|||
},
|
||||
}
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
// Force menu to be above other rows
|
||||
.row--menu-opened {
|
||||
z-index: 1 !important;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue