forked from verdnatura/salix-front
fix: refs #7323 css righ menu
This commit is contained in:
parent
4ee6c7436f
commit
855483cefd
|
@ -46,7 +46,7 @@ const stateStore = useStateStore();
|
||||||
</div>
|
</div>
|
||||||
</Teleport>
|
</Teleport>
|
||||||
<QDrawer v-model="stateStore.rightDrawer" side="right" :width="256" show-if-above>
|
<QDrawer v-model="stateStore.rightDrawer" side="right" :width="256" show-if-above>
|
||||||
<QScrollArea class="fit text-grey-8">
|
<QScrollArea class="fit">
|
||||||
<div id="right-panel"></div>
|
<div id="right-panel"></div>
|
||||||
<slot v-if="!hasContent" name="right-panel" />
|
<slot v-if="!hasContent" name="right-panel" />
|
||||||
</QScrollArea>
|
</QScrollArea>
|
||||||
|
|
|
@ -489,7 +489,7 @@ onMounted(async () => {
|
||||||
</QBtnGroup>
|
</QBtnGroup>
|
||||||
</div>
|
</div>
|
||||||
</Teleport>
|
</Teleport>
|
||||||
<QDrawer v-model="stateStore.rightDrawer" side="right" :width="260" class="q-pa-md">
|
<Teleport to="#right-panel" v-if="stateStore.isHeaderMounted()">
|
||||||
<div class="q-pa-md q-mb-md" style="border: 2px solid #222">
|
<div class="q-pa-md q-mb-md" style="border: 2px solid #222">
|
||||||
<QCardSection horizontal>
|
<QCardSection horizontal>
|
||||||
<span class="text-weight-bold text-subtitle1 text-center full-width">
|
<span class="text-weight-bold text-subtitle1 text-center full-width">
|
||||||
|
@ -515,7 +515,34 @@ onMounted(async () => {
|
||||||
@click-date="onInputChange"
|
@click-date="onInputChange"
|
||||||
@on-moved="getMailStates"
|
@on-moved="getMailStates"
|
||||||
/>
|
/>
|
||||||
</QDrawer>
|
</Teleport>
|
||||||
|
<!-- <QDrawer v-model="stateStore.rightDrawer" side="right" :width="260" class="q-pa-md">
|
||||||
|
<div class="q-pa-md q-mb-md" style="border: 2px solid #222">
|
||||||
|
<QCardSection horizontal>
|
||||||
|
<span class="text-weight-bold text-subtitle1 text-center full-width">
|
||||||
|
{{ t('Hours') }}
|
||||||
|
</span>
|
||||||
|
</QCardSection>
|
||||||
|
<QCardSection class="column items-center" horizontal>
|
||||||
|
<div>
|
||||||
|
<span class="details-label">{{ t('Total semana') }} </span>
|
||||||
|
<span>: {{ formattedWeekTotalHours }}</span>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<span class="details-label">{{ t('Termina a las') }}: </span>
|
||||||
|
<span>{{ dashIfEmpty(getFinishTime()) }}</span>
|
||||||
|
</div>
|
||||||
|
</QCardSection>
|
||||||
|
</div>
|
||||||
|
<WorkerTimeControlCalendar
|
||||||
|
v-model:model-value="selectedDateFormatted"
|
||||||
|
:selected-dates="selectedCalendarDates"
|
||||||
|
:active-date="false"
|
||||||
|
:worker-time-control-mails="workerTimeControlMails"
|
||||||
|
@click-date="onInputChange"
|
||||||
|
@on-moved="getMailStates"
|
||||||
|
/>
|
||||||
|
</QDrawer> -->
|
||||||
<QPage class="column items-center">
|
<QPage class="column items-center">
|
||||||
<QTable :columns="columns" :rows="['']" hide-bottom class="full-width">
|
<QTable :columns="columns" :rows="['']" hide-bottom class="full-width">
|
||||||
<template #header="props">
|
<template #header="props">
|
||||||
|
|
Loading…
Reference in New Issue