forked from Archives/Athou_commafeed
fix icon hovering
This commit is contained in:
@@ -8,6 +8,12 @@
|
|||||||
top: -4px;
|
top: -4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.icon {
|
||||||
|
width: 14px;
|
||||||
|
height: 14px;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
.main .dropdown-menu a {
|
.main .dropdown-menu a {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
@@ -43,7 +49,7 @@
|
|||||||
.css-treeview {
|
.css-treeview {
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
font-size: 11px;
|
font-size: 12px;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -57,7 +63,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.css-treeview li {
|
.css-treeview li {
|
||||||
line-height: 18px;
|
line-height: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.css-treeview .icon-fldr {
|
.css-treeview .icon-fldr {
|
||||||
@@ -87,7 +93,7 @@
|
|||||||
|
|
||||||
.css-treeview label,.css-treeview a,.css-treeview label::before {
|
.css-treeview label,.css-treeview a,.css-treeview label::before {
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
font-size: 11px;
|
font-size: 12px;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
<div ng-mouseenter="hovered=node" ng-mouseleave="hovered=null" class="pointer">
|
<div ng-mouseenter="hovered=node" ng-mouseleave="hovered=null" class="pointer">
|
||||||
<div class="dropdown pull-right">
|
<div class="dropdown pull-right">
|
||||||
<a dropdown-toggle class="pull-right">
|
<a dropdown-toggle class="pull-right">
|
||||||
<i ng-show="hovered==node && node.id != 'all'" class="icon icon-chevron-down"></i>
|
<i ng-class="{'icon-chevron-down': hovered==node && node.id != 'all'}" class="icon"></i>
|
||||||
</a>
|
</a>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu">
|
||||||
<li>
|
<li>
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
ng-class="{error: feed.message && feed.errorCount > 10}">
|
ng-class="{error: feed.message && feed.errorCount > 10}">
|
||||||
<div class="dropdown pull-right">
|
<div class="dropdown pull-right">
|
||||||
<a dropdown-toggle class="pull-right">
|
<a dropdown-toggle class="pull-right">
|
||||||
<i ng-show="hovered==feed" class="icon icon-chevron-down"></i>
|
<i ng-class="{'icon-chevron-down': hovered==feed}" class="icon"></i>
|
||||||
</a>
|
</a>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu">
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
Reference in New Issue
Block a user