Hi Ralf,
It's defined via these files:
ja_simpli/templates/ja_simpli/css/template-j4.css
.list-unstyled {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
display: none;
float: left;
padding: 5px 0;
margin: 2px 0 0;
list-style: none;
border: 1px solid #ccc;
and less file: ja_simpli/templates/ja_simpli/less/_navigation.less
// Compatible j4
.list-unstyled {
display: none;
> li {
border-bottom: 1px dotted @border-color;
&:last-child {
border-bottom: 0;
}
&:hover > .list-unstyled {
display: block;
left: @dropdownWidth - 5px;
top: 5px;
}
}
}
Regards