Fixed issue

This commit is contained in:
Abhishek Kathuria 2022-09-13 18:50:30 +05:30
parent 5b4a603ebd
commit 5b21c37572
6 changed files with 24 additions and 4 deletions

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

View File

@ -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">

View File

@ -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;
}
}

View File

@ -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;
}