From a033ccd31350a0fd1158b407b3467cafc0210b08 Mon Sep 17 00:00:00 2001 From: Lucas Colombo Date: Sun, 2 Jul 2023 19:46:43 -0300 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=9A=91=20topics=20list,=20add=20ga?= =?UTF-8?q?p=20with=20manage=20topics=20btn?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dist/public/css/theme-dark.css | 4 ++++ dist/public/css/theme-light.css | 4 ++++ src/themes/scss/theme/modules/custom/repo/_file-list.scss | 4 ++++ tools/serve.js | 2 +- 4 files changed, 13 insertions(+), 1 deletion(-) diff --git a/dist/public/css/theme-dark.css b/dist/public/css/theme-dark.css index c0bd94a..9daa1a1 100644 --- a/dist/public/css/theme-dark.css +++ b/dist/public/css/theme-dark.css @@ -2844,6 +2844,10 @@ footer .ui.dropdown .menu { background-color: var(--c-elevation_4); } +#repo-topics { + row-gap: var(--v-measure_\.5x); +} + .ui.table > tr > td, .ui.table > tbody > tr > td { border-top-color: rgba(var(--c-theme_blue_base-rgb), 0.04); } diff --git a/dist/public/css/theme-light.css b/dist/public/css/theme-light.css index c54bb31..1f5e1d0 100644 --- a/dist/public/css/theme-light.css +++ b/dist/public/css/theme-light.css @@ -2844,6 +2844,10 @@ footer .ui.dropdown .menu { background-color: var(--c-elevation_4); } +#repo-topics { + row-gap: var(--v-measure_\.5x); +} + .ui.table > tr > td, .ui.table > tbody > tr > td { border-top-color: rgba(var(--c-theme_blue_base-rgb), 0.04); } diff --git a/src/themes/scss/theme/modules/custom/repo/_file-list.scss b/src/themes/scss/theme/modules/custom/repo/_file-list.scss index dd738fd..5f28aa8 100644 --- a/src/themes/scss/theme/modules/custom/repo/_file-list.scss +++ b/src/themes/scss/theme/modules/custom/repo/_file-list.scss @@ -3,6 +3,10 @@ @mixin apply-styles { + #repo-topics { + row-gap: var.get('measure/.5x'); + } + .ui.table>tr>td, .ui.table>tbody>tr>td { border-top-color: rgba(#{color.get('theme/blue/base', 'rgb')}, 0.04); } diff --git a/tools/serve.js b/tools/serve.js index a327f50..822d3ba 100644 --- a/tools/serve.js +++ b/tools/serve.js @@ -13,7 +13,7 @@ const srcPath = resolve(cwd(), src); const distPath = resolve(cwd(), dist); const serverPath = resolve( cwd(), - getArg('--sever', 'D:/users/lucas/Desktop/dev/server/gitea') + getArg('--sever', 'd:/gitea') ); const debouncer = new TaskDebouncer(300); const logger = new Logger('serve', 'info', 'brightMagenta');