fix: wrong element positioning and styling
This commit is contained in:
parent
21f19bb4ea
commit
90b6cc87ef
1 changed files with 54 additions and 54 deletions
|
|
@ -1647,7 +1647,50 @@ watch(
|
||||||
class="surface-2 q-pa-lg"
|
class="surface-2 q-pa-lg"
|
||||||
id="drawer-user-form"
|
id="drawer-user-form"
|
||||||
>
|
>
|
||||||
<div class="col surface-1 full-height rounded bordered scroll row">
|
<div
|
||||||
|
class="col surface-1 full-height rounded bordered scroll row relative-position"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="surface-1 rounded q-my-md q-mx-lg row"
|
||||||
|
style="position: absolute; z-index: 999; top: 0; right: 0"
|
||||||
|
>
|
||||||
|
<UndoButton
|
||||||
|
v-if="infoDrawerEdit"
|
||||||
|
id="btn-info-basic-undo"
|
||||||
|
icon-only
|
||||||
|
@click="
|
||||||
|
() => {
|
||||||
|
undo();
|
||||||
|
}
|
||||||
|
"
|
||||||
|
type="button"
|
||||||
|
/>
|
||||||
|
<SaveButton
|
||||||
|
v-if="infoDrawerEdit"
|
||||||
|
id="btn-info-basic-save"
|
||||||
|
icon-only
|
||||||
|
type="submit"
|
||||||
|
/>
|
||||||
|
<EditButton
|
||||||
|
v-if="!infoDrawerEdit"
|
||||||
|
id="btn-info-basic-edit"
|
||||||
|
icon-only
|
||||||
|
@click="
|
||||||
|
() => {
|
||||||
|
infoDrawerEdit = true;
|
||||||
|
isImageEdit = true;
|
||||||
|
}
|
||||||
|
"
|
||||||
|
type="button"
|
||||||
|
/>
|
||||||
|
<DeleteButton
|
||||||
|
v-if="!infoDrawerEdit"
|
||||||
|
id="btn-info-basic-delete"
|
||||||
|
icon-only
|
||||||
|
@click="() => onDelete(infoPersonId)"
|
||||||
|
type="button"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<div
|
<div
|
||||||
class="col"
|
class="col"
|
||||||
style="height: 100%; max-height: 100; overflow-y: auto"
|
style="height: 100%; max-height: 100; overflow-y: auto"
|
||||||
|
|
@ -1691,52 +1734,10 @@ watch(
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="col-12 col-md-10 q-py-md q-pr-md q-pl-sm"
|
class="col-12 col-md-10 q-py-md q-pr-md q-pl-sm relative-position"
|
||||||
id="user-form-content"
|
id="user-form-content"
|
||||||
style="height: 100%; max-height: 100; overflow-y: auto"
|
style="height: 100%; max-height: 100; overflow-y: auto"
|
||||||
>
|
>
|
||||||
<div
|
|
||||||
class="surface-1 rounded q-pt-sm row"
|
|
||||||
style="position: absolute; z-index: 999; right: 4%"
|
|
||||||
>
|
|
||||||
<UndoButton
|
|
||||||
v-if="infoDrawerEdit"
|
|
||||||
id="btn-info-basic-undo"
|
|
||||||
icon-only
|
|
||||||
@click="
|
|
||||||
() => {
|
|
||||||
undo();
|
|
||||||
}
|
|
||||||
"
|
|
||||||
type="button"
|
|
||||||
/>
|
|
||||||
<SaveButton
|
|
||||||
v-if="infoDrawerEdit"
|
|
||||||
id="btn-info-basic-save"
|
|
||||||
icon-only
|
|
||||||
type="submit"
|
|
||||||
/>
|
|
||||||
<EditButton
|
|
||||||
v-if="!infoDrawerEdit"
|
|
||||||
id="btn-info-basic-edit"
|
|
||||||
icon-only
|
|
||||||
@click="
|
|
||||||
() => {
|
|
||||||
infoDrawerEdit = true;
|
|
||||||
isImageEdit = true;
|
|
||||||
}
|
|
||||||
"
|
|
||||||
type="button"
|
|
||||||
/>
|
|
||||||
<DeleteButton
|
|
||||||
v-if="!infoDrawerEdit"
|
|
||||||
id="btn-info-basic-delete"
|
|
||||||
icon-only
|
|
||||||
@click="() => onDelete(infoPersonId)"
|
|
||||||
type="button"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<FormInformation
|
<FormInformation
|
||||||
id="info-information"
|
id="info-information"
|
||||||
v-model:hq-id="hqId"
|
v-model:hq-id="hqId"
|
||||||
|
|
@ -1868,10 +1869,16 @@ watch(
|
||||||
</template> -->
|
</template> -->
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="col surface-1 q-ma-lg rounded bordered scroll row"
|
class="col surface-1 q-ma-lg rounded bordered row relative-position"
|
||||||
id="personnel-form"
|
id="personnel-form"
|
||||||
>
|
>
|
||||||
<div class="col">
|
<div
|
||||||
|
class="surface-1 rounded q-my-md q-mx-lg row"
|
||||||
|
style="position: absolute; z-index: 999; right: 0; top: 0"
|
||||||
|
>
|
||||||
|
<SaveButton id="btn-info-basic-save" icon-only type="submit" />
|
||||||
|
</div>
|
||||||
|
<div class="col full-height scroll">
|
||||||
<div style="position: sticky; top: 0" class="q-pa-sm">
|
<div style="position: sticky; top: 0" class="q-pa-sm">
|
||||||
<SideMenu
|
<SideMenu
|
||||||
:menu="
|
:menu="
|
||||||
|
|
@ -1908,14 +1915,7 @@ watch(
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-10 q-pa-md">
|
<div class="col-10 q-pa-md full-height scroll">
|
||||||
<div
|
|
||||||
class="surface-1 rounded q-pt-sm row"
|
|
||||||
style="position: absolute; z-index: 999; right: 4%"
|
|
||||||
>
|
|
||||||
<SaveButton id="btn-info-basic-save" icon-only type="submit" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<FormInformation
|
<FormInformation
|
||||||
id="dialog-form-information"
|
id="dialog-form-information"
|
||||||
dense
|
dense
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue