48 lines
718 B
SCSS
48 lines
718 B
SCSS
//
|
|
// tables.scss
|
|
//
|
|
|
|
//Table centered (Custom)
|
|
.table-centered {
|
|
|
|
th,
|
|
td {
|
|
vertical-align: middle !important;
|
|
}
|
|
}
|
|
|
|
// Custom table components (Custom)
|
|
.table {
|
|
.table-user {
|
|
img {
|
|
height: 30px;
|
|
width: 30px;
|
|
}
|
|
}
|
|
|
|
> :not(caption)>*>* {
|
|
background-color: var(--#{$prefix}table-bg) !important;
|
|
}
|
|
|
|
&.table-bordered {
|
|
tbody {
|
|
border-top: $border-width solid;
|
|
border-top-color: inherit;
|
|
}
|
|
}
|
|
}
|
|
|
|
.table-sm {
|
|
.action-icon {
|
|
font-size: 1rem;
|
|
}
|
|
}
|
|
|
|
// Tables fluid
|
|
.table-nowrap {
|
|
|
|
th,
|
|
td {
|
|
white-space: nowrap;
|
|
}
|
|
} |