Theme updated for Version 1.17.*

This commit is contained in:
2022-09-11 02:23:32 +02:00
parent 1e8c65ec7f
commit 50a21315f0
3 changed files with 29 additions and 18 deletions

View File

@@ -1,15 +1,15 @@
# Setting up system for developing for gitea frondend # Setting up system for developing for gitea frondend
* Install go(1.17.7 =>), node.js(16.14 => or latest lts), npm, gcc git, make * Install go(1.19 =>), node.js(16.16 => or latest lts), npm, gcc git, make
* Clone gitea repo `git clone https://github.com/go-gitea/gitea` * Clone gitea repo `git clone https://github.com/go-gitea/gitea`
* Cd into repo folder `cd gitea` * Cd into repo folder `cd gitea`
* Checkout last stable (1.16.2 at this point) `git checkout v1.16.2` * Checkout last stable (1.16.2 at this point) `git checkout v1.17.2`
* Build backend run: `TAGS="sqlite sqlite_unlock_notify" make backend` * Build backend run: `TAGS="sqlite sqlite_unlock_notify" make backend`
# Developing for gitea frondend # Developing for gitea frondend
* Open a seperate terminal (since this proces needs to keep running) * Open a seperate terminal (since this proces needs to keep running)
* Cd into repo folder `cd gitea` * Cd into repo folder `cd gitea`
* Building continuously by running `make watch-frontend` * Building continuously by running `make watch-frontend`
**Note: if you create a new file, quit the make process and restart it** **Note: if you create a new file, quit the make process and restart it**
* Open another terminal (since the backend proces also needs to keep running) * Open another terminal (since the backend proces also needs to keep running)
* Cd into repo folder `cd gitea` * Cd into repo folder `cd gitea`

File diff suppressed because one or more lines are too long

View File

@@ -21,7 +21,7 @@
--color-primary-alpha-10: #87ab6319; --color-primary-alpha-10: #87ab6319;
--color-primary-alpha-20: #87ab6333; --color-primary-alpha-20: #87ab6333;
--color-primary-alpha-30: #87ab634b; --color-primary-alpha-30: #87ab634b;
--color-primary-alpha-40: #87ab6366; --color-primary-alpha-40: #1E70BF66;
--color-primary-alpha-50: #87ab6380; --color-primary-alpha-50: #87ab6380;
--color-primary-alpha-60: #87ab6399; --color-primary-alpha-60: #87ab6399;
--color-primary-alpha-70: #87ab63b3; --color-primary-alpha-70: #87ab63b3;
@@ -137,14 +137,6 @@
background-color: #383c4a; background-color: #383c4a;
} }
.ui.green.progress .bar {
background-color: #668844;
}
.ui.progress.success .bar {
background-color: #7b9e57 !important;
}
.following.bar.light { .following.bar.light {
background: #2e323e; background: #2e323e;
border-color: var(--color-secondary-alpha-40); border-color: var(--color-secondary-alpha-40);
@@ -461,8 +453,8 @@ img[src$="/img/matrix.svg"] {
border-bottom: none !important; border-bottom: none !important;
} }
a:hover { a:hover, .issue.list > .item .title:hover {
color: var(--color-primary-light-1) !important; color: var(--color-blue-light) !important;
} }
a.item:hover { a.item:hover {
@@ -485,7 +477,26 @@ thead {
background-color: var(--color-card); background-color: var(--color-card);
} }
#repo-files-table tbody .svg.octicon-file-directory, .repository.file.list #repo-files-table tbody .svg.octicon-file-directory-fill, .repository.file.list #repo-files-table tbody .svg.octicon-file-submodule {
.repository.file.list #repo-files-table tbody .svg.octicon-file-submodule { color: var(--color-primary-light-1);
color: #1e70bf !important; }
span.tag.text.blue {
color: var(--color-primary) !important;
}
a.index {
color: var(--color-text) !important;
}
.issue.list > .item .title {
color: var(--color-primary);
}
.issue.list > .item .title:hover {
text-decoration: underline !important;
}
a.muted:hover {
color: white !important;
} }