From aa31e07a53f5470e1875848d37c600227731b007 Mon Sep 17 00:00:00 2001 From: Bram Prieshof Date: Thu, 15 Apr 2021 12:42:07 +0200 Subject: [PATCH] Updated version in docs --- FileChanges_LOG.md | 38 ++++++++++++++++++++++++++++++++++++++ ThemeDev.md | 2 +- 2 files changed, 39 insertions(+), 1 deletion(-) diff --git a/FileChanges_LOG.md b/FileChanges_LOG.md index 31d9b56..2d92dd0 100644 --- a/FileChanges_LOG.md +++ b/FileChanges_LOG.md @@ -1,3 +1,41 @@ +# Changes made to gitea source (as of `v1.14.0`) to make arc-blu theme + +## Theme Files (File is overhauled so had to be rw-writen) +* Changed/updated root color pallet +* updated background for: buttons to 86acd1 and buttons:hover to 1e70bf +* Updated text collor for: .ui.bottom.attached.message .pull-right, .repository.file.list #repo-files-table tbody .svg.octicon-file-directory to 1e70bf and .ui.positive.message to 86acd1 +* Added customizations (see below) to botom + +addition to web_src/less/themes/theme-arc-blue.less +``` +a:hover { + color: var(--color-primary-light-1) !important; +} + +a.item:hover { + color: var(--color-text-dark) !important; +} + +a.ui:hover { + color: var(--color-secondary-dark-11) !important; +} + +.ui.blue.button:hover, +.ui.blue.buttons .button:hover, +.ui.primary.button:hover, +.ui.primary.buttons .button:hover { + background-color: var(--color-primary-light-1) !important; +} + +thead { + background-color: var(--color-card); +} +``` + + +## Dark Theme detection +#### Same as for v1.13.0 + # Changes made to gitea source (as of `v1.13.0`) to make arc-blu theme ## Theme Files diff --git a/ThemeDev.md b/ThemeDev.md index cecdd4c..0fead75 100644 --- a/ThemeDev.md +++ b/ThemeDev.md @@ -2,7 +2,7 @@ * Install go(1.15 =>), node.js(10.13 => or latest lts), npm, git, make * Clone gitea repo `git clone https://github.com/go-gitea/gitea` * Cd into repo folder `cd gitea` -* Checkout last stable (1.13.0 at this point) `git checkout v1.13.0` +* Checkout last stable (1.14.0 at this point) `git checkout v1.14.0` * Build backend run: `TAGS="sqlite sqlite_unlock_notify" make backend`