Custom Content rules
Cloud
29 Nov 2021
Kevin Papst
@kevinpapstWith the latest update a new feature was introduced, the “Custom Content” rules.
This allows to write your own javascript and stylesheet extensions, which you can use to further adapt Kimai to your own needs.
To find out more, please read the full documentation.
Two basic examples to trigger your imagination:
Removing the red dotted lines between overlapping timesheet entries
table.dataTable tr.overlapping {
border-top: none;
}
Highlight active timesheet records
tr.recording {
background-color: #ffa059 !important;
}