2021-03-22 13:48:48 +00:00
|
|
|
|
@tailwind base;
|
|
|
|
|
@tailwind components;
|
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
2021-06-20 09:57:33 +00:00
|
|
|
|
|
|
|
|
|
/* note(PeerRich): TODO move @layer components into proper React Components: <Button color="primary" size="xs" /> */
|
|
|
|
|
@layer components {
|
|
|
|
|
/* Primary buttons */
|
|
|
|
|
.btn-xs.btn-primary {
|
2021-07-30 23:05:38 +00:00
|
|
|
|
@apply inline-flex items-center px-2.5 py-1.5 border border-transparent text-xs font-medium rounded shadow-sm text-white bg-neutral-900 hover:bg-neutral-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-neutral-500;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-sm.btn-primary {
|
2021-07-30 23:05:38 +00:00
|
|
|
|
@apply inline-flex items-center px-3 py-2 border border-transparent text-sm leading-4 font-medium rounded-sm shadow-sm text-white bg-neutral-900 hover:bg-neutral-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-neutral-500;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn.btn-primary {
|
2021-07-30 23:05:38 +00:00
|
|
|
|
@apply inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-sm shadow-sm text-white bg-neutral-900 hover:bg-neutral-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-neutral-500;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-lg.btn-primary {
|
2021-07-30 23:05:38 +00:00
|
|
|
|
@apply inline-flex items-center px-4 py-2 border border-transparent text-base font-medium rounded-sm shadow-sm text-white bg-neutral-900 hover:bg-neutral-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-neutral-500;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-xl.btn-primary {
|
2021-07-30 23:05:38 +00:00
|
|
|
|
@apply inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-sm shadow-sm text-white bg-neutral-900 hover:bg-neutral-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-neutral-500;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-wide.btn-primary {
|
2021-07-30 23:05:38 +00:00
|
|
|
|
@apply w-full text-center px-4 py-2 border border-transparent text-sm font-medium rounded-sm shadow-sm text-white bg-neutral-900 hover:bg-neutral-800 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-neutral-500;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Secondary buttons */
|
|
|
|
|
.btn-xs.btn-secondary {
|
2021-07-30 23:05:38 +00:00
|
|
|
|
@apply inline-flex items-center px-2.5 py-1.5 border border-transparent text-xs font-medium rounded text-neutral-700 bg-neutral-100 hover:bg-neutral-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-neutral-500;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-sm.btn-secondary {
|
2021-07-30 23:05:38 +00:00
|
|
|
|
@apply inline-flex items-center px-3 py-2 border border-transparent text-sm leading-4 font-medium rounded-sm text-neutral-700 bg-neutral-100 hover:bg-neutral-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-neutral-500;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn.btn-secondary {
|
2021-07-30 23:05:38 +00:00
|
|
|
|
@apply inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-sm text-neutral-700 bg-neutral-100 hover:bg-neutral-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-neutral-500;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-lg.btn-secondary {
|
2021-07-30 23:05:38 +00:00
|
|
|
|
@apply inline-flex items-center px-4 py-2 border border-transparent text-base font-medium rounded-sm text-neutral-700 bg-neutral-100 hover:bg-neutral-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-neutral-500;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-xl.btn-secondary {
|
2021-07-30 23:05:38 +00:00
|
|
|
|
@apply inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-sm text-neutral-700 bg-neutral-100 hover:bg-neutral-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-neutral-500;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-wide.btn-secondary {
|
2021-07-30 23:05:38 +00:00
|
|
|
|
@apply w-full text-center px-4 py-2 border border-transparent text-sm font-medium rounded-sm text-neutral-700 bg-neutral-100 hover:bg-neutral-200 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-neutral-500;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* White buttons */
|
|
|
|
|
.btn-xs.btn-white {
|
2021-07-30 23:05:38 +00:00
|
|
|
|
@apply inline-flex items-center px-2.5 py-1.5 border border-gray-300 shadow-sm text-xs font-medium rounded text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-neutral-500;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-sm.btn-white {
|
2021-07-30 23:05:38 +00:00
|
|
|
|
@apply inline-flex items-center px-3 py-2 border border-gray-300 shadow-sm text-sm leading-4 font-medium rounded-sm text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-neutral-500;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn.btn-white {
|
2021-07-30 23:05:38 +00:00
|
|
|
|
@apply inline-flex items-center px-4 py-2 border border-gray-300 shadow-sm text-sm font-medium rounded-sm text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-neutral-500;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-lg.btn-white {
|
2021-07-30 23:05:38 +00:00
|
|
|
|
@apply inline-flex items-center px-4 py-2 border border-gray-300 shadow-sm text-base font-medium rounded-sm text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-neutral-500;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-xl.btn-white {
|
2021-07-30 23:05:38 +00:00
|
|
|
|
@apply inline-flex items-center px-6 py-3 border border-gray-300 shadow-sm text-base font-medium rounded-sm text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-neutral-500;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn-wide.btn-white {
|
2021-07-30 23:05:38 +00:00
|
|
|
|
@apply w-full text-center px-4 py-2 border border-gray-300 shadow-sm text-sm font-medium rounded-sm text-gray-700 bg-white hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-neutral-500;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-05 09:31:37 +00:00
|
|
|
|
@media all and (display-mode: standalone) {
|
|
|
|
|
.bottom-nav {
|
|
|
|
|
padding-bottom: 24px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-04 10:39:43 +00:00
|
|
|
|
.react-multi-email > [type='text'] {
|
|
|
|
|
--tw-ring-shadow: 0 0 0 0 0;
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-02 15:24:01 +00:00
|
|
|
|
/* !important to override react-select */
|
|
|
|
|
.react-select__value-container{
|
|
|
|
|
border: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.react-select__input input {
|
|
|
|
|
border: 0 !important; box-shadow: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.react-select__option--is-focused{
|
|
|
|
|
background: #000 !important;
|
|
|
|
|
color: #fff !important
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.react-select__control{
|
|
|
|
|
border: 2px solid transparent !important;
|
|
|
|
|
box-shadow: none !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.react-select__control.react-select__control--is-focused{
|
|
|
|
|
border: 2px solid #000 !important;
|
|
|
|
|
border-color: #000 !important;
|
|
|
|
|
box-shadow: none !important;
|
|
|
|
|
margin: -1px;
|
|
|
|
|
padding: 1px;
|
|
|
|
|
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-02 15:24:01 +00:00
|
|
|
|
/* !important to override react-dates */
|
|
|
|
|
.DateRangePickerInput__withBorder{
|
|
|
|
|
border: 0 !important
|
|
|
|
|
}
|
|
|
|
|
.DateInput_input{
|
|
|
|
|
border: 1px solid #D1D5DB !important;
|
|
|
|
|
border-radius: 2px !important;
|
|
|
|
|
font-size: inherit !important;
|
|
|
|
|
font-weight: inherit !important;
|
|
|
|
|
color: #000;
|
|
|
|
|
padding: 11px 11px 9px !important;
|
|
|
|
|
line-height: 16px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateInput_input__focused{
|
|
|
|
|
border: 2px solid #000 !important;
|
|
|
|
|
border-radius: 2px !important;
|
|
|
|
|
box-shadow: none !important;
|
|
|
|
|
padding: 10px 10px 9px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.DateRangePickerInput_arrow{
|
|
|
|
|
padding: 0px 10px;
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-20 09:57:33 +00:00
|
|
|
|
.loader {
|
2021-08-02 14:10:24 +00:00
|
|
|
|
display: block;
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
margin: 60px auto;
|
|
|
|
|
position: relative;
|
2021-08-04 19:39:59 +00:00
|
|
|
|
border-width: 4px;
|
|
|
|
|
border-style: solid;
|
2021-08-02 14:10:24 +00:00
|
|
|
|
animation: loader 2s infinite ease;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-02 14:10:24 +00:00
|
|
|
|
.loader-inner {
|
|
|
|
|
vertical-align: top;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 100%;
|
|
|
|
|
animation: loader-inner 2s infinite ease-in;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes loader {
|
|
|
|
|
0% {
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
25% {
|
|
|
|
|
transform: rotate(180deg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
50% {
|
|
|
|
|
transform: rotate(180deg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
75% {
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
100% {
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes loader-inner {
|
|
|
|
|
0% {
|
|
|
|
|
height: 0%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
25% {
|
|
|
|
|
height: 0%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
50% {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
75% {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
100% {
|
|
|
|
|
height: 0%;
|
|
|
|
|
}
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav#nav--settings > a {
|
|
|
|
|
@apply border-transparent text-gray-900 hover:bg-gray-50 hover:text-gray-900 border-l-4 px-3 py-2 flex items-center text-sm font-medium;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav#nav--settings > a svg {
|
|
|
|
|
@apply text-gray-400 group-hover:text-gray-500 flex-shrink-0 -ml-1 mr-3 h-6 w-6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav#nav--settings > a.active {
|
2021-07-30 23:05:38 +00:00
|
|
|
|
@apply bg-neutral-50 border-neutral-500 text-neutral-700 hover:bg-neutral-50 hover:text-neutral-700;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nav#nav--settings > a.active svg {
|
2021-07-30 23:05:38 +00:00
|
|
|
|
@apply text-neutral-500;
|
2021-06-20 09:57:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
table tbody tr:nth-child(odd) {
|
|
|
|
|
@apply bg-gray-50;
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-22 13:48:48 +00:00
|
|
|
|
|
2021-03-10 10:02:39 +00:00
|
|
|
|
body {
|
2021-03-22 13:48:48 +00:00
|
|
|
|
background-color: #f3f4f6;
|
2021-03-10 10:02:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-22 13:48:48 +00:00
|
|
|
|
.text-white-important {
|
|
|
|
|
color: white !important;
|
2021-03-10 10:02:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-22 13:48:48 +00:00
|
|
|
|
@layer utilities {
|
|
|
|
|
.transition-max-width {
|
|
|
|
|
-webkit-transition-property: max-width;
|
|
|
|
|
transition-property: max-width;
|
|
|
|
|
}
|
2021-05-11 14:49:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#timeZone input:focus {
|
|
|
|
|
box-shadow: none;
|
2021-06-14 18:53:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-02 15:24:01 +00:00
|
|
|
|
.weekdaySelect button.active {
|
|
|
|
|
background: #000;
|
|
|
|
|
color: #fff;
|
2021-06-14 18:53:20 +00:00
|
|
|
|
}
|