Skip to content

Commit 1e145ab

Browse files
committed
Add hover highlight and separator for change version dropdown entries
1 parent 8f2fa4f commit 1e145ab

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

frontend/src/lib/components/mod-details/ModDetails.svelte

+4-3
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@
368368
<div class="card shadow-xl min-w-[11rem] z-10 duration-0 overflow-y-auto !mt-0" data-popup={changeVersionMenuPopupId}>
369369
<ul>
370370
<li>
371-
<button class="btn w-full h-full text-left" on:click={() => installVersion(null)}>
371+
<button class="btn variant-filled bg-surface-100-800-token text-token w-full h-full text-left" on:click={() => installVersion(null)}>
372372
<div class="w-7 h-7 p-1">
373373
{#if manifestVersion === '>=0.0.0'}
374374
<SvgIcon class="h-full w-full" icon={mdiCheck} />
@@ -381,15 +381,16 @@
381381
</li>
382382
{#each mod?.versions ?? [] as version}
383383
<li class="flex">
384-
<button class="btn w-full h-full text-left" on:click={() => installVersion(version.version)}>
384+
<button class="btn variant-filled bg-surface-100-800-token text-token w-full h-full text-left" on:click={() => installVersion(version.version)}>
385385
<div class="w-7 h-7 p-1">
386386
{#if manifestVersion === version.version}
387387
<SvgIcon class="h-full w-full" icon={mdiCheck} />
388388
{/if}
389389
</div>
390390
<span class="flex-auto">{version.version}</span>
391391
</button>
392-
<button class="btn w-full h-full text-left" on:click={() => installVersion(`>=${version.version}`)}>
392+
<div class="divider-vertical" />
393+
<button class="btn variant-filled bg-surface-100-800-token text-token rounded-none w-full h-full text-left" on:click={() => installVersion(`>=${version.version}`)}>
393394
<span class="flex-auto">
394395
<T defaultValue="or newer" keyName="mod-details.change-version-or-newer" />
395396
</span>

0 commit comments

Comments
 (0)