Fixed issue
This commit is contained in:
parent
5b4a603ebd
commit
5b21c37572
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -129,6 +129,14 @@
|
|||
<span class="category-title">{{
|
||||
subCategory['name']
|
||||
}}</span>
|
||||
|
||||
<i
|
||||
class="rango-arrow-down pr15 float-right"
|
||||
@mouseout="toggleSidebar(id, $event, 'mouseout')"
|
||||
@mouseover="toggleSidebar(id, $event, 'mouseover')"
|
||||
v-if="subCategory.children.length > 0"
|
||||
>
|
||||
</i>
|
||||
</a>
|
||||
|
||||
<ul type="none" class="nested">
|
||||
|
|
|
|||
|
|
@ -1155,4 +1155,8 @@ i.within-circle {
|
|||
padding-left: 0 !important;
|
||||
padding-top: 0 !important;
|
||||
line-height: 2.0rem !important;
|
||||
|
||||
i {
|
||||
margin-top: 8px !important;
|
||||
}
|
||||
}
|
||||
|
|
@ -1753,7 +1753,7 @@
|
|||
|
||||
.category {
|
||||
padding: 5px 0 4px 15px;
|
||||
|
||||
|
||||
+ .nested {
|
||||
color: $font-color;
|
||||
|
||||
|
|
@ -2689,3 +2689,11 @@
|
|||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
.sub-category:hover ~ ul {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.nested {
|
||||
display: none;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue