|
|
@@ -227,24 +227,32 @@ function show_content(){
|
|
|
$("#left_pannal").toggleClass("hidden");
|
|
|
if($("#left_pannal").hasClass("hidden")){
|
|
|
$("#main_view").css("margin-left","0");
|
|
|
- $(".fun_frame").css("width","calc(30% - 1em)");
|
|
|
+ $(".fun_frame").css("width","30vw");
|
|
|
+ $("#contents_div").css("width","calc(70vw - 2em)");
|
|
|
+ $("#left_pannal_inner").css("width","unset");
|
|
|
localStorage.setItem('article_show_toc_'+_mode, 'hide');
|
|
|
}else{
|
|
|
- $("#main_view").css("margin-left","270px");
|
|
|
- $(".fun_frame").css("width","calc(30% - 81px - 1em)");
|
|
|
+ $("#main_view").css("margin-left","20vw");
|
|
|
+ $(".fun_frame").css("width","20vw");
|
|
|
+ $("#left_pannal_inner").css("width","unset");
|
|
|
+ $("#contents_div").css("width","calc(60vw - 2em)");
|
|
|
localStorage.setItem('article_show_toc_'+_mode, 'show');
|
|
|
}
|
|
|
}
|
|
|
function set_toc_visible(isVisible){
|
|
|
if(isVisible){
|
|
|
$("#left_pannal").removeClass("hidden");
|
|
|
- $("#main_view").css("margin-left","270px");
|
|
|
- $(".fun_frame").css("width","calc(30% - 81px - 1em)");
|
|
|
+ $("#main_view").css("margin-left","20vw");
|
|
|
+ $(".fun_frame").css("width","20vw");
|
|
|
+ $("#left_pannal_inner").css("width","unset");
|
|
|
+ $("#contents_div").css("width","calc(60vw - 2em)");
|
|
|
localStorage.setItem('article_show_toc_'+_mode, 'show');
|
|
|
}else{
|
|
|
$("#left_pannal").addClass("hidden");
|
|
|
$("#main_view").css("margin-left","0");
|
|
|
- $(".fun_frame").css("width","calc(30% - 1em)");
|
|
|
+ $(".fun_frame").css("width","30vw");
|
|
|
+ $("#left_pannal_inner").css("width","unset");
|
|
|
+ $("#contents_div").css("width","calc(70vw - 2em)");
|
|
|
localStorage.setItem('article_show_toc_'+_mode, 'hide');
|
|
|
}
|
|
|
}
|