Custom Content rules

Cloud
29 Nov 2021
Avatar
Kevin Papst
@kevinpapst

With 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.

You find the full documentation at https://www.kimai.org/documentation/plugin-custom-content.html

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;
}
Share this post:
Top