From 10b9a4ceb2a23104235cbc04a2cab52795f7b2cf Mon Sep 17 00:00:00 2001 From: Ezequiel Bergamaschi Date: Fri, 7 Feb 2014 05:56:36 -0300 Subject: [PATCH] bubbles --- .../src/main/webapp/css/mindmapList.less | 26 +++++++++++++++++++ .../src/main/webapp/jsp/mindmapList.jsp | 3 ++- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/wise-webapp/src/main/webapp/css/mindmapList.less b/wise-webapp/src/main/webapp/css/mindmapList.less index cd30dcc5..40345de0 100644 --- a/wise-webapp/src/main/webapp/css/mindmapList.less +++ b/wise-webapp/src/main/webapp/css/mindmapList.less @@ -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; diff --git a/wise-webapp/src/main/webapp/jsp/mindmapList.jsp b/wise-webapp/src/main/webapp/jsp/mindmapList.jsp index 17cffabc..4d186b12 100644 --- a/wise-webapp/src/main/webapp/jsp/mindmapList.jsp +++ b/wise-webapp/src/main/webapp/jsp/mindmapList.jsp @@ -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); });