mirror of
https://github.com/decaf-dev/obsidian-vault-explorer.git
synced 2026-07-22 10:10:31 +00:00
Update star icon background (#215)
* fix: add background to star icon * chore: bump version
This commit is contained in:
parent
84f5dec8a8
commit
e879ac6f05
5 changed files with 18 additions and 5 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "vault-explorer",
|
||||
"name": "Vault Explorer",
|
||||
"version": "1.26.2",
|
||||
"version": "1.26.3",
|
||||
"minAppVersion": "1.4.13",
|
||||
"description": "Explore your vault in visual format",
|
||||
"author": "DecafDev",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "obsidian-vault-explorer",
|
||||
"version": "1.26.2",
|
||||
"version": "1.26.3",
|
||||
"description": "Explore your vault in visual format",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@
|
|||
import GridCardTitle from "./grid-card-title.svelte";
|
||||
import { openContextMenu } from "../services/context-menu";
|
||||
import { openInCurrentTab } from "../services/open-file";
|
||||
import Flex from "src/svelte/shared/components/flex.svelte";
|
||||
|
||||
export let displayName: string;
|
||||
export let path: string;
|
||||
|
|
@ -203,7 +204,14 @@
|
|||
{/if}
|
||||
{#if isFavorite === true}
|
||||
<div class="vault-explorer-grid-card__favorite">
|
||||
<Icon iconId="star" ariaLabel="Favorite" />
|
||||
<Flex
|
||||
justify="center"
|
||||
align="center"
|
||||
width="100%"
|
||||
height="100%"
|
||||
>
|
||||
<Icon iconId="star" ariaLabel="Favorite" />
|
||||
</Flex>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
|
@ -281,6 +289,10 @@
|
|||
position: absolute;
|
||||
top: 8px;
|
||||
right: 8px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
background-color: var(--background-primary);
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.vault-explorer-grid-card__image {
|
||||
|
|
|
|||
|
|
@ -77,6 +77,6 @@
|
|||
"feed"
|
||||
],
|
||||
"configDir": ".vaultexplorer",
|
||||
"pluginVersion": "1.26.0",
|
||||
"pluginVersion": "1.26.3",
|
||||
"logLevel": "trace"
|
||||
}
|
||||
|
|
@ -97,5 +97,6 @@
|
|||
"1.25.2": "1.4.13",
|
||||
"1.26.0": "1.4.13",
|
||||
"1.26.1": "1.4.13",
|
||||
"1.26.2": "1.4.13"
|
||||
"1.26.2": "1.4.13",
|
||||
"1.26.3": "1.4.13"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue