Merge pull request #6696 from akathuria289/issue_6689
Fixed issue #6689
This commit is contained in:
commit
181051e343
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">
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
@ -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