Skip to main content

Tips & tricks

On this page you will find an overview of various small tricks / workarounds on the Grexx Platform.

Disable timer for activities

Using the following CSS you can hide the timer that appears in activities after 3 seconds:

.grexxtimer {
display: none;
}

Do not allow 'short' forms to take up the entire height

Using the following CSS you can ensure that the shorter forms do not take up the full height of the screen.

.grexxform .modal-dialog .modal-content {
height: unset !important;
max-height: 100% !important;
}

.grexxform .modal-dialog .modal-body {
max-height: calc(100vh - 174px);
}