3
0

Fix record modal background color

This commit is contained in:
Jože Fortun
2024-02-19 11:48:41 +01:00
parent b389d5039d
commit 2aa3aaab05
2 changed files with 13 additions and 6 deletions

View File

@@ -12,6 +12,7 @@
borderless
sticky-header
responsive
hover
head-variant="light"
class="mb-0"
style="min-height: 300px; max-height: 75vh;"
@@ -41,7 +42,7 @@
v-for="a in sortedAlterations"
:key="a.alterationID"
class="border-top"
:class="{ 'bg-gray': a.alterationID === dependOnHover }"
:class="{ 'bg-extra-light': a.alterationID === dependOnHover }"
@mouseover="dependOnHover = a.dependsOn"
@mouseleave="dependOnHover = undefined"
>
@@ -72,7 +73,7 @@
v-else-if="a.dependsOn"
variant="extra-light"
>
{{ $t('waitingFor', { id:a.dependsOn }) }}
{{ $t('waitingFor', { id: a.dependsOn }) }}
</b-badge>
</b-td>

View File

@@ -5,7 +5,7 @@
scrollable
dialog-class="h-100 mw-90"
content-class="card position-initial"
body-class="p-0 bg-gray"
body-class="p-0"
footer-class="p-0"
size="xl"
@hidden="onHidden"
@@ -229,9 +229,15 @@ export default {
position: initial;
}
#record-modal .modal-header {
h5 {
min-height: 27px;
#record-modal {
.modal-header {
h5 {
min-height: 27px;
}
}
.modal-body {
background-color: var(--body-bg);
}
}
</style>