mirror of
https://github.com/StuffAnThings/qbit_manage.git
synced 2025-10-10 22:06:58 +08:00
# Requirements Updated - fastapi==0.116.0 - retrying==1.4.0 - uvicorn==0.35.0 # New Features - **Web UI**: Introduced a new Web UI for configuring and managing qBit Manage. - Visual Configuration Editor for YAML files. - Command Execution directly from the UI. - Undo/Redo History for changes. - Theme Support (light/dark mode). - Responsive Design for desktop and mobile. - Real-time YAML Preview. - Pass skip qbitorrent check as optional parameter to the API (Adds #860)\ **Full Changelog**: https://github.com/StuffAnThings/qbit_manage/compare/v4.4.0...v4.5.0 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: ineednewpajamas <73252768+ineednewpajamas@users.noreply.github.com>
66 lines
1.3 KiB
CSS
66 lines
1.3 KiB
CSS
/* Dropdown Component */
|
|
.dropdown {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.dropdown-toggle {
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
|
|
.dropdown-menu {
|
|
position: absolute;
|
|
top: 100%;
|
|
left: 0;
|
|
z-index: var(--z-dropdown);
|
|
min-width: 10rem;
|
|
padding: var(--spacing-sm) 0;
|
|
margin: var(--spacing-xs) 0 0;
|
|
background-color: var(--bg-primary);
|
|
border: 1px solid var(--border-color);
|
|
border-radius: var(--border-radius);
|
|
box-shadow: var(--shadow-md);
|
|
opacity: 0;
|
|
transform: translateY(-10px);
|
|
transition: opacity var(--transition-fast), transform var(--transition-fast);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.dropdown-menu.right {
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
|
|
.dropdown-menu.show {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
pointer-events: auto;
|
|
}
|
|
|
|
.dropdown-item {
|
|
display: block;
|
|
width: 100%;
|
|
padding: var(--spacing-sm) var(--spacing-lg);
|
|
clear: both;
|
|
font-weight: 400;
|
|
text-align: inherit;
|
|
white-space: nowrap;
|
|
background-color: transparent;
|
|
border: 0;
|
|
color: var(--text-primary);
|
|
text-decoration: none;
|
|
transition: background-color var(--transition-fast);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.dropdown-item:hover {
|
|
background-color: var(--bg-secondary);
|
|
}
|
|
|
|
.dropdown-divider {
|
|
height: 0;
|
|
margin: var(--spacing-sm) 0;
|
|
overflow: hidden;
|
|
border-top: 1px solid var(--border-color);
|
|
}
|