fix notify display on chrome, add some css tweaks
This commit is contained in:
parent
8d4b5b466a
commit
5973c74c34
2 changed files with 7 additions and 7 deletions
|
@ -347,11 +347,9 @@ dojo.declare("fox.FeedTree", dijit.Tree, {
|
||||||
|
|
||||||
if (treeNode) {
|
if (treeNode) {
|
||||||
treeNode = treeNode[0];
|
treeNode = treeNode[0];
|
||||||
if (is_cat) {
|
if (treeNode.loadingNode) {
|
||||||
if (treeNode.loadingNode) {
|
treeNode.loadingNode.src = src;
|
||||||
treeNode.loadingNode.src = src;
|
return true;
|
||||||
return true;
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
treeNode.expandoNode.src = src;
|
treeNode.expandoNode.src = src;
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -139,8 +139,10 @@ a:hover {
|
||||||
position : absolute;
|
position : absolute;
|
||||||
font-size : 12px;
|
font-size : 12px;
|
||||||
z-index : 99;
|
z-index : 99;
|
||||||
|
max-width : 200px;
|
||||||
|
min-width : 100px;
|
||||||
padding : 5px;
|
padding : 5px;
|
||||||
min-width : 200px;
|
-width : 200px;
|
||||||
box-shadow : 0px 0px 2px #ccc;
|
box-shadow : 0px 0px 2px #ccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -948,6 +950,7 @@ ul.helpKbList h2 {
|
||||||
|
|
||||||
.dijitTreeNode .loadingNode {
|
.dijitTreeNode .loadingNode {
|
||||||
margin-left : 3px;
|
margin-left : 3px;
|
||||||
|
height : 9px;
|
||||||
}
|
}
|
||||||
|
|
||||||
span.collapseBtn {
|
span.collapseBtn {
|
||||||
|
@ -1050,4 +1053,3 @@ div.hl.active a.title {
|
||||||
vertical-align : middle;
|
vertical-align : middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue