qbit_manage/web-ui/css/components/_complex-object-card.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
1.7 KiB
CSS

/* Complex Object Entry Card Styling */
.complex-object-entry-card {
border: 1px solid var(--border-color);
border-radius: var(--border-radius);
padding: var(--spacing-md); /* Add some padding inside the border */
margin-bottom: var(--spacing-lg); /* Add space between entries */
background-color: var(--bg-secondary); /* Changed background color */
}
.complex-object-entry-card .form-group {
margin-bottom: var(--spacing-md); /* Reduce margin for form groups within the card */
}
.complex-object-entry-card .form-group:last-child {
margin-bottom: 0; /* Remove bottom margin for the last form group */
}
.complex-object-key-group {
display: flex;
align-items: center;
gap: var(--spacing-md);
padding-right: calc(28px + var(--spacing-md)); /* Reserve space for close button */
}
.complex-object-key-group .form-input,
.complex-object-key-group .form-select {
flex-grow: 1; /* Allow the input/select to take up available space */
width: auto; /* Override the 100% width from forms.css */
max-width: none; /* Let flex-grow handle the sizing */
}
.complex-object-key-group .form-label {
flex-shrink: 0; /* Prevent label from shrinking */
min-width: fit-content; /* Ensure label doesn't get too small */
}
/* Specific styling for category dropdown to prevent overlap */
.complex-object-key-dropdown {
width: auto !important; /* Override any inherited width */
flex-grow: 1;
margin-right: var(--spacing-sm); /* Add some margin from the close button area */
}
.array-item-input-group {
display: flex;
align-items: center;
gap: var(--spacing-sm); /* Space between input and button */
}
.array-item-input-group .form-input {
flex-grow: 1; /* Allow input to take up space */
}