Skip to content

Commit cfe2c85

Browse files
committed
style: use different close icon
1 parent 1f90644 commit cfe2c85

14 files changed

Lines changed: 26 additions & 34 deletions

app/components/Code/MobileTreeDrawer.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ watch(isOpen, open => (isLocked.value = open))
3232
class="md:hidden fixed bottom-4 inset-ie-4 z-45"
3333
:aria-label="$t('code.toggle_tree')"
3434
@click="isOpen = !isOpen"
35-
:classicon="isOpen ? 'i-lucide:circle-x' : 'i-lucide:folder'"
35+
:classicon="isOpen ? 'i-lucide:x' : 'i-lucide:folder'"
3636
/>
3737

3838
<!-- Backdrop -->
@@ -68,7 +68,7 @@ watch(isOpen, open => (isLocked.value = open))
6868
<ButtonBase
6969
:aria-label="$t('code.close_tree')"
7070
@click="isOpen = false"
71-
classicon="i-lucide:circle-x"
71+
classicon="i-lucide:x"
7272
/>
7373
</div>
7474
<CodeFileTree

app/components/Compare/PackageSelector.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ function handleFocus() {
214214
})
215215
"
216216
@click="removePackage(pkg)"
217-
classicon="i-lucide:circle-x"
217+
classicon="i-lucide:x"
218218
/>
219219
</TagStatic>
220220
</div>

app/components/Filter/Chips.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const emit = defineEmits<{
2525
:aria-label="$t('filters.remove_filter', { label: chip.label })"
2626
@click="emit('remove', chip)"
2727
>
28-
<span class="i-lucide:circle-x w-3 h-3" aria-hidden="true" />
28+
<span class="i-lucide:x w-3 h-3" aria-hidden="true" />
2929
</button>
3030
</TagStatic>
3131
</TransitionGroup>

app/components/Header/MobileMenu.client.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ onUnmounted(deactivate)
9999
:aria-label="$t('common.close')"
100100
@click="closeMenu"
101101
>
102-
<span class="i-lucide:circle-x w-5 h-5" aria-hidden="true" />
102+
<span class="i-lucide:x w-5 h-5" aria-hidden="true" />
103103
</button>
104104
</div>
105105

app/components/Modal.client.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ defineExpose({
5757
type="button"
5858
:aria-label="$t('common.close')"
5959
@click="handleModalClose"
60-
classicon="i-lucide:circle-x"
60+
classicon="i-lucide:x"
6161
/>
6262
</div>
6363
<!-- Modal body content -->

app/components/Org/MembersPanel.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ watch(lastExecutionTime, () => {
486486
:aria-label="$t('org.members.remove_from_org', { name: member.name })"
487487
@click="handleRemoveMember(member.name)"
488488
>
489-
<span class="i-lucide:circle-x w-4 h-4" aria-hidden="true" />
489+
<span class="i-lucide:x w-4 h-4" aria-hidden="true" />
490490
</button>
491491
</div>
492492
</div>
@@ -572,7 +572,7 @@ watch(lastExecutionTime, () => {
572572
:aria-label="$t('org.members.cancel_add')"
573573
@click="showAddMember = false"
574574
>
575-
<span class="i-lucide:circle-x w-4 h-4" aria-hidden="true" />
575+
<span class="i-lucide:x w-4 h-4" aria-hidden="true" />
576576
</button>
577577
</div>
578578
</form>

app/components/Org/OperationsQueue.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ function getStatusIcon(status: string): string {
166166
case 'completed':
167167
return 'i-lucide:check-filled'
168168
case 'failed':
169-
return 'i-lucide:circle-x-filled'
169+
return 'i-lucide:x-filled'
170170
default:
171171
return 'i-lucide:circle-question-mark'
172172
}
@@ -292,7 +292,7 @@ watch(isExecuting, executing => {
292292
:aria-label="$t('operations.queue.remove_operation')"
293293
@click="removeOperation(op.id)"
294294
>
295-
<span class="i-lucide:circle-x w-4 h-4" aria-hidden="true" />
295+
<span class="i-lucide:x w-4 h-4" aria-hidden="true" />
296296
</button>
297297
</div>
298298
</li>
@@ -411,7 +411,7 @@ watch(isExecuting, executing => {
411411
:class="
412412
op.status === 'completed'
413413
? 'i-lucide:check-filled text-green-500'
414-
: 'i-lucide:circle-x-filled text-red-500'
414+
: 'i-lucide:x-filled text-red-500'
415415
"
416416
class="w-3.5 h-3.5 shrink-0 mt-0.5"
417417
aria-hidden="true"
@@ -431,7 +431,7 @@ watch(isExecuting, executing => {
431431
:aria-label="$t('operations.queue.remove_from_log')"
432432
@click="removeOperation(op.id)"
433433
>
434-
<span class="i-lucide:circle-x w-3 h-3" aria-hidden="true" />
434+
<span class="i-lucide:x w-3 h-3" aria-hidden="true" />
435435
</button>
436436
</li>
437437
</ul>

app/components/Org/TeamsPanel.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ watch(lastExecutionTime, () => {
430430
:aria-label="$t('org.teams.remove_user', { user })"
431431
@click="handleRemoveUser(teamName, user)"
432432
>
433-
<span class="i-lucide:circle-x w-3.5 h-3.5" aria-hidden="true" />
433+
<span class="i-lucide:x w-3.5 h-3.5" aria-hidden="true" />
434434
</button>
435435
</li>
436436
</ul>
@@ -467,7 +467,7 @@ watch(lastExecutionTime, () => {
467467
:aria-label="$t('org.teams.cancel_add_user')"
468468
@click="showAddUserFor = null"
469469
>
470-
<span class="i-lucide:circle-x w-4 h-4" aria-hidden="true" />
470+
<span class="i-lucide:x w-4 h-4" aria-hidden="true" />
471471
</button>
472472
</form>
473473
</div>
@@ -525,7 +525,7 @@ watch(lastExecutionTime, () => {
525525
:aria-label="$t('org.teams.cancel_create')"
526526
@click="showCreateTeam = false"
527527
>
528-
<span class="i-lucide:circle-x w-4 h-4" aria-hidden="true" />
528+
<span class="i-lucide:x w-4 h-4" aria-hidden="true" />
529529
</button>
530530
</form>
531531
</div>

app/components/Package/AccessControls.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ watch(
229229
:aria-label="$t('package.access.revoke_access', { name: collab.displayName })"
230230
@click="handleRevokeAccess(collab.name)"
231231
>
232-
<span class="i-lucide:circle-x w-3.5 h-3.5" aria-hidden="true" />
232+
<span class="i-lucide:x w-3.5 h-3.5" aria-hidden="true" />
233233
</button>
234234
<span v-else class="text-xs text-fg-subtle"> {{ $t('package.access.owner') }} </span>
235235
</li>
@@ -289,7 +289,7 @@ watch(
289289
:aria-label="$t('package.access.cancel_grant')"
290290
@click="showGrantAccess = false"
291291
>
292-
<span class="i-lucide:circle-x w-4 h-4" aria-hidden="true" />
292+
<span class="i-lucide:x w-4 h-4" aria-hidden="true" />
293293
</button>
294294
</div>
295295
</form>

app/components/Package/ClaimPackageModal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ const previewPackageJson = computed(() => {
234234
v-else
235235
class="flex items-center gap-3 p-4 bg-red-500/10 border border-red-500/20 rounded-lg"
236236
>
237-
<span class="i-lucide:circle-x-filled text-red-500 w-5 h-5" aria-hidden="true" />
237+
<span class="i-lucide:x-filled text-red-500 w-5 h-5" aria-hidden="true" />
238238
<p class="font-mono text-sm text-fg">{{ $t('claim.modal.taken') }}</p>
239239
</div>
240240
</div>

0 commit comments

Comments
 (0)