2024-03-16 20:37:32 +01:00

156 lines
2.9 KiB
SCSS

/* ==============
Tables
===================*/
.table {
margin-bottom: 10px;
thead{
background-color: $gray-200;
}
}
th {
font-weight: 500;
}
.table-sm{
td, th{
padding: .3rem !important;
}
}
.table>tbody>tr>td, .table>tfoot>tr>td, .table>thead>tr>td {
padding: 14px 12px;
vertical-align: middle;
}
.table-hover tbody tr:hover,.table-striped tbody tr:nth-of-type(odd),
.thead-default th{
background-color: lighten($gray-200, 4%);
}
.table-centered{
td,
th{
vertical-align: middle !important;
}
}
/* == Responsive Table ==*/
table.focus-on {
tbody {
tr.focused {
th {
background-color: $primary;
color: $white;
}
td {
background-color: $primary;
color: $white;
}
}
}
}
.table-rep-plugin {
.btn-toolbar {
display: block;
}
.btn-default {
background-color: $white;
border-color: $gray-300;
margin-right: 5px;
}
.btn-default.btn-primary {
background-color: $primary;
border-color: $primary;
}
.table-responsive {
border: none !important;
}
.btn-group.float-right .dropdown-menu {
left: auto;
right: 0;
}
tbody {
th {
font-size: 14px;
font-weight: normal;
}
}
.checkbox-row {
padding-left: 40px;
label {
display: inline-block;
padding-left: 5px;
position: relative;
&::before {
-o-transition: 0.3s ease-in-out;
-webkit-transition: 0.3s ease-in-out;
background-color: $white;
border-radius: 3px;
border: 1px solid $gray-300;
content: "";
display: inline-block;
height: 17px;
left: 0;
margin-left: -20px;
position: absolute;
transition: 0.3s ease-in-out;
width: 17px;
outline: none !important;
}
&::after {
color: $gray-300;
display: inline-block;
font-size: 11px;
height: 16px;
left: 0;
margin-left: -20px;
padding-left: 3px;
padding-top: 1px;
position: absolute;
top: -1px;
width: 16px;
}
}
input[type="checkbox"] {
cursor: pointer;
opacity: 0;
z-index: 1;
outline: none !important;
&:disabled + label {
opacity: 0.65;
}
}
input[type="checkbox"]:focus + label {
&::before {
outline-offset: -2px;
outline: none;
}
}
input[type="checkbox"]:checked + label {
&::after {
content: "\f00c";
font-family: 'FontAwesome';
}
}
input[type="checkbox"]:disabled + label {
&::before {
background-color: $light;
cursor: not-allowed;
}
}
input[type="checkbox"]:checked + label {
&::before {
background-color: $primary;
border-color: $primary;
}
&::after {
color: $white;
}
}
}
}