mirror of
https://github.com/bakustarver/rpgmakermlinux-cicpoffs.git
synced 2025-07-14 20:35:17 +02:00
59 lines
No EOL
1.9 KiB
HTML
59 lines
No EOL
1.9 KiB
HTML
<div>
|
|
<div class='menu_item' style='float:right;'><img class="menu_close" src='tyrano/images/system/menu_button_close.png' /></div>
|
|
|
|
<div style='clear:both'></div>
|
|
|
|
<img class="button_arrow_up button_smart" src='tyrano/images/system/arrow_up.png' style='cursor:pointer;left:670px;top:20px;position:absolute;'>
|
|
<img class="button_arrow_down button_smart" src='tyrano/images/system/arrow_down.png' style='cursor:pointer;left:760px;top:15px;position:absolute;'>
|
|
|
|
<div class="area_save_list" style="margin-top:50px;overflow:auto">
|
|
|
|
<ul class='save_list'>
|
|
{{for array_save}}
|
|
<li class='save_display_area save_list_item' data-num='{{:num}}'>
|
|
<span class='save_list_item_thumb'>
|
|
{{if img_data != ""}}
|
|
<img style="width:100px" src="{{:img_data}}">
|
|
{{/if}}
|
|
</span>
|
|
|
|
<span class='save_list_item_area'>
|
|
<span class='save_list_item_date'>{{:save_date}}</span>
|
|
<span class='save_list_item_text'>{{:title}}</span>
|
|
</span>
|
|
</li>
|
|
{{/for}}
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<img class="img_label img_label_save" src='tyrano/images/system/label_save.png' style='left:0;top:0;position:absolute;'>
|
|
<img class="img_bg_base" src='tyrano/images/system/bg_base.png' style='z-index:-1;left:0;top:0;width:100%;height:100%;position:absolute;'>
|
|
|
|
<script>
|
|
setTimeout(function(){
|
|
var save_list_height = parseInt($(".tyrano_base").outerHeight()) - parseInt($(".save_list").get(0).offsetTop) ;
|
|
$(".area_save_list").css("height",save_list_height);
|
|
},30);
|
|
</script>
|
|
|
|
<style>
|
|
|
|
/*両方共通(はみ出したらスクロールさせる)*/
|
|
.area_save_list::-webkit-scrollbar{
|
|
width: 15px;
|
|
}
|
|
.area_save_list::-webkit-scrollbar-thumb{
|
|
background: #6495ED;
|
|
border-radius: 10px;
|
|
}
|
|
.area_save_list::-webkit-scrollbar-track-piece:start{
|
|
background: gray;
|
|
}
|
|
.area_save_list::-webkit-scrollbar-track-piece:end{
|
|
background: #fff;
|
|
}
|
|
</style>
|
|
|
|
|
|
</div> |