qbit_manage/web-ui/css/components/_tabs.css
bobokun 3fa5fcee3b
v4.5.0 (#862)
# 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>
2025-07-11 19:13:41 -04:00

52 lines
879 B
CSS

/* Tabs Component */
.tabs {
display: flex;
flex-direction: column;
}
.tab-list {
display: flex;
border-bottom: 1px solid var(--border-color);
margin-bottom: var(--spacing-lg);
}
.tab-item {
padding: var(--spacing-sm) var(--spacing-lg);
border-bottom: 2px solid transparent;
cursor: pointer;
font-weight: 500;
color: var(--text-secondary);
transition: all var(--transition-fast);
}
.tab-item:hover {
color: var(--text-primary);
}
.tab-item.active {
color: var(--primary-color);
border-bottom-color: var(--primary-color);
}
.nav-link.dirty::after {
content: '';
display: inline-block;
width: 8px;
height: 8px;
border-radius: 50%;
background-color: var(--warning-color);
margin-left: 8px;
vertical-align: middle;
}
.tab-content {
flex: 1;
}
.tab-pane {
display: none;
}
.tab-pane.active {
display: block;
}