web-apps/apps/common/main/resources/less/dropdown-submenu.less

53 lines
1 KiB
Plaintext

.dropdown-submenu {
position:relative;
& > .dropdown-menu {
border-radius:@border-radius-base;
&.pull-right {
right: 100%;
left: auto;
}
&.static {
margin-top: -6px;
margin-left: -1px;
}
}
& > 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: @dropdown-link-color;
margin-top: 5px;
margin-right: -10px;
}
&.over:not(.disabled) > .dropdown-menu {
display: block;
}
&.over > a:after {
border-left-color: @dropdown-link-color;
}
&.dropright {
& > .dropdown-menu {
margin-top: -6px;
margin-left: -1px;
}
}
&.dropleft {
& > .dropdown-menu {
margin-top: -6px;
margin-right: -1px;
}
}
}