2020-01-14 18:39:15 +08:00
|
|
|
// scss-lint:disable SelectorDepth QualifyingElement NestingDepth
|
|
|
|
// Data table
|
|
|
|
|
|
|
|
.table.dataTable {
|
|
|
|
table-layout: initial;
|
|
|
|
text-overflow: initial;
|
|
|
|
width: 100%;
|
|
|
|
word-break: initial;
|
|
|
|
|
|
|
|
thead {
|
|
|
|
tr {
|
|
|
|
th {
|
2020-09-01 22:25:30 +08:00
|
|
|
background-color: $color-concrete;
|
2020-01-15 23:46:01 +08:00
|
|
|
border-bottom: 2px solid $color-white;
|
2020-01-14 18:39:15 +08:00
|
|
|
border-left: 2px solid $color-white;
|
|
|
|
font-weight: bold;
|
2020-01-17 20:55:43 +08:00
|
|
|
overflow: hidden;
|
2020-01-16 18:26:23 +08:00
|
|
|
white-space: nowrap;
|
|
|
|
|
|
|
|
.modal-tooltiptext {
|
|
|
|
margin-left: -10px;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
2020-01-14 18:39:15 +08:00
|
|
|
|
|
|
|
&::after {
|
|
|
|
color: $color-silver-chalice;
|
|
|
|
font-weight: normal;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
border-left: 0;
|
2020-09-02 18:00:52 +08:00
|
|
|
border-top-left-radius: $border-radius-default;
|
2020-09-01 22:25:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
2020-09-02 18:00:52 +08:00
|
|
|
border-top-right-radius: $border-radius-default;
|
2020-01-14 18:39:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
th,
|
|
|
|
td {
|
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tbody {
|
|
|
|
tr {
|
|
|
|
&.selected,
|
|
|
|
.selected {
|
|
|
|
background-color: $color-alto;
|
|
|
|
}
|
|
|
|
}
|
2022-04-13 16:12:01 +08:00
|
|
|
|
|
|
|
td {
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dt-body-center {
|
|
|
|
padding-left: 8px;
|
|
|
|
}
|
2020-01-14 18:39:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.sorting_desc,
|
|
|
|
.sorting_asc {
|
|
|
|
background-color: $color-alto;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
color: $color-volcano;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-15 20:52:17 +08:00
|
|
|
|
|
|
|
|
|
|
|
.dataTables_paginate {
|
|
|
|
.paginate_button {
|
|
|
|
background-color: transparent;
|
|
|
|
display: inline-block;
|
|
|
|
line-height: 36px;
|
|
|
|
margin-left: 4px;
|
|
|
|
min-width: 36px;
|
|
|
|
position: relative;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
a {
|
|
|
|
background-color: inherit;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
border-radius: $border-radius-default;
|
|
|
|
color: inherit;
|
|
|
|
outline: 0;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
background-color: inherit;
|
|
|
|
border: 1px solid transparent;
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
a {
|
|
|
|
background-color: inherit;
|
|
|
|
border: 1px solid $brand-primary;
|
|
|
|
color: inherit;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
background-color: inherit;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.previous {
|
|
|
|
&::before {
|
|
|
|
@include font-awesome;
|
|
|
|
content: $font-fas-angle-left;
|
|
|
|
left: 0;
|
|
|
|
line-height: 36px;
|
|
|
|
padding: 0 8px;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
padding-left: 23px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.next {
|
|
|
|
&::before {
|
|
|
|
@include font-awesome;
|
|
|
|
content: $font-fas-angle-right;
|
|
|
|
line-height: 36px;
|
|
|
|
padding: 0 8px;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
padding-right: 23px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|