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

53 lines
1.1 KiB
Plaintext
Raw Normal View History

2016-03-11 00:48:53 +00:00
.dropdown-submenu {
position:relative;
& > .dropdown-menu {
top: 0;
left: 100%;
margin-top: -6px;
margin-left: -1px;
border-radius:@border-radius-base;
.rtl & {
margin-left: 1px;
}
2016-03-11 00:48:53 +00:00
&.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;
2021-02-16 07:21:22 +00:00
border-left-color: @icon-normal-ie;
2021-01-03 21:58:06 +00:00
border-left-color: @icon-normal;
2016-03-11 00:48:53 +00:00
margin-top: 5px;
margin-right: -7px;
2022-10-04 13:41:46 +00:00
.rtl & {
float: left;
margin-right: 0;
margin-left: -7px;
border-color: transparent;
border-width: 3px 3px 3px 0;
border-right-color: @icon-normal-ie;
border-right-color: @icon-normal;
}
2016-03-11 00:48:53 +00:00
}
&.over:not(.disabled) > .dropdown-menu {
display: block;
}
&.over > a:after {
border-left-color: @dropdown-link-color;
}
}