0
0
mirror of https://github.com/kevinpapst/kimai2.git synced 2024-12-22 12:18:29 +00:00
kevinpapst_kimai2/assets/sass/tables.scss
2024-11-21 22:44:49 +01:00

162 lines
3.3 KiB
SCSS

/*
* This file is part of the Kimai time-tracking app.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
table.dataTable {
clear: both;
margin-bottom: 0 !important;
max-width: none !important;
thead .sorting,
thead .sorting_asc,
thead .sorting_desc {
cursor: pointer;
position: relative;
}
thead .sorting_asc,
thead .sorting_desc {
font-weight: bold;
}
thead .sorting:after,
thead .sorting_asc:after,
thead .sorting_desc:after {
padding-left: 5px;
font-family: 'Font Awesome 6 Free';
opacity: 0.5;
font-size: 12px;
}
thead .sorting:after {
opacity: 0.2;
content: "\f0dc"; /* sort */
}
thead .sorting_asc:after {
content: "\f077";
}
thead .sorting_desc:after {
content: "\f078";
}
thead > tr > th {
vertical-align: top;
white-space: nowrap;
}
th:active {
outline: none;
}
}
table.table-bordered {
thead th,
thead td {
border-left-width: 0;
border-top-width: 0;
}
tbody th,
tbody td {
border-left-width: 0;
border-bottom-width: 0;
}
tfoot th,
tfoot td {
border-left-width: 0;
border-bottom-width: 0;
}
th:last-child,
td:last-child {
border-right-width: 0;
}
}
@include media-breakpoint-up(xl) {
table.dataTable.table > tbody > tr > td {
vertical-align: middle;
}
}
table.dataTable {
/* action column */
.actions {
width: 40px;
}
tr {
/* summary row - used in many tables to show rows with summarized values like durations or money */
&.summary td {
font-weight: bold;
border: 0;
background-color: var(--tblr-bg-surface-secondary);
}
th.multiCheckbox {
width: 15px;
}
&.overlapping {
border-top: 2px solid rgba(214,57,57,.2);
}
&.exported {
opacity: 0.7;
}
}
td {
/*
Make sure that the action buttons do not line-break if another column takes all available space
See https://github.com/twbs/bootstrap/issues/9939#issuecomment-37682952
*/
.btn-group {
display: flex;
}
.label {
font-size: 85%;
padding: .3em .6em .3em;
line-height: 24px;
}
span.label-invisible {
opacity: 0.6;
}
}
th.weekend,
td.weekend {
background-color: var(--tblr-bg-surface-tertiary);
}
/* order is important, "today” should overwrite "weekend" therefor later in the file */
th.today {
background-color: var(--tblr-highlight-bg);
}
th.total,
td.total {
font-weight: bold;
}
}
/* Quick entry form */
.form-dataTable {
table.dataTable {
.form-group {
margin-bottom: 0;
}
}
}
table.table-hover {
tr {
&.exported {
&:hover {
opacity: 1.0;
}
}
}
}
/* For the context menu */
.action-dropdown,
.actions .dropdown .dropdown-menu {
// stay on top of sticky elements (like table header)
z-index: 1021;
}