mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-04 03:42:38 +03:00
Added new “error” state image, a few minor CSS fixes
This commit is contained in:
parent
2c102dd957
commit
ad2ce2f83f
@ -65,7 +65,7 @@
|
||||
// if (baseBranch) branchController.setTarget(baseBranch.branchName);
|
||||
}}
|
||||
>
|
||||
Switch to another project...
|
||||
Switch to another project
|
||||
</Button>
|
||||
{/if}
|
||||
</div>
|
||||
|
@ -15,7 +15,13 @@
|
||||
$: user$ = userService.user$;
|
||||
</script>
|
||||
|
||||
<DecorativeSplitView user={$user$}>
|
||||
<DecorativeSplitView
|
||||
user={$user$}
|
||||
imgSet={{
|
||||
light: '/images/img_repo-load-error-light.webp',
|
||||
dark: '/images/img_repo-load-error-dark.webp'
|
||||
}}
|
||||
>
|
||||
<div class="problem" data-tauri-drag-region>
|
||||
<p class="problem__project text-bold"><Icon name="repo-book" /> {project?.title}</p>
|
||||
<p class="problem__title text-base-body-18 text-bold" data-tauri-drag-region>
|
||||
|
@ -36,7 +36,7 @@
|
||||
|
||||
<div class="select-wrapper" class:wide>
|
||||
{#if label}
|
||||
<label for={id} class="select__label text-base-body-13 text-semibold">{label}</label>
|
||||
<label class="select__label text-base-body-13 text-semibold">{label}</label>
|
||||
{/if}
|
||||
<TextBox
|
||||
{id}
|
||||
@ -95,6 +95,7 @@
|
||||
}
|
||||
|
||||
.select__label {
|
||||
text-align: left;
|
||||
color: var(--clr-theme-scale-ntrl-50);
|
||||
}
|
||||
|
||||
@ -107,7 +108,7 @@
|
||||
margin-top: var(--space-4);
|
||||
border-radius: var(--radius-m);
|
||||
border: 1px solid var(--clr-theme-container-outline-light);
|
||||
background: var(--container-light, #fff);
|
||||
background: var(--clr-theme-container-light);
|
||||
box-shadow: var(--fx-shadow-s);
|
||||
}
|
||||
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 35 KiB |
Binary file not shown.
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 31 KiB |
BIN
gitbutler-ui/static/images/img_repo-load-error-dark.webp
Normal file
BIN
gitbutler-ui/static/images/img_repo-load-error-dark.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 77 KiB |
BIN
gitbutler-ui/static/images/img_repo-load-error-light.webp
Normal file
BIN
gitbutler-ui/static/images/img_repo-load-error-light.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 65 KiB |
Loading…
Reference in New Issue
Block a user