mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-02-02 20:52:22 +00:00
lighten forced codebox bg color
This commit is contained in:
parent
1cb006844d
commit
6fcfd0d5d6
8 changed files with 8 additions and 8 deletions
|
@ -3,7 +3,7 @@
|
|||
<ListItem
|
||||
v-for="agent in props.agents"
|
||||
:key="agent.id"
|
||||
class="items-center !bg-wp-background-300 !dark:bg-wp-background-200"
|
||||
class="items-center !bg-wp-background-200 !dark:bg-wp-background-200"
|
||||
>
|
||||
<span>{{ agent.name || `Agent ${agent.id}` }}</span>
|
||||
<span class="ml-auto">
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<ListItem
|
||||
v-for="registry in registries"
|
||||
:key="registry.id"
|
||||
class="items-center !bg-wp-background-300 !dark:bg-wp-background-200"
|
||||
class="items-center !bg-wp-background-200 !dark:bg-wp-background-200"
|
||||
>
|
||||
<span>{{ registry.address }}</span>
|
||||
<IconButton
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<ListItem
|
||||
v-for="secret in secrets"
|
||||
:key="secret.id"
|
||||
class="items-center !bg-wp-background-300 !dark:bg-wp-background-200"
|
||||
class="items-center !bg-wp-background-200 !dark:bg-wp-background-200"
|
||||
>
|
||||
<span>{{ secret.name }}</span>
|
||||
<Badge
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<ListItem
|
||||
v-for="org in orgs"
|
||||
:key="org.id"
|
||||
class="items-center gap-2 !bg-wp-background-300 !dark:bg-wp-background-200"
|
||||
class="items-center gap-2 !bg-wp-background-200 !dark:bg-wp-background-200"
|
||||
>
|
||||
<span>{{ org.name }}</span>
|
||||
<IconButton
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
<ListItem
|
||||
v-for="task in tasks"
|
||||
:key="task.id"
|
||||
class="items-center !bg-wp-background-300 !dark:bg-wp-background-200 mb-2"
|
||||
class="items-center !bg-wp-background-200 !dark:bg-wp-background-200 mb-2"
|
||||
>
|
||||
<div
|
||||
class="flex items-center"
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<ListItem
|
||||
v-for="repo in repos"
|
||||
:key="repo.id"
|
||||
class="items-center gap-2 !bg-wp-background-300 !dark:bg-wp-background-200"
|
||||
class="items-center gap-2 !bg-wp-background-200 !dark:bg-wp-background-200"
|
||||
>
|
||||
<span>{{ repo.full_name }}</span>
|
||||
<div class="flex items-center ml-auto">
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
<ListItem
|
||||
v-for="user in users"
|
||||
:key="user.id"
|
||||
class="items-center gap-2 !bg-wp-background-300 !dark:bg-wp-background-200"
|
||||
class="items-center gap-2 !bg-wp-background-200 !dark:bg-wp-background-200"
|
||||
>
|
||||
<img v-if="user.avatar_url" class="rounded-md h-6" :src="user.avatar_url" />
|
||||
<span>{{ user.login }}</span>
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
<ListItem
|
||||
v-for="cron in crons"
|
||||
:key="cron.id"
|
||||
class="items-center !bg-wp-background-300 !dark:bg-wp-background-200"
|
||||
class="items-center !bg-wp-background-200 !dark:bg-wp-background-200"
|
||||
>
|
||||
<span class="grid grid-cols-3 w-full">
|
||||
<span>{{ cron.name }}</span>
|
||||
|
|
Loading…
Reference in a new issue