mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2026-09-02 21:03:34 +03:00
# Description of Changes Redesign S3 connections based on feedback from #6948. Also redesigns the UI for Sources to make them more like the Pipelines page which improves UX quite a bit. There's still plenty more UI/UX work for Sources and S3 but moving in the right direction.
88 lines
1.5 KiB
CSS
88 lines
1.5 KiB
CSS
.portal-source-builder {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1.25rem;
|
|
padding: 1.5rem;
|
|
max-width: 84rem;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.portal-source-builder__loading {
|
|
display: flex;
|
|
justify-content: center;
|
|
padding: 4rem 0;
|
|
}
|
|
|
|
.portal-source-builder__head {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: space-between;
|
|
gap: 1rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.portal-source-builder__head-main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.portal-source-builder__title {
|
|
font-size: 1.375rem;
|
|
font-weight: 600;
|
|
color: var(--color-text-1);
|
|
margin: 0;
|
|
}
|
|
|
|
.portal-source-builder__head-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.625rem;
|
|
}
|
|
|
|
.portal-source-builder__body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
max-width: 32rem;
|
|
}
|
|
|
|
.portal-source-builder__type-grid {
|
|
display: flex;
|
|
gap: 0.625rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.portal-source-builder__type-card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 0.375rem;
|
|
min-width: 6rem;
|
|
padding: 0.875rem 1rem;
|
|
border: 1px solid var(--color-border-2);
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
.portal-source-builder__type-card.is-selected {
|
|
border-color: var(--color-accent, var(--color-brand));
|
|
background: var(--color-bg-hover);
|
|
}
|
|
|
|
.portal-source-builder__type-icon {
|
|
font-size: 1.5rem;
|
|
line-height: 1;
|
|
}
|
|
|
|
.portal-source-builder__type-name {
|
|
font-size: 0.8125rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.portal-source-builder__delete-actions {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 0.5rem;
|
|
}
|