diff --git a/Gitea/readme.md b/Gitea/readme.md index ed500ed..9d40fbf 100644 --- a/Gitea/readme.md +++ b/Gitea/readme.md @@ -4,17 +4,30 @@ This style changes the layout of Gitea, and uses Gitea's color variables. It can be used with any theme that changes only colors. -Using -[`Gitea-modern.css`](Gitea-modern.css) -requires a preprocessor that supports CSS nesting, like 'Stylus' (recommended) or 'Less'. +### Disclaimer +**I don't know if everything is properly polished, and the style is still being worked on. If you find an issue with the style, please create an issue. Or if you can fix an issue yourself, create a pull request!** -Or you can use the already compiled version, -[`Gitea-modern-compiled.css`](Gitea-modern-compiled.css) -instead. +### Usage as Gitea theme +To install the theme for all Gitea users: -When making contributions, don't use the compiled version. +1. Download the [`theme-gitea-modern.css` file][theme-file] and add it to your custom folder in `$GITEA_CUSTOM/public/css/` ([learn how to find that directory][doc-dir]). + - The path has changed in Gitea 1.15, there the file needs to be placed in `$GITEA_CUSTOM/public/assets/css` +2. Adapt your `app.ini` to make it the default theme or be user-selectable: + - To change the default theme, change the value of `DEFAULT_THEME` in the [ui section][doc-config] of `app.ini` to `gitea-modern` -I've never hosted a Gitea instance before so I have no idea how to apply it. -If you use the Stylus browser extension, you can use the [`Gitea-modern.user.css`](https://codeberg.org/Freeplay/CSS-Styles/raw/branch/main/Gitea/Gitea-modern.user.css) file instead to apply to any Gitea instance. + - To make a theme selectable by users in their profile settings, append `,gitea-modern` to the list of `THEMES` in your `app.ini`. +3. Restart Gitea +4. Enjoy :) -**I don't know if everything is properly polished, and the style is still being worked on. If you find an issue with the style, please create an issue. Or if you can fix an issue yourself, create a pull request!** \ No newline at end of file + +### Usage with Stylus +If you use the Stylus browser extension, you can use the [`theme-gitea-modern.user.css`][usertheme-file]) file to apply to any Gitea instance. + +### Contributing +To make changes, always base them on [`theme-gitea-modern.styl`](theme-gitea-modern.styl), which is written for any CSS preprocessor that supports CSS nesting, like 'Stylus' (recommended) or 'Less'. +When making contributions, don't use the compiled version for your changes. + +[theme-file]: https://codeberg.org/Freeplay/CSS-Styles/raw/branch/main/Gitea/theme-gitea-modern.css +[usertheme-file]: https://codeberg.org/Freeplay/CSS-Styles/raw/branch/main/Gitea/theme-gitea-modern.user.css +[doc-config]: https://docs.gitea.io/en-us/config-cheat-sheet/#ui-ui +[doc-dir]: https://docs.gitea.io/en-us/faq/#where-does-gitea-store-what-file diff --git a/Gitea/Gitea-modern-compiled.css b/Gitea/theme-gitea-modern.css similarity index 100% rename from Gitea/Gitea-modern-compiled.css rename to Gitea/theme-gitea-modern.css diff --git a/Gitea/Gitea-modern.css b/Gitea/theme-gitea-modern.styl similarity index 99% rename from Gitea/Gitea-modern.css rename to Gitea/theme-gitea-modern.styl index 8cff797..f9c0358 100644 --- a/Gitea/Gitea-modern.css +++ b/Gitea/theme-gitea-modern.styl @@ -28,8 +28,7 @@ a[rel*="nofollow"]:not(.ui), .link:not(.ui) { } .ui.button, .ui.basic.button, .ui.menu, .input.action.fluid, .ui.label, .ui.form input:not([type]), .ui.form input[type="date"], .ui.form input[type="datetime-local"], .ui.form input[type="email"], .ui.form input[type="file"], .ui.form input[type="number"], .ui.form input[type="password"], .ui.form input[type="search"], .ui.form input[type="tel"], .ui.form input[type="text"], .ui.form input[type="time"], .ui.form input[type="url"], -.ui.table, .tab-size-8, -{ +.ui.table, .tab-size-8 { border-radius: var(--base-border-radius); } .ui.menu > .item:first-child, diff --git a/Gitea/Gitea-modern.user.css b/Gitea/theme-gitea-modern.user.css similarity index 96% rename from Gitea/Gitea-modern.user.css rename to Gitea/theme-gitea-modern.user.css index 55e1b86..2d07cad 100644 --- a/Gitea/Gitea-modern.user.css +++ b/Gitea/theme-gitea-modern.user.css @@ -28,5 +28,5 @@ @-moz-document domain("codeberg.org"), domain("gitea.com"), domain("try.gitea.io"), domain("gitdab.com"), domain("git.fsfe.org"), domain("git.passageenseine.fr"), domain("dev.sum7.eu") { - @import url("https://codeberg.org/Freeplay/CSS-Styles/raw/branch/main/Gitea/Gitea-modern-compiled.css"); -} \ No newline at end of file + @import url("https://codeberg.org/Freeplay/CSS-Styles/raw/branch/main/Gitea/theme-gitea-modern.css"); +}