This commit is contained in:
Ezequiel Bergamaschi 2014-02-07 05:56:36 -03:00
parent d23595a75c
commit 10b9a4ceb2
2 changed files with 28 additions and 1 deletions

View File

@ -15,6 +15,28 @@
@base-color: #111;
/* ----------------------------- 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 {
background: #FFFFFF;
@ -184,6 +206,10 @@ table.tableTag td {
/* ---------------------------- Scrollbar for list filter --------------------------------- */
::-webkit-scrollbar {
width: 8px;
direction:rtl;
text-align: left;
position: relative;
left: 10px;
}
::-webkit-scrollbar-track {
border-radius: 10px;

View File

@ -124,7 +124,8 @@
//setting max heigth to ul filters...
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);
});