Addition of scrollbar to search results.
This commit is contained in:
parent
5118005699
commit
3d8332056a
3 changed files with 7 additions and 7 deletions
|
@ -1,6 +1,7 @@
|
||||||
function selectEdgeOnClickHandler(adj, e) {
|
function selectEdgeOnClickHandler(adj, e) {
|
||||||
if (Mconsole.busy) return;
|
if (Mconsole.busy) return;
|
||||||
|
|
||||||
|
|
||||||
// catch right click on mac, which is often like ctrl+click
|
// catch right click on mac, which is often like ctrl+click
|
||||||
if (navigator.platform.indexOf("Mac")!=-1 && e.ctrlKey) {
|
if (navigator.platform.indexOf("Mac")!=-1 && e.ctrlKey) {
|
||||||
selectEdgeOnRightClickHandler(adj, e)
|
selectEdgeOnRightClickHandler(adj, e)
|
||||||
|
@ -204,7 +205,6 @@ function selectNodeOnClickHandler(node, e) {
|
||||||
selectNodeOnRightClickHandler(node, e)
|
selectNodeOnRightClickHandler(node, e)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var check = nodeWasDoubleClicked();
|
var check = nodeWasDoubleClicked();
|
||||||
if (check) {
|
if (check) {
|
||||||
nodeDoubleClickHandler(node, e);
|
nodeDoubleClickHandler(node, e);
|
||||||
|
|
|
@ -1080,7 +1080,7 @@ overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebarSearch .resultText {
|
.sidebarSearch .resultText {
|
||||||
width: 125px;
|
width: 250px;
|
||||||
display: block;
|
display: block;
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
@ -1194,7 +1194,7 @@ line-height: 20px;
|
||||||
background: white;
|
background: white;
|
||||||
width: auto;
|
width: auto;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
left: 35px;
|
right: 20px;
|
||||||
color: black;
|
color: black;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
|
@ -1205,14 +1205,14 @@ line-height: 20px;
|
||||||
z-index:100;
|
z-index:100;
|
||||||
}
|
}
|
||||||
.sidebarSearch .mapCount .tip,.sidebarSearch .synapseCount .tip, .sidebarSearch .topicCount .tip {
|
.sidebarSearch .mapCount .tip,.sidebarSearch .synapseCount .tip, .sidebarSearch .topicCount .tip {
|
||||||
left:-3px;
|
right:-3px;
|
||||||
bottom:24px;
|
bottom:24px;
|
||||||
}
|
}
|
||||||
.sidebarSearch .hoverForTip:hover .tip {
|
.sidebarSearch .hoverForTip:hover .tip {
|
||||||
display:block;
|
display:block;
|
||||||
}
|
}
|
||||||
.sidebarSearch .mapContributorsIcon .mapContributors {
|
.sidebarSearch .mapContributorsIcon .mapContributors {
|
||||||
left:0;
|
right:0;
|
||||||
bottom:21px;
|
bottom:21px;
|
||||||
white-space:normal;
|
white-space:normal;
|
||||||
width:200px;
|
width:200px;
|
||||||
|
|
Loading…
Reference in a new issue