refactor: Update ConnectivityCard and SpacedriveColors for Consistency

- Refactored the `ConnectivityCard` component to utilize the new `SpacedriveColors` for text and background colors, enhancing visual consistency across the UI.
- Adjusted color definitions in `SpacedriveColors` to provide a more cohesive design, including updates to primary, secondary, and tertiary background colors.
- Improved the layout and spacing in `JobRowView` and `JobMonitorView` for better user experience.
- Introduced a new `SettingsContentView` section for displaying the `ConnectivityCard`, integrating service status into the settings interface.
This commit is contained in:
Jamie Pine
2025-09-24 20:41:03 -07:00
parent e0241a6bba
commit 22013cf073
2 changed files with 0 additions and 3 deletions

View File

@@ -697,7 +697,6 @@ impl JobManager {
job_infos
}
/// List all jobs with a specific status (unified query)
pub async fn list_jobs(&self, status: Option<JobStatus>) -> JobResult<Vec<JobInfo>> {
use sea_orm::QueryFilter;

View File

@@ -80,7 +80,6 @@ impl crate::infra::job::traits::DynJob for ThumbnailJob {
fn job_name(&self) -> &'static str {
Self::NAME
}
}
/// Output from thumbnail generation job
@@ -497,4 +496,3 @@ impl ThumbnailJob {
Ok(entries)
}
}