mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-24 23:17:56 +01:00
bubbles
This commit is contained in:
parent
d23595a75c
commit
10b9a4ceb2
@ -15,6 +15,28 @@
|
|||||||
@base-color: #111;
|
@base-color: #111;
|
||||||
|
|
||||||
/* ----------------------------- General -------------------------------- */
|
/* ----------------------------- General -------------------------------- */
|
||||||
|
.nav-list{
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.5);
|
||||||
|
margin-top: -20px;
|
||||||
|
}
|
||||||
|
.nav-list a {
|
||||||
|
border: 1px solid rgb(213, 207, 207);
|
||||||
|
border-radius: 16px;
|
||||||
|
margin-top: 4px;
|
||||||
|
}
|
||||||
|
.nav-list li{
|
||||||
|
position: relative;
|
||||||
|
width: 90%;
|
||||||
|
}
|
||||||
|
.nav-header {
|
||||||
|
border: 1px solid rgb(213, 207, 207);
|
||||||
|
border-radius: 16px;
|
||||||
|
background-color: #eee;
|
||||||
|
}
|
||||||
|
.active {
|
||||||
|
position: relative;
|
||||||
|
left: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
#mindmapListContainer {
|
#mindmapListContainer {
|
||||||
background: #FFFFFF;
|
background: #FFFFFF;
|
||||||
@ -184,6 +206,10 @@ table.tableTag td {
|
|||||||
/* ---------------------------- Scrollbar for list filter --------------------------------- */
|
/* ---------------------------- Scrollbar for list filter --------------------------------- */
|
||||||
::-webkit-scrollbar {
|
::-webkit-scrollbar {
|
||||||
width: 8px;
|
width: 8px;
|
||||||
|
direction:rtl;
|
||||||
|
text-align: left;
|
||||||
|
position: relative;
|
||||||
|
left: 10px;
|
||||||
}
|
}
|
||||||
::-webkit-scrollbar-track {
|
::-webkit-scrollbar-track {
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
|
@ -124,7 +124,8 @@
|
|||||||
|
|
||||||
//setting max heigth to ul filters...
|
//setting max heigth to ul filters...
|
||||||
var maxHeight = $(".row-fluid:not(:hidden)").height() - $("#footerContainer").height()*2 - 20;
|
var maxHeight = $(".row-fluid:not(:hidden)").height() - $("#footerContainer").height()*2 - 20;
|
||||||
$("#foldersContainer ul").css('overflow', 'auto');
|
$("#foldersContainer ul").css('overflow-y', 'scrollbar');
|
||||||
|
$("#foldersContainer ul").css('overflow-x', 'hidden');
|
||||||
$("#foldersContainer ul").height(maxHeight);
|
$("#foldersContainer ul").height(maxHeight);
|
||||||
|
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user