天津投入产出系统后端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

42 lines
719 B

//.nav-list li
.nav-list li {
.active_state_caret() {
display: block;
content: "";
position: absolute;
right: 0;
top: 4px;
border: 8px solid transparent;
border-width: 14px 10px;
}
&.active > a:after {
.active_state_caret();
}
&.open > a:after {
//no caret for open menu item
display: none;
}
&.active.no-active-child {
> a:after {
//show caret for active menu item with childs which is not open(i.e. no submenu item is active)
display: block;
}
}
}
.nav-list > li {
li.active > a:after {
top: 2px;
border-width: 14px 8px;
}
}
.nav-list li.active:not(.open) li.active > a:after {
//hide the active caret when parent submenu is being closed (not open)
display: none !important;
}