mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-03-30 16:09:40 +00:00
background
This commit is contained in:
parent
2e2491f119
commit
b40f0c7505
4 changed files with 6 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
|||
<template>
|
||||
<span
|
||||
class="bg-wp-code-inline-400 text-wp-text-code-inline-100 hover:bg-wp-code-inline-200 inline-block px-1.5 py-0.5 rounded-full min-w-5 font-bold text-center text-xs leading-4"
|
||||
class="bg-wp-code-inline-200 text-wp-text-code-inline-100 hover:bg-wp-code-inline-200 inline-block px-1.5 py-0.5 rounded-full min-w-5 font-bold text-center text-xs leading-4"
|
||||
>
|
||||
{{ value }}
|
||||
</span>
|
||||
|
|
|
@ -59,7 +59,7 @@
|
|||
<div
|
||||
v-for="workflow in pipeline.workflows"
|
||||
:key="workflow.id"
|
||||
class="border-wp-background-400 bg-wp-background-200 dark:bg-wp-background-600 shadow p-2 border rounded-md"
|
||||
class="border-wp-background-400 bg-wp-background-200 dark:bg-wp-background-400 shadow p-2 border rounded-md"
|
||||
>
|
||||
<div class="flex flex-col gap-2">
|
||||
<div v-if="workflow.environ" class="flex flex-wrap justify-end gap-x-1 gap-y-2 pt-1 pr-1 text-xs">
|
||||
|
|
|
@ -41,6 +41,7 @@
|
|||
|
||||
--wp-code-inline-100: theme('colors.gray.200');
|
||||
--wp-code-inline-200: theme('colors.gray.400');
|
||||
|
||||
--wp-code-inline-text-100: theme('colors.gray.600');
|
||||
|
||||
/* --wp-code-300: theme('colors.int-wp-secondary.300');
|
||||
|
@ -100,13 +101,13 @@
|
|||
--wp-hint-warn-200: theme('colors.int-wp-hint-warn-dark.200');
|
||||
|
||||
--wp-code-inline-100: theme('colors.int-wp-secondary.700');
|
||||
--wp-code-inline-100: theme('colors.int-wp-secondary.800');
|
||||
--wp-code-inline-200: theme('colors.int-wp-secondary.300');
|
||||
|
||||
--wp-code-inline-text-100: theme('colors.gray.300');
|
||||
|
||||
--wp-code-100: theme('colors.int-wp-secondary.700'); /* #222631 */
|
||||
--wp-code-200: theme('colors.int-wp-secondary.600'); /* #2a2e3a */
|
||||
--wp-code-300: theme('colors.int-wp-secondary.800'); /* #1B1F28 */
|
||||
--wp-code-400: theme('colors.int-wp-secondary.300'); /* #383c4a */
|
||||
|
||||
--wp-code-text-100: theme('colors.gray.200');
|
||||
--wp-code-text-alt-100: theme('colors.gray.400');
|
||||
|
|
|
@ -197,6 +197,7 @@ export default defineConfig({
|
|||
|
||||
'wp-code-inline': {
|
||||
100: 'var(--wp-code-inline-100)',
|
||||
200: 'var(--wp-code-inline-200)',
|
||||
},
|
||||
|
||||
'wp-code-inline-text': {
|
||||
|
@ -207,7 +208,6 @@ export default defineConfig({
|
|||
100: 'var(--wp-code-100)',
|
||||
200: 'var(--wp-code-200)',
|
||||
300: 'var(--wp-code-300)',
|
||||
400: 'var(--wp-code-400)',
|
||||
},
|
||||
|
||||
'wp-code-text': {
|
||||
|
|
Loading…
Reference in a new issue