Merge pull request 'fix round corners' (#36) from dev into main
All checks were successful
continuous-integration/drone/push Build is passing

Reviewed-on: #36
This commit is contained in:
Artem Anufrij 2023-11-05 18:38:59 +01:00
commit 2ed91884df

View File

@ -24,7 +24,7 @@
</button>
</div>
</div>
<div class="dialog-body" :class="{ hideXScroll: disableXscroll == true, hideYScroll: disableYscroll == true, 'flat-dialog-header': flatDialogHeader == true}">
<div class="dialog-body" :class="{ hideXScroll: disableXscroll == true, hideYScroll: disableYscroll == true, 'flat-dialog-header': flatDialogHeader == true }">
<slot />
<div class="dialog-body-content" v-if="dialogContent" v-html="dialogContent" />
</div>
@ -420,12 +420,17 @@ export default {
flex-grow: 1;
}
.dialog-window.fullscreen
.dialog-body.flat-dialog-header {
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
.dialog-window.fullscreen .dialog-body.flat-dialog-header {
border-top-left-radius: 0px;
border-top-right-radius: 0px;
}
.dialog-body.hideXScroll {
overflow-x: hidden;
}
@ -493,6 +498,11 @@ export default {
border-top-right-radius: 0;
}
.dialog-body.flat-dialog-header {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.dialog-window.playing {
margin-bottom: 60px;
height: calc(100% - 60px);