Fix popup for TableView (#214)

Signed-off-by: Alexander Platov <sas_lord@mail.ru>
This commit is contained in:
Alexander Platov 2021-09-26 13:48:36 +03:00 committed by GitHub
parent 3963740540
commit dd7c2d5c68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 7 deletions

View File

@ -68,7 +68,7 @@
position: absolute;
display: flex;
flex-direction: column;
padding: 1rem;
padding: 1.25rem 1.5rem;
top: 1.5rem;
left: 0;
min-width: 100%;

View File

@ -57,11 +57,10 @@
.popup {
padding: .5rem;
height: 100%;
background-color: var(--theme-popup-bg);
border: var(--theme-popup-border);
border-radius: 1.25rem;
box-shadow: var(--theme-popup-shadow);
backdrop-filter: blur(30px);
background-color: var(--theme-button-bg-focused);
border: 1px solid var(--theme-button-border-enabled);
border-radius: .75rem;
box-shadow: 0 .75rem 1.25rem rgba(0, 0, 0, .2);
}
.menu-item {
@ -81,6 +80,6 @@
flex-grow: 1;
color: var(--theme-content-accent-color);
}
&:hover { background-color: var(--theme-button-bg-focused); }
&:hover { background-color: var(--theme-button-bg-hovered); }
}
</style>