feat: hide pip in mobile, sort search results

This commit is contained in:
shinya
2025-07-09 10:17:13 +08:00
parent 6dd508640e
commit fba049ef9f
2 changed files with 23 additions and 0 deletions

View File

@@ -159,3 +159,10 @@ div[data-media-provider] video {
background-repeat: no-repeat !important; /* 防止重复 */
background-color: #000 !important; /* 其余区域填充为黑色 */
}
/* 隐藏移动端竖屏时的 pip 按钮 */
@media (max-width: 768px) and (orientation: portrait) {
.art-control-pip {
display: none !important;
}
}