This commit implements a comprehensive visual refresh by updating the core color scheme across the application. A new, cohesive dark mode aesthetic has been applied, shifting primary accents from purple/orange tones to cooler blue/cyan gradients. This ensures better consistency and modernizes the look of various components, including buttons and loading indicators. - Updated global CSS variables for consistent theming - Refreshed component styles with the new color palette - Adjusted repository loading overlay visuals
258 lines
7.1 KiB
Svelte
258 lines
7.1 KiB
Svelte
<script lang="ts">
|
|
import iconUrl from "../../../src-tauri/icons/icon.png";
|
|
|
|
export let label = "Opening repository";
|
|
export let repoName = "";
|
|
</script>
|
|
|
|
<div class="repo-loading" role="status" aria-live="polite">
|
|
<div class="repo-loading-grid" aria-hidden="true"></div>
|
|
<div class="repo-loading-card">
|
|
<div class="repo-loading-mark">
|
|
<span class="repo-loading-halo halo-one"></span>
|
|
<span class="repo-loading-halo halo-two"></span>
|
|
<svg class="repo-loading-traces" viewBox="0 0 220 220" aria-hidden="true">
|
|
<path class="trace trace-main" d="M28 154 C72 114, 88 108, 110 110 S156 116, 192 68" />
|
|
<path class="trace trace-branch" d="M62 74 C100 88, 126 124, 158 166" />
|
|
<path class="trace trace-cut" d="M46 180 L174 180" />
|
|
</svg>
|
|
<img src={iconUrl} alt="" class="repo-loading-icon" />
|
|
</div>
|
|
|
|
<div class="repo-loading-text">
|
|
<span class="repo-loading-label">{label}…</span>
|
|
{#if repoName}
|
|
<span class="repo-loading-name" title={repoName}>{repoName}</span>
|
|
{/if}
|
|
</div>
|
|
|
|
<div class="repo-loading-bar"><span></span></div>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.repo-loading {
|
|
position: fixed;
|
|
top: calc(var(--app-titlebar-height, 42px) + 56px);
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
z-index: 400;
|
|
display: grid;
|
|
place-items: center;
|
|
overflow: hidden;
|
|
background: linear-gradient(135deg, #070a10 0%, #0c111a 48%, #090e16 100%);
|
|
animation: overlay-in 180ms ease;
|
|
}
|
|
|
|
.repo-loading-grid {
|
|
position: absolute;
|
|
inset: 0;
|
|
opacity: 0.28;
|
|
background-image:
|
|
linear-gradient(rgba(111, 140, 255, 0.09) 1px, transparent 1px),
|
|
linear-gradient(90deg, rgba(77, 182, 214, 0.07) 1px, transparent 1px);
|
|
background-size: 42px 42px;
|
|
mask-image: radial-gradient(circle at center, black 0%, transparent 68%);
|
|
animation: grid-drift 10s linear infinite;
|
|
}
|
|
|
|
.repo-loading-card {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 18px;
|
|
width: min(420px, calc(100vw - 42px));
|
|
padding: 30px 34px 28px;
|
|
border: 1px solid rgba(90, 111, 154, 0.28);
|
|
border-radius: 16px;
|
|
background:
|
|
linear-gradient(180deg, rgba(23, 29, 43, 0.92), rgba(12, 17, 27, 0.94)),
|
|
var(--color-surface-raised);
|
|
box-shadow:
|
|
0 26px 78px rgba(0, 0, 0, 0.54),
|
|
inset 0 1px 0 rgba(255, 255, 255, 0.05);
|
|
}
|
|
|
|
.repo-loading-mark {
|
|
position: relative;
|
|
width: 168px;
|
|
height: 168px;
|
|
display: grid;
|
|
place-items: center;
|
|
isolation: isolate;
|
|
}
|
|
|
|
.repo-loading-halo {
|
|
position: absolute;
|
|
inset: 10px;
|
|
border: 1px solid rgba(111, 140, 255, 0.22);
|
|
border-radius: 34px;
|
|
transform: rotate(45deg);
|
|
}
|
|
.repo-loading-halo.halo-one {
|
|
animation: halo-breathe 2.4s ease-in-out infinite;
|
|
}
|
|
.repo-loading-halo.halo-two {
|
|
inset: 24px;
|
|
border-color: rgba(77, 182, 214, 0.24);
|
|
animation: halo-breathe 2.4s ease-in-out infinite reverse;
|
|
}
|
|
|
|
.repo-loading-traces {
|
|
position: absolute;
|
|
inset: -18px;
|
|
width: 204px;
|
|
height: 204px;
|
|
overflow: visible;
|
|
z-index: 0;
|
|
}
|
|
.repo-loading-traces .trace {
|
|
fill: none;
|
|
stroke-width: 3;
|
|
stroke-linecap: round;
|
|
stroke-dasharray: 165;
|
|
stroke-dashoffset: 165;
|
|
filter: drop-shadow(0 0 8px rgba(77, 182, 214, 0.32));
|
|
animation: trace-draw 2.6s ease-in-out infinite;
|
|
}
|
|
.repo-loading-traces .trace-main {
|
|
stroke: #6f8cff;
|
|
}
|
|
.repo-loading-traces .trace-branch {
|
|
stroke: #4db6d6;
|
|
animation-delay: 0.28s;
|
|
}
|
|
.repo-loading-traces .trace-cut {
|
|
stroke: rgba(177, 186, 208, 0.42);
|
|
stroke-dasharray: 128;
|
|
stroke-dashoffset: 128;
|
|
animation-delay: 0.55s;
|
|
}
|
|
|
|
.repo-loading-icon {
|
|
position: relative;
|
|
z-index: 1;
|
|
width: 132px;
|
|
height: 132px;
|
|
object-fit: contain;
|
|
filter:
|
|
drop-shadow(0 18px 24px rgba(0, 0, 0, 0.55))
|
|
drop-shadow(0 0 18px rgba(77, 182, 214, 0.2));
|
|
animation: icon-float 2.4s ease-in-out infinite;
|
|
}
|
|
|
|
.repo-loading-text {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 4px;
|
|
text-align: center;
|
|
}
|
|
|
|
.repo-loading-label {
|
|
color: var(--color-ink);
|
|
font-size: 15px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.repo-loading-name {
|
|
max-width: 260px;
|
|
overflow: hidden;
|
|
color: var(--color-ink-faint);
|
|
font-family: var(--font-mono);
|
|
font-size: 12.5px;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.repo-loading-bar {
|
|
position: relative;
|
|
width: min(230px, 100%);
|
|
height: 4px;
|
|
overflow: hidden;
|
|
border-radius: 999px;
|
|
background: rgba(111, 140, 255, 0.14);
|
|
}
|
|
.repo-loading-bar span {
|
|
position: absolute;
|
|
inset: 0;
|
|
width: 46%;
|
|
border-radius: inherit;
|
|
background: linear-gradient(90deg, transparent, #6f8cff 40%, #4db6d6 74%, transparent);
|
|
box-shadow: 0 0 16px rgba(77, 182, 214, 0.26);
|
|
animation: bar-slide 1.35s ease-in-out infinite;
|
|
}
|
|
|
|
:global(:root[data-theme="light"]) .repo-loading {
|
|
background:
|
|
radial-gradient(circle at 50% 42%, rgba(49, 95, 214, 0.12), transparent 34%),
|
|
linear-gradient(135deg, #f7f9fd 0%, #eef3f9 48%, #f8fafc 100%);
|
|
}
|
|
|
|
:global(:root[data-theme="light"]) .repo-loading-grid {
|
|
opacity: 0.38;
|
|
background-image:
|
|
linear-gradient(rgba(49, 95, 214, 0.1) 1px, transparent 1px),
|
|
linear-gradient(90deg, rgba(15, 143, 181, 0.08) 1px, transparent 1px);
|
|
}
|
|
|
|
:global(:root[data-theme="light"]) .repo-loading-card {
|
|
border-color: rgba(61, 89, 142, 0.2);
|
|
background:
|
|
linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,247,252,0.94)),
|
|
var(--color-surface-raised);
|
|
box-shadow:
|
|
0 26px 72px rgba(28,44,74,0.18),
|
|
inset 0 1px 0 rgba(255,255,255,0.9);
|
|
}
|
|
|
|
:global(:root[data-theme="light"]) .repo-loading-traces .trace {
|
|
filter: drop-shadow(0 0 8px rgba(49,95,214,0.22));
|
|
}
|
|
|
|
:global(:root[data-theme="light"]) .repo-loading-traces .trace-cut {
|
|
stroke: rgba(49,95,214,0.34);
|
|
}
|
|
|
|
:global(:root[data-theme="light"]) .repo-loading-icon {
|
|
filter:
|
|
drop-shadow(0 18px 24px rgba(28,44,74,0.2))
|
|
drop-shadow(0 0 18px rgba(49,95,214,0.18));
|
|
}
|
|
|
|
:global(:root[data-theme="light"]) .repo-loading-bar {
|
|
background: rgba(49,95,214,0.12);
|
|
}
|
|
|
|
@keyframes overlay-in { from { opacity: 0; } to { opacity: 1; } }
|
|
@keyframes grid-drift { to { transform: translate3d(42px, 42px, 0); } }
|
|
@keyframes icon-float {
|
|
0%, 100% { transform: translateY(0) scale(1); }
|
|
50% { transform: translateY(-5px) scale(1.015); }
|
|
}
|
|
@keyframes halo-breathe {
|
|
0%, 100% { opacity: 0.35; transform: rotate(45deg) scale(0.95); }
|
|
50% { opacity: 0.8; transform: rotate(45deg) scale(1.04); }
|
|
}
|
|
@keyframes bar-slide {
|
|
0% { transform: translateX(-120%); }
|
|
100% { transform: translateX(320%); }
|
|
}
|
|
@keyframes trace-draw {
|
|
0% { stroke-dashoffset: 165; opacity: 0; }
|
|
36% { opacity: 1; }
|
|
64%, 100% { stroke-dashoffset: 0; opacity: 0.72; }
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
.repo-loading-grid,
|
|
.repo-loading-halo,
|
|
.repo-loading-traces .trace,
|
|
.repo-loading-icon,
|
|
.repo-loading-bar span { animation: none; }
|
|
.repo-loading-traces .trace { stroke-dashoffset: 0; opacity: 0.72; }
|
|
}
|
|
</style>
|