pull/141/head
icret 2022-05-26 15:25:32 +08:00
parent 67ed4ff05f
commit 74e57dbdcd
9 changed files with 273 additions and 348 deletions

View File

@ -236,7 +236,7 @@ if (isset($_GET['recycle_reimg'])) {
header("refresh:1;url=/admin/admin.inc.php");
}
?>
<div class="row" style="margin-bottom:100px">
<div class="row">
<div class="alert alert-primary alert-dismissable">
<button type="button" class="close" data-dismiss="alert" aria-hidden="true">x</button>
<h5>目录保存以 /// 递进,非必要请勿修改! 否则会导致部分操作不可用;</h5>

View File

@ -65,7 +65,7 @@ if (is_array($char_data)) {
box-shadow: 3px 2px 3px 2px rgba(19, 17, 36, 0.5);
}
</style>
<div class="row" style="margin-bottom:100px">
<div class="row">
<div class="clo-md-12">
<div class="alert alert-warning">
<form action="chart.php" method="post">

View File

@ -36,6 +36,8 @@ if ($config['notice_status'] == 1 && !empty($config['notice'])) : ?>
</div>
</div>
</div>
<!-- 占位符 -->
<div class="col-md-12 clo-xs-12" style="margin-bottom: 108px;position:relative;"></div>
<footer class="container text-muted small navbar-fixed-bottom" style="text-align: center;background-color:rgba(255,255,255,0.7);z-index: 0;">
<hr>
<?php /** 页脚信息 */ if (!empty($config['footer'])) echo $config['footer']; ?>
@ -119,7 +121,7 @@ if ($config['notice_status'] == 1 && !empty($config['notice'])) : ?>
setItem: function(name, value, days) {
var date = new Date();
date.setDate(date.getDate() + days);
document.cookie = name + '=' + value + ';expires=' + date;
document.cookie = name + '=' + value + ';expires=' + date + ';path=' + '/';
},
// 获取cookie
getItem: function(name) {

View File

@ -6,7 +6,7 @@ require_once __DIR__ . '/header.php';
/** 顶部广告 */
if ($config['ad_top']) echo $config['ad_top_info'];
?>
<div class="row" style="margin-bottom:100px">
<div class="row">
<div class="col-md-12">
<?php
if (!$config['showSwitch'] && !is_who_login('admin')) : ?>
@ -88,6 +88,7 @@ if ($config['ad_top']) echo $config['ad_top_info'];
/** 底部广告 */
if ($config['ad_bot']) echo $config['ad_bot_info']; ?>
</div>
<div class="row">
<div class="col-md-12">
<hr />
<div class="col-md-8 col-xs-12" style="padding-bottom:5px">

View File

@ -37,7 +37,7 @@ try {
exit;
}
?>
<div class="col-md-12" style="margin-bottom: 88px;">
<div class="col-md-12">
<div id="logs" class="datagrid table-bordered">
<div class="input-control search-box search-box-circle has-icon-left has-icon-right" id="searchboxExample2" style="margin-bottom: 10px;">
<input id="inputSearchExample2" type="search" class="form-control search-input input-sm" placeholder="日志搜索...">
@ -128,7 +128,7 @@ try {
md5: '<input class="form-control input-sm" type="text" value="<?php echo $v['md5']; ?>" readonly>',
checkImg: '<?php echo $v['checkImg']; ?>',
from: '<?php echo $v['from']; ?>',
manage: "<a href='<?php echo $config['domain'] . $v['path']; ?>' target='_blank' class='btn btn-mini btn-success'>查看</a> <a href='/application/del.php?recycle_url=<?php echo $v['path']; ?>' target='_blank' class='btn btn-mini btn-info'>回收</a> <a href='/application/del.php?url=<?php echo $v['path']; ?>' target='_blank' class='btn btn-mini btn-danger'>删除</a> ",
manage: "<div class='btn-group'><a href='<?php echo $config['domain'] . $v['path']; ?>' target='_blank' class='btn btn-mini btn-success'>查看</a> <a href='/application/info.php?img=<?php echo $v['path']; ?>' target='_blank' class='btn btn-mini'>信息</a> <a href='/application/del.php?recycle_url=<?php echo $v['path']; ?>' target='_blank' class='btn btn-mini btn-info'>回收</a> <a href='/application/del.php?url=<?php echo $v['path']; ?>' target='_blank' class='btn btn-mini btn-danger'>删除</a></div>",
},
<?php endforeach; ?>
]

File diff suppressed because one or more lines are too long

View File

@ -19,7 +19,7 @@ mustLogin();
<div class="content"></div>
<button type="button" class="close">x</button>
</div>
<div class="uploader-files file-list file-list-lg file-rename-by-click" data-drag-placeholder="选择文件/Ctrl+V粘贴/拖拽至此处" style="min-height: 160px; border-style: dashed;"></div>
<div class="uploader-files file-list file-list-lg file-rename-by-click" data-drag-placeholder="选择文件/Ctrl+V粘贴/拖拽至此处" style="min-height: 188px; border-style: dashed;"></div>
<div class="uploader-actions">
<div class="uploader-status pull-right text-muted"></div>
<button type="button" class="btn btn-link uploader-btn-browse"><i class="icon icon-plus"></i> 选择文件</button>
@ -27,7 +27,7 @@ mustLogin();
<button type="button" class="btn btn-link uploader-btn-stop"><i class="icon icon-pause"></i> 暂停上传</button>
</div>
</div>
<div class="col-md-12 clo-xs-12" style="margin-bottom:90px;">
<div class="col-md-12 clo-xs-12">
<ul class="nav nav-tabs">
<li <?php if ($config['upload_first_show'] == 1) echo 'class="active"'; ?>>
<a href="#" data-target="#tab2Content1" data-toggle="tab"><i class="icon icon-link"></i> 直链</a>

View File

@ -85,8 +85,13 @@
}
.bottom-bar {
opacity: 0;
width: 100%;
position: absolute;
bottom: 0.1px;
background-color: rgba(0, 0, 0, 0.2);
background-color: rgba(0, 0, 0, 0.5);
}
.bottom-bar:hover {
opacity: 1;
}