fix wrong positioning popover actions menu
This commit is contained in:
parent
3752d93e38
commit
6f010e096e
@ -91,10 +91,19 @@ export default {
|
|||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
|
|
||||||
|
/* Workaround wrong positioning
|
||||||
|
actions popover menu
|
||||||
|
https://github.com/nextcloud/nextcloud-vue/issues/1384 */
|
||||||
|
body {
|
||||||
|
min-height: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
min-width: 250px;
|
min-width: 250px;
|
||||||
table-layout:fixed;
|
table-layout:fixed;
|
||||||
|
position: relative;
|
||||||
|
|
||||||
thead {
|
thead {
|
||||||
background-color: var(--color-main-background-translucent);
|
background-color: var(--color-main-background-translucent);
|
||||||
@ -142,6 +151,7 @@ table {
|
|||||||
tr {
|
tr {
|
||||||
height: 51px;
|
height: 51px;
|
||||||
background-color: var(--color-background-light);
|
background-color: var(--color-background-light);
|
||||||
|
transition: opacity 500ms ease 0s;
|
||||||
|
|
||||||
tr:hover, tr:focus, tr.mouseOver td {
|
tr:hover, tr:focus, tr.mouseOver td {
|
||||||
background-color: var(--color-background-hover);
|
background-color: var(--color-background-hover);
|
||||||
|
Loading…
Reference in New Issue
Block a user