mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-18 06:22:28 +03:00
Refactor CSS and code (#3703)
- Modal trigger code refactor - Unused CSS removed
This commit is contained in:
parent
83dec79ef0
commit
358292dc1c
@ -148,7 +148,7 @@
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<style>
|
||||
<style lang="postcss">
|
||||
.update-banner {
|
||||
cursor: default;
|
||||
user-select: none;
|
||||
|
@ -205,12 +205,6 @@
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.spacer {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--size-16);
|
||||
}
|
||||
|
||||
.branch {
|
||||
height: 100%;
|
||||
}
|
||||
@ -264,28 +258,6 @@
|
||||
padding-left: var(--size-4);
|
||||
}
|
||||
|
||||
.branch-switcher {
|
||||
margin-top: 8px;
|
||||
padding: 8px;
|
||||
background-color: var(--clr-bg-2);
|
||||
border-width: 1px;
|
||||
border-color: var(--clr-border-2);
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.branch-display {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.branch-name {
|
||||
font-weight: 600;
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
.middle-message {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
@ -198,10 +198,6 @@
|
||||
margin-bottom: var(--size-8);
|
||||
}
|
||||
|
||||
.disabled-step {
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
.step-section {
|
||||
display: flex;
|
||||
gap: var(--size-16);
|
||||
|
@ -143,24 +143,13 @@
|
||||
modal.close();
|
||||
}
|
||||
|
||||
// if triggered by window menu
|
||||
async function setEnabled(enabled: boolean) {
|
||||
return await invoke('menu_item_set_enabled', {
|
||||
menuItemId: 'project/settings',
|
||||
enabled
|
||||
});
|
||||
}
|
||||
|
||||
onMount(() => {
|
||||
setEnabled(true);
|
||||
|
||||
const unsubscribe = listen<string>('menu://help/share-debug-info/clicked', () => {
|
||||
show();
|
||||
});
|
||||
|
||||
return () => {
|
||||
unsubscribe();
|
||||
setEnabled(false);
|
||||
};
|
||||
});
|
||||
</script>
|
||||
|
@ -220,7 +220,6 @@
|
||||
}
|
||||
|
||||
/* BANNERS */
|
||||
|
||||
.social-banners {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
Loading…
Reference in New Issue
Block a user