mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-30 01:17:37 +03:00
body background update, commit card update
This commit is contained in:
parent
6abcf57057
commit
4e5567391e
@ -47,6 +47,7 @@
|
||||
|
||||
<div
|
||||
class="commit__card"
|
||||
class:is-head-commit={isHeadCommit}
|
||||
on:click={onClick}
|
||||
on:keyup={onClick}
|
||||
use:draggable={commit instanceof Commit
|
||||
@ -56,19 +57,21 @@
|
||||
tabindex="0"
|
||||
>
|
||||
<div class="commit__header">
|
||||
<span class="commit__description text-base-12 text-semibold truncate">
|
||||
<span class="commit__description text-base-12 truncate">
|
||||
{commit.description}
|
||||
</span>
|
||||
<Tag
|
||||
color="ghost"
|
||||
icon="undo-small"
|
||||
border
|
||||
clickable
|
||||
on:click={(e) => {
|
||||
e.stopPropagation();
|
||||
console.log('sdfsdf');
|
||||
}}>Undo</Tag
|
||||
>
|
||||
{#if isHeadCommit}
|
||||
<Tag
|
||||
color="ghost"
|
||||
icon="undo-small"
|
||||
border
|
||||
clickable
|
||||
on:click={(e) => {
|
||||
e.stopPropagation();
|
||||
console.log('sdfsdf');
|
||||
}}>Undo</Tag
|
||||
>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class="commit__details">
|
||||
@ -84,7 +87,7 @@
|
||||
/>
|
||||
<span class="commit__author-name text-base-12 truncate">{commit.author.name}</span>
|
||||
</div>
|
||||
<span class="commit__time text-base-12">
|
||||
<span class="commit__time text-base-11">
|
||||
<TimeAgo date={commit.createdAt} />
|
||||
</span>
|
||||
</div>
|
||||
@ -198,7 +201,7 @@
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
cursor: default;
|
||||
gap: var(--space-8);
|
||||
gap: var(--space-10);
|
||||
padding: var(--space-12);
|
||||
border-radius: var(--space-6);
|
||||
background-color: var(--clr-theme-container-light);
|
||||
@ -251,4 +254,8 @@
|
||||
.commit__author-name {
|
||||
color: var(--clr-theme-scale-ntrl-50);
|
||||
}
|
||||
|
||||
.is-head-commit {
|
||||
gap: var(--space-6);
|
||||
}
|
||||
</style>
|
||||
|
@ -18,7 +18,7 @@ body {
|
||||
overflow-y: hidden;
|
||||
padding: 0;
|
||||
color: var(--clr-theme-scale-ntrl-40);
|
||||
background-color: var(--bg-body);
|
||||
background-color: var(--clr-theme-container-pale);
|
||||
|
||||
/* optimise font rendering */
|
||||
-webkit-font-smoothing: antialiased;
|
||||
|
Loading…
Reference in New Issue
Block a user