refactor: Implement common base module and model for anime downloader plugins and refactor existing modules to use them.

This commit is contained in:
2026-01-01 22:58:25 +09:00
parent 5dab969580
commit 88aeb888b3
20 changed files with 555 additions and 409 deletions

View File

@@ -293,8 +293,28 @@
}
/* Collapse Borders */
.border-left {
border-left: 3px solid rgba(255,255,255,0.1) !important;
/* Folder Browser Modal Styles */
.folder-item {
cursor: pointer;
transition: background 0.2s;
border-bottom: 1px solid rgba(255,255,255,0.05);
display: flex !important;
align-items: center;
width: 100%;
overflow: hidden;
}
.folder-item:hover {
background: rgba(255, 255, 255, 0.05);
}
.folder-item span {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
flex: 1;
min-width: 0;
}
.folder-item.selected {
background: rgba(16, 185, 129, 0.3) !important;
}
</style>