Newer
Older
/* Note that any color adjustments here must also be reflected in custom.css!! */
@import 'quill/dist/quill.bubble.css';
@tailwind components;
@tailwind utilities;
:root {
--primary: theme('colors.gray.800');
--info: theme('colors.aura.purple');
--text-color: #2e3436;
}
body {
color: var(--text-color);
background-color: theme('colors.gray.600');

Konrad Mohrfeldt
committed
--fc-event-text-color: white;
.fc-scroller {
background: white;
}
background-color: theme('colors.gray.300');
border-color: theme('colors.gray.400');

Konrad Mohrfeldt
committed
--fc-event-text-color: theme('colors.gray.900');
color: theme('colors.gray.900');
cursor: pointer;
background-color: theme('colors.aura.purple');
border-color: theme('colors.indigo.800');
color: white;
.currentShow.emptySlot {
background-color: theme('colors.red.600');
border-color: theme('colors.red.800');
color: white;
background-color: theme('colors.aura.purple') !important;
border-color: theme('colors.indigo.800') !important;
color: white;
background-color: theme('colors.red.500');
opacity: 0.5;
text-decoration: line-through !important;
color: white;
background-color: theme('colors.aura.purple');
border-color: theme('colors.indigo.800');
background-color: theme('colors.aura.purple');
border-color: theme('colors.indigo.800');
opacity: 0.5;
font-weight: bold;

Richard Blechinger
committed

Richard Blechinger
committed
}
thead .fc-day a {
color: inherit;
}
thead .fc-day:hover {
background: theme('colors.gray.200');
cursor: pointer;

Richard Blechinger
committed
}
background: theme('colors.red.500');
color: white;

Richard Blechinger
committed
}

Richard Blechinger
committed
}
@layer utilities {
.tw-grid-area-cover {
grid-area: 1 / -1 / 1 / -1;
}
.tw-bg-stripes {
--tw-stripes-color: theme('colors.rose.400');
background-image: linear-gradient(
135deg,
var(--tw-stripes-color) 10%,
transparent 10%,
transparent 50%,
var(--tw-stripes-color) 50%,
var(--tw-stripes-color) 60%,
transparent 60%,
transparent 100%
);
}
.btn {
@apply tw-inline-flex tw-gap-1 tw-items-center;
}
[data-headlessui-state='open'] {
position: relative;
}
@apply tw-bg-gray-100 tw-border tw-border-solid tw-border-black/5 tw-transition hocus:enabled:tw-brightness-95;
.btn-danger {
@apply tw-border-2 tw-border-rose-600 tw-bg-white tw-text-rose-600 hocus:tw-bg-rose-600 hocus:tw-text-white;
}
.aura-table-wrapper {
@apply tw-bg-white tw-rounded tw-shadow tw-mb-12;
contain: paint;
}
.aura-table {
@apply tw-border-separate tw-border-spacing-0 tw-w-full;
& thead th {
@apply tw-text-sm tw-text-gray-500 tw-border-0 tw-border-b tw-border-solid tw-border-gray-200 tw-font-bold;
}
& :is(th, td) {
@apply tw-py-2 tw-px-4 tw-font-normal;
}
& :is(th, td):first-child {
@apply tw-pl-6;
}
& :is(th, td):first-child {
@apply tw-pr-6;
}
}
.form-control:focus-within {
color: #495057;
background-color: #fff;
border-color: #80bdff;
outline: 0;
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.modal-footer:empty {
display: none;
}