Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(browser): browser actions icons colors #5816

Merged
merged 1 commit into from
Jun 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions packages/ui/client/components/IconAction.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@ defineProps({
</script>

<template>
<div
bg="gray-200"
rounded-1
<button
type="button"
dark="op75"
bg="gray-200 dark:#111"
hover="op100"
rounded-1
p-0.5
>
<div :class="icon" op50></div>
</div>
</template>
<span block :class="icon" op65 class="dark:op85 hover:op100"></span>
</button>
</template>
6 changes: 3 additions & 3 deletions packages/ui/client/components/TaskItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const duration = computed(() => {
icon="i-carbon-result-old"
@click.prevent.stop="emit('fixSnapshot')"
/>
<IconAction
<IconAction
v-tooltip.bottom="'Open test details'"
data-testid="btn-open-details"
title="Open test details"
Expand All @@ -74,8 +74,8 @@ const duration = computed(() => {
v-tooltip.bottom="'Run current test'"
data-testid="btn-run-test"
title="Run current test"
icon="i-carbon-play-filled-alt"
text="green-500"
icon="i-carbon:play-filled-alt"
text-green5
@click.prevent.stop="emit('run')"
/>
</div>
Expand Down
Loading