First push of newui

This commit is contained in:
Raelon Masters
2020-06-11 11:20:32 -04:00
parent d740456df5
commit 1b54820d67
8 changed files with 215 additions and 123 deletions

View File

@@ -30,9 +30,9 @@ $(document).ready(function(){
$(this).removeAttr("disabled");
}
});
$('#app').css("height", max_height);
$('.nav_l').css("max-height", max_height);
$('div.shelf').css("max-height", max_height);
// $('#app').css("height", max_height);
// $('.nav_l').css("max-height", max_height);
// $('div.shelf').css("max-height", max_height);
$('.nav_link').on('mouseover', function (e){
var popover_str = $(this).attr('alt');
x = $(this).offset().left
@@ -51,4 +51,7 @@ $(document).ready(function(){
$('.popover').css('top', y);
$('.popover').css('display','none');
});
$('#btn_collections').on('click', function (e){
$('.hidden.vert-nav.collections').toggle()
});
})