Icinga / icingaweb2-module-businessprocess

Create top-level views of your applications in a graphical editor. Rules express dependencies between existing hosts and services and let you alert on application level. Business processes are displayed in a tree or list overview.
https://icinga.com/docs/businessprocess/latest
GNU General Public License v2.0
108 stars 44 forks source link

Disable safari default details marker #406

Closed yhabteab closed 1 year ago

yhabteab commented 1 year ago

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;
}