Files
DocumentServer-v-9.2.0/web-apps/apps/common/main/resources/less/dropdown-submenu.less
Yajbir Singh f1b860b25c
Some checks failed
check / markdownlint (push) Has been cancelled
check / spellchecker (push) Has been cancelled
updated
2025-12-11 19:03:17 +05:30

51 lines
1.1 KiB
Plaintext

.dropdown-submenu {
position:relative;
& > .dropdown-menu {
top: 0;
left: 100%;
margin-top: -6px;
margin-left: -1px;
.border-radius(@border-radius-dropdown-menu-ie);
.border-radius(@border-radius-dropdown-menu);
.rtl & {
margin-left: 1px;
}
&.pull-right {
right: 100%;
left: auto;
}
}
& > a:after {
display: block;
content: " ";
.float-right();
width: 0;
height: 0;
border-color: transparent;
border-style: solid;
border-width: 3px 0 3px 3px;
border-left-color: @icon-normal-ie;
border-left-color: @icon-normal;
margin-top: 5px;
.margin-right(-7px);
.rtl & {
border-color: transparent;
border-width: 3px 3px 3px 0;
border-right-color: @icon-normal-ie;
border-right-color: @icon-normal;
}
}
&.over:not(.disabled) > .dropdown-menu {
display: block;
}
&.over > a:after {
border-left-color: @dropdown-link-color;
}
}