Icinga/icingaweb2-module-businessprocess

Disable safari default details marker

yhabteab opened this issue · 0 comments

Describe the bug

Currently, both the default detail marker and the custom caret icons are rendered, which looks quite weird on Safari. We should disable the default Safari detail marker as we use our own icons to represent the detail state.

Bildschirmfoto 2023-08-15 um 10 57 45

This should do the trick:

li.process summary::-webkit-details-marker {
    display: none;
}