Skip to content

Commit

Permalink
💚 Style schedule name input
Browse files Browse the repository at this point in the history
  • Loading branch information
devmount committed Sep 12, 2024
1 parent 5af642f commit 4f01318
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion frontend/src/components/ScheduleCreation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ watch(
v-model="scheduleInput.name"
:placeholder="t('placeholder.mySchedule')"
:disabled="!scheduleInput.active"
class="place-holder w-full rounded-none border-0 border-b bg-transparent px-2 dark:bg-transparent"
class="schedule-name place-holder w-full rounded-none border-0 border-b bg-transparent px-2 dark:bg-transparent"
required
/>
<div v-if="!scheduleInput.name" class="content-center text-red-500">*</div>
Expand Down Expand Up @@ -835,6 +835,10 @@ input[type=checkbox]:disabled {
}
}

.schedule-name {
background-color: transparent !important;
}

.tooltip-icon:hover ~ .tooltip {
display: block;
}
Expand Down

0 comments on commit 4f01318

Please sign in to comment.