Book tree - UI fix.
authorLukasz Anwajler <lukasz@anwajler.com>
Wed, 22 Sep 2010 19:00:14 +0000 (14:00 -0500)
committerLukasz Anwajler <lukasz@anwajler.com>
Wed, 22 Sep 2010 19:00:14 +0000 (14:00 -0500)
wolnelektury/static/css/master.css
wolnelektury/static/js/catalogue.js

index 263a4fa..adc1708 100644 (file)
@@ -784,11 +784,14 @@ div.shown-tags p, div.all-tags p {
 /* ======================== */
 /* = Alphabetic book list = */
 /* ======================== */
+#book-list {
+   padding-left: 50px;
+}
 #book-list-nav {
     position: absolute;
     right: 50px;
     width: 200px;
-    border: 2px #325F70 solid;
+    border-left: 1px #cfcfcf solid;
     padding: 10px;
     font-size: 1.2em;
 }
@@ -820,7 +823,7 @@ div.shown-tags p, div.all-tags p {
     position: fixed;
     bottom: 50px;
     right: 50px;
-    border: 2px #325F70 solid;
+    border-left: 1px #cfcfcf solid;
     padding: 10px;
     background-color: white;    
 }
index 9679607..7177c4c 100644 (file)
@@ -447,7 +447,7 @@ function serverTime() {
             return false;
         });
 
-        $('.sponsors').cycle({timeout: 3000});
+        //$('.sponsors').cycle({timeout: 3000});
 
         $('.widget-code').focus(
             function(){
@@ -469,7 +469,9 @@ function serverTime() {
         
         $('.book-list-index').click(function(){
             $('.book-list-show-index').hide('slow');
-            $(this).parent().next('ul').toggle('slow');
+            if($(this).parent().next('ul:not(:hidden)').length == 0){
+               $(this).parent().next('ul').toggle('slow');
+           }
             return false;
         });