2026-01-02 17:48:58 +09:00
|
|
|
/* Shared Mobile Custom CSS for Anime Downloader */
|
|
|
|
|
|
2026-01-04 01:23:44 +09:00
|
|
|
/* Custom Notify Styling - Mobile Default */
|
2026-01-02 17:48:58 +09:00
|
|
|
.bootstrap-notify-container,
|
|
|
|
|
[data-notify="container"] {
|
|
|
|
|
max-width: 90vw !important;
|
|
|
|
|
width: auto !important;
|
|
|
|
|
right: 5vw !important;
|
|
|
|
|
left: 5vw !important;
|
|
|
|
|
padding: 12px 16px !important;
|
|
|
|
|
border-radius: 10px !important;
|
|
|
|
|
background: var(--notify-bg) !important;
|
|
|
|
|
backdrop-filter: blur(10px) !important;
|
|
|
|
|
border: 1px solid var(--notify-border) !important;
|
|
|
|
|
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
|
|
|
|
|
color: #e0e7ff !important;
|
|
|
|
|
font-size: 13px !important;
|
|
|
|
|
z-index: 10000 !important;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-04 01:23:44 +09:00
|
|
|
/* Desktop Notify: 오른쪽 정렬, 적절한 사이즈 */
|
|
|
|
|
@media (min-width: 769px) {
|
|
|
|
|
.bootstrap-notify-container,
|
|
|
|
|
[data-notify="container"] {
|
|
|
|
|
max-width: 450px !important;
|
|
|
|
|
min-width: 300px !important;
|
|
|
|
|
width: auto !important;
|
|
|
|
|
right: 20px !important;
|
|
|
|
|
left: auto !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-02 17:48:58 +09:00
|
|
|
[data-notify="container"].alert-success {
|
|
|
|
|
border-color: rgba(16, 185, 129, 0.4) !important;
|
|
|
|
|
background: var(--notify-success-bg, rgba(6, 78, 59, 0.95)) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-notify="container"].alert-warning {
|
|
|
|
|
border-color: rgba(245, 158, 11, 0.4) !important;
|
|
|
|
|
background: var(--notify-warning-bg, rgba(120, 53, 15, 0.95)) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-notify="container"].alert-danger {
|
|
|
|
|
border-color: rgba(239, 68, 68, 0.4) !important;
|
|
|
|
|
background: var(--notify-danger-bg, rgba(127, 29, 29, 0.95)) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-notify="message"] {
|
|
|
|
|
color: #e0e7ff !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-notify="title"] {
|
|
|
|
|
color: #fff !important;
|
|
|
|
|
font-weight: 600 !important;
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-12 21:07:57 +09:00
|
|
|
/* Common Mobile Responsive Fixes - Comprehensive Normalization */
|
2026-01-02 17:48:58 +09:00
|
|
|
@media (max-width: 768px) {
|
2026-01-12 21:07:57 +09:00
|
|
|
*, ::before, ::after {
|
|
|
|
|
box-sizing: border-box !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
|
width: 100% !important;
|
|
|
|
|
max-width: 100% !important;
|
|
|
|
|
margin: 0 !important;
|
|
|
|
|
padding: 0 !important;
|
2026-01-02 17:48:58 +09:00
|
|
|
overflow-x: hidden !important;
|
2026-01-12 21:07:57 +09:00
|
|
|
position: relative !important;
|
|
|
|
|
-webkit-text-size-adjust: 100%;
|
|
|
|
|
touch-action: manipulation;
|
2026-01-02 17:48:58 +09:00
|
|
|
}
|
2026-01-06 19:25:59 +09:00
|
|
|
|
2026-01-12 21:07:57 +09:00
|
|
|
/* Layout Expansion on Mobile - Critical Fix for Horizontal Shift */
|
|
|
|
|
.container, .container-fluid, #main_container {
|
|
|
|
|
width: 100% !important;
|
|
|
|
|
max-width: 100% !important;
|
|
|
|
|
min-width: 0 !important;
|
|
|
|
|
padding-left: 6px !important;
|
|
|
|
|
padding-right: 6px !important;
|
|
|
|
|
margin-left: 0 !important;
|
|
|
|
|
margin-right: 0 !important;
|
|
|
|
|
box-sizing: border-box !important;
|
|
|
|
|
overflow-x: hidden !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.row {
|
|
|
|
|
margin-left: 0 !important;
|
|
|
|
|
margin-right: 0 !important;
|
|
|
|
|
width: 100% !important;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[class*="col-"] {
|
|
|
|
|
padding-left: 4px !important;
|
|
|
|
|
padding-right: 4px !important;
|
|
|
|
|
min-width: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Compact Navbar Fix */
|
2026-01-06 19:25:59 +09:00
|
|
|
.navbar {
|
2026-01-12 21:07:57 +09:00
|
|
|
width: 100% !important;
|
|
|
|
|
max-width: 100% !important;
|
2026-01-06 19:25:59 +09:00
|
|
|
padding-top: 0.25rem !important;
|
|
|
|
|
padding-bottom: 0.25rem !important;
|
2026-01-12 21:07:57 +09:00
|
|
|
margin: 0 !important;
|
2026-01-06 19:25:59 +09:00
|
|
|
}
|
2026-01-02 17:48:58 +09:00
|
|
|
|
2026-01-12 21:07:57 +09:00
|
|
|
/* Global Navigation Pills Fix */
|
2026-01-02 17:48:58 +09:00
|
|
|
ul.nav.nav-pills.bg-light {
|
2026-01-04 01:00:17 +09:00
|
|
|
background-color: rgba(30, 41, 59, 0.6) !important;
|
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
2026-01-12 21:07:57 +09:00
|
|
|
border-radius: 8px !important;
|
2026-01-12 21:04:11 +09:00
|
|
|
padding: 4px !important;
|
2026-01-12 21:07:57 +09:00
|
|
|
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
|
|
|
|
|
display: flex !important;
|
|
|
|
|
flex-wrap: nowrap !important;
|
2026-01-12 21:04:11 +09:00
|
|
|
overflow-x: auto !important;
|
|
|
|
|
-webkit-overflow-scrolling: touch;
|
2026-01-12 21:07:57 +09:00
|
|
|
width: 100% !important;
|
2026-01-12 21:04:11 +09:00
|
|
|
max-width: 100% !important;
|
|
|
|
|
box-sizing: border-box !important;
|
|
|
|
|
margin-top: 2px !important;
|
2026-01-12 21:07:57 +09:00
|
|
|
justify-content: flex-start !important; /* Critical for scrollable access */
|
2026-01-02 17:48:58 +09:00
|
|
|
}
|
2026-01-04 01:00:17 +09:00
|
|
|
|
|
|
|
|
ul.nav.nav-pills .nav-item {
|
2026-01-12 21:07:57 +09:00
|
|
|
flex: 0 0 auto !important;
|
2026-01-04 01:00:17 +09:00
|
|
|
}
|
|
|
|
|
|
2026-01-02 17:48:58 +09:00
|
|
|
ul.nav.nav-pills .nav-link {
|
2026-01-12 21:04:11 +09:00
|
|
|
border-radius: 6px !important;
|
|
|
|
|
padding: 6px 12px !important;
|
2026-01-12 21:07:57 +09:00
|
|
|
color: #94a3b8 !important;
|
2026-01-04 01:00:17 +09:00
|
|
|
font-weight: 600;
|
|
|
|
|
transition: all 0.3s ease;
|
2026-01-12 21:07:57 +09:00
|
|
|
white-space: nowrap !important;
|
|
|
|
|
font-size: 11px !important;
|
2026-01-04 01:00:17 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ul.nav.nav-pills .nav-link.active {
|
|
|
|
|
background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
|
|
|
|
|
color: #fff !important;
|
2026-01-02 17:48:58 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Card/Table Container Fix */
|
|
|
|
|
.card, .table-responsive {
|
|
|
|
|
width: 100% !important;
|
|
|
|
|
margin-left: 0 !important;
|
|
|
|
|
margin-right: 0 !important;
|
2026-01-12 21:07:57 +09:00
|
|
|
border-radius: 8px !important;
|
2026-01-02 17:48:58 +09:00
|
|
|
}
|
|
|
|
|
}
|
2026-01-06 19:25:59 +09:00
|
|
|
|
|
|
|
|
/* Global Navigation Spacing Adjustments (Plugin Specific) */
|
|
|
|
|
#menu_module_div {
|
|
|
|
|
padding-top: 52px !important; /* Adjusted for compact navbar (~52px) */
|
|
|
|
|
margin-bottom: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#menu_module_div .nav-pills,
|
|
|
|
|
#menu_page_div .nav-pills {
|
|
|
|
|
margin-top: 0 !important;
|
|
|
|
|
margin-bottom: 2px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Tighten main container for desktop */
|
|
|
|
|
@media (min-width: 769px) {
|
|
|
|
|
#main_container {
|
|
|
|
|
margin-top: 0 !important;
|
|
|
|
|
padding-top: 0 !important;
|
|
|
|
|
}
|
|
|
|
|
}
|