Newer
Older
/* Note that any color adjustments here must also be reflected in custom.css!! */
@tailwind components;
@tailwind utilities;
:root {
--primary: theme('colors.gray.800');
--info: theme('colors.aura.purple');
/* TODO: remove these once we include the tailwind base module */
--tw-border-spacing-x: 0;
--tw-border-spacing-y: 0;
--tw-translate-x: 0;
--tw-translate-y: 0;
--tw-rotate: 0;
--tw-skew-x: 0;
--tw-skew-y: 0;
--tw-scale-x: 1;
--tw-scale-y: 1;
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
--tw-pan-x: ;
--tw-pan-y: ;
--tw-pinch-zoom: ;
--tw-scroll-snap-strictness: proximity;
--tw-ordinal: ;
--tw-slashed-zero: ;
--tw-numeric-figure: ;
--tw-numeric-spacing: ;
--tw-numeric-fraction: ;
--tw-ring-inset: ;
--tw-ring-offset-width: 0px;
--tw-ring-offset-color: #fff;
--tw-ring-color: rgb(59 130 246 / 0.5);
--tw-ring-offset-shadow: 0 0 #0000;
--tw-ring-shadow: 0 0 #0000;
--tw-shadow: 0 0 #0000;
--tw-shadow-colored: 0 0 #0000;
--tw-blur: ;
--tw-brightness: ;
--tw-contrast: ;
--tw-grayscale: ;
--tw-hue-rotate: ;
--tw-invert: ;
--tw-saturate: ;
--tw-sepia: ;
--tw-drop-shadow: ;
--tw-backdrop-blur: ;
--tw-backdrop-brightness: ;
--tw-backdrop-contrast: ;
--tw-backdrop-grayscale: ;
--tw-backdrop-hue-rotate: ;
--tw-backdrop-invert: ;
--tw-backdrop-opacity: ;
--tw-backdrop-saturate: ;
--tw-backdrop-sepia: ;
background-color: theme('colors.gray.600');
border-color: theme('colors.gray.900');
color: white;
background-color: theme('colors.gray.300');
border-color: theme('colors.gray.400');
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 components {
.btn-default {
@apply tw-bg-gray-100 tw-border tw-border-solid tw-border-black/5 tw-transition hover:enabled:tw-brightness-95 focus-visible:enabled:tw-brightness-95;
}
.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);
}