saving shifts working

This commit is contained in:
Adam Piontek 2021-03-16 11:00:33 -04:00
parent 4276399c20
commit ecd4d83e3f
9 changed files with 141 additions and 67 deletions

View file

@ -31,7 +31,7 @@
@import "../node_modules/bootstrap/scss/accordion";
// @import "../node_modules/bootstrap/scss/breadcrumb";
@import "../node_modules/bootstrap/scss/pagination";
// @import "../node_modules/bootstrap/scss/badge";
@import "../node_modules/bootstrap/scss/badge";
@import "../node_modules/bootstrap/scss/alert";
@import "../node_modules/bootstrap/scss/progress";
// @import "../node_modules/bootstrap/scss/list-group";

View file

@ -63,16 +63,32 @@
}
/* calendar table rounded */
table.table.table-calendar span.badge {
width: 100%;
max-width: 100%;
overflow: hidden;
text-overflow: clip;
white-space: nowrap;
padding-right: 0.7em;
border-right: 0.7em solid transparent;
margin-bottom: 0.1em;
}
table.table.table-calendar thead tr th,
table.table.table-calendar tbody tr td {
width: 14%;
width: 2.5rem;
max-width: 2.5rem;
white-space: nowrap;
}
table.table.table-calendar tbody tr td {
font-size: $font-size-sm;
height: 3.5rem;
height: 4.1rem;
padding: 0.2rem 0.4rem;
@include media-breakpoint-up(sm) {
height: 4.3rem;
padding: 0.2rem 0.5rem;
}
@include media-breakpoint-up(md) {
height: 4.5rem;
height: 4.7rem;
padding: 0.2rem 0.5rem;
}
@include media-breakpoint-up(lg) {
@ -90,6 +106,9 @@ table.table.table-calendar tbody tr td {
}
}
table.table.table-rounded > :not(:last-child) > :last-child > * {
border-bottom-color: $dark;
}
table.table.table-rounded {
border-collapse: separate;
border-spacing: 0;
@ -103,7 +122,7 @@ table.table.table-rounded {
th {
border-top: 1px solid $table-border-color;
border-right: 1px solid $table-border-color;
border-bottom: 2px solid $black !important;
// border-bottom: 2px solid $dark !important;
border-left: none;
&:first-child {
border-top-left-radius: $border-radius;