Remove border

pull/297/head^2
FongMi 2 years ago
parent 028dfdff3d
commit 0c78a46066
  1. 10
      app/src/main/assets/css/style.css
  2. 8
      app/src/main/assets/index.html
  3. 6
      app/src/main/assets/js/script.js

@ -1156,8 +1156,6 @@ input.weui-btn_mini {
.weui-cells:before {
top: 0;
border-top: 1px solid rgba(0, 0, 0, 0.1);
border-top: 1px solid var(--weui-FG-3);
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transform: scaleY(0.5);
@ -1178,8 +1176,6 @@ input.weui-btn_mini {
.weui-cells:after {
bottom: 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
border-bottom: 1px solid var(--weui-FG-3);
-webkit-transform-origin: 0 100%;
transform-origin: 0 100%;
-webkit-transform: scaleY(0.5);
@ -1243,8 +1239,6 @@ input.weui-btn_mini {
top: 0;
right: 0;
height: 1px;
border-top: 1px solid rgba(0, 0, 0, 0.1);
border-top: 1px solid var(--weui-FG-3);
color: rgba(0, 0, 0, 0.1);
color: var(--weui-FG-3);
-webkit-transform-origin: 0 0;
@ -3296,9 +3290,11 @@ page {
.weui-tabbar__item.weui-bar__item_on .weui-tabbar__label {
color: #07c160;
color: var(--weui-BRAND);
svg {
fill: #07c160;
}
svg {
fill: var(--weui-BRAND);
}
@ -3307,9 +3303,11 @@ page {
.weui-tabbar__icon {
display: inline-block;
margin-bottom: 6px;
svg {
fill: rgba(0, 0, 0, 0.9);
}
svg {
fill: var(--weui-FG-0);
}

@ -31,7 +31,7 @@
</div>
</div>
</div>
<div style="text-align: center;margin-top: 10px;">
<div style="text-align: center;margin-top: 16px;">
<button onclick="search(); return false;" class="weui-cell__control weui-btn weui-btn_default weui-vcode-btn">確定</button>
</div>
</div>
@ -52,7 +52,7 @@
</div>
</div>
</div>
<div style="text-align: center;margin-top: 10px;">
<div style="text-align: center;margin-top: 16px;">
<button onclick="push(); return false;" class="weui-cell__control weui-btn weui-btn_default weui-vcode-btn">確定</button>
</div>
</div>
@ -74,7 +74,7 @@
</div>
</div>
</div>
<div style="text-align: center;margin-top: 10px;">
<div style="text-align: center;margin-top: 16px;">
<button onclick="setting(); return false;" class="weui-cell__control weui-btn weui-btn_default weui-vcode-btn">確定</button>
</div>
</div>
@ -87,7 +87,7 @@
<h2 class="weui-form__title">本地</h2>
</div>
<input type="file" id="file_uploader" style="display:none;" onchange="uploadTip()" multiple />
<div class="weui-form__control-area" style="text-align: center;margin-bottom: 10px !important;">
<div class="weui-form__control-area" style="text-align: center;margin-bottom: 8px !important;">
<div class="button-sp-area">
<a href="javascript:void(0)" role="button" class="weui-btn weui-btn_mini weui-btn_default weui-wa-hotarea" href="javascript:void(0)" onclick="uploadFile()">上傳檔案</a>&nbsp;
<a href="javascript:void(0)" role="button" class="weui-btn weui-btn_mini weui-btn_default weui-wa-hotarea" href="javascript:void(0)" onclick="newFolder()">新增資料夾</a>&nbsp;

@ -29,7 +29,7 @@ function doAction(action, kv) {
}
function tpl_top(path) {
return `<a class="weui-cell weui-cell_access" href="javascript:void(0)" onclick="listFile('` + path + `')">
return `<a class="weui-cell weui-cell_access" href="javascript:void(0)" onclick="listFile('` + path + `')">
<div class="weui-cell__hd"><img src="` + ic_dir + `" alt="" style="width: 32px; margin-right: 16px; display: block;"></div>
<span class="weui-cell__bd">
<span class="weui-cell__name">..</span>
@ -40,7 +40,7 @@ function tpl_top(path) {
}
function tpl_dir(name, time, path) {
return `<a class="weui-cell weui-cell_access" href="#" onclick="listFile('` + path + `')">
return `<a class="weui-cell weui-cell_access" href="#" onclick="listFile('` + path + `')">
<div class="weui-cell__hd"><img src="` + ic_dir + `" alt="" style="width: 32px; margin-right: 16px; display: block;"></div>
<span class="weui-cell__bd">
<span class="weui-cell__name">` + name + `</span>
@ -52,7 +52,7 @@ function tpl_dir(name, time, path) {
}
function tpl_file(name, time, path, canDel) {
return `<a class="weui-cell weui-cell_access" href="javascript:void(0)" onclick="selectFile('` + path + `', ` + canDel + `)">
return `<a class="weui-cell weui-cell_access" href="javascript:void(0)" onclick="selectFile('` + path + `', ` + canDel + `)">
<div class="weui-cell__hd"><img src="` + ic_file + `" alt="" style="width: 32px; margin-right: 16px; display: block;"></div>
<span class="weui-cell__bd">
<span class="weui-cell__name">` + name + `</span>

Loading…
Cancel
Save