This commit is contained in:
haoouba
2021-02-01 21:24:49 +08:00
parent 30056b762c
commit 1de54fa2bb
8 changed files with 33 additions and 12 deletions

File diff suppressed because one or more lines are too long

View File

@@ -1463,6 +1463,10 @@ html[data-night='night'] {
color: var(--theme);
}
}
&-player {
width: 100%;
height: 500px;
}
&-protected {
display: flex;
justify-content: center;

File diff suppressed because one or more lines are too long

View File

@@ -21,13 +21,13 @@
user-select: none;
&::before {
content: '';
position: absolute;
border-style: solid;
border-width: 10px;
bottom: -20px;
left: 0;
z-index: -1;
border-color: var(--theme) transparent transparent;
position: absolute;
bottom: -10px;
left: -10px;
border-style: solid;
border-width: 10px;
border-color: var(--theme) transparent transparent;
transform: rotate(90deg);
}
}
&-list {

View File

@@ -117,7 +117,7 @@ document.addEventListener('DOMContentLoaded', () => {
/* 搜索功能 */
const searchFn = () => {
const val = $('.joe_video__list-search input').val();
if (!val || isLoading) return;
if (isLoading) return;
queryData.pg = 1;
queryData.t = '';
queryData.wd = val;