Merge pull request #6696 from akathuria289/issue_6689

Fixed issue #6689
This commit is contained in:
Jitendra Singh 2022-09-14 12:59:53 +05:30 committed by GitHub
commit 181051e343
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 34 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

@ -1145,4 +1145,18 @@ i.within-circle {
.show-password {
margin-top:10px !important;
}
.category {
line-height: 2.0rem !important;
}
.sub-category {
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;
}