Compare commits

...

8 Commits

Author SHA1 Message Date
4a848a70c1 Merge remote-tracking branch 'mjo.lab/main' into 1.19.0+dev 2023-01-10 20:50:05 +01:00
3cdd23d6fa fix 2023-01-10 20:19:48 +01:00
540f30c317 update README.md 2023-01-10 20:18:32 +01:00
pat-s
f9f3462610 light: fix color of PR delete button 2023-01-10 20:18:32 +01:00
pat-s
0543439b47 light: modify branch listing in PR view 2023-01-10 20:18:32 +01:00
7ddf0d8de8 add .woodpecker.yml 2023-01-10 19:15:20 +01:00
pat-s
52e563e2c7
light: fix color of PR delete button 2022-12-14 14:17:26 +01:00
pat-s
59b09324ec
light: modify branch listing in PR view 2022-12-13 09:22:34 +01:00
4 changed files with 29 additions and 5 deletions

5
.woodpecker.yml Normal file
View File

@ -0,0 +1,5 @@
pipeline:
first-job:
image: busybox
commands:
- echo "first run"

View File

@ -13,9 +13,9 @@ I might update the theme over time to fix oversights and other issues - no guara
###### Index
* [Installation](#installation)
* [Using automatic theme switching](#using-automatic-theme-switching-based-on-system-preference)
* [Changes to default Gitea theme](#changes-to-default-gitea-theme)
* [Helm chart instructions](#helm-chart-instructions)
* [Using automatic theme switching](#using-automatic-theme-switching)
* [default Gitea theme](#default-gitea-theme)
* [Helm chart](#helm-chart)
* [Screenshots](#screenshots)
---
## Installation

View File

@ -346,7 +346,7 @@
.ui.negative.buttons .button,
.ui.negative.button {
background-color: none;
color: #db2828;
color: #fff;
}
.ui.green.button {
@ -399,6 +399,15 @@
background-color: #afb8c133;
border-radius: 6px;
}
// branch display in PRs
.issue.list .branches .branch {
background-color: #afb8c133;
border-radius: 6px;
}
.issue.list .branches .truncated-name {
color: #24292f;
padding: 2px;
}
}
@media (prefers-color-scheme: dark) {
:root {

View File

@ -335,7 +335,7 @@ a.muted {
.ui.negative.buttons .button,
.ui.negative.button {
background-color: none;
color: #db2828;
color: #fff;
}
.ui.green.button {
@ -394,3 +394,13 @@ ui.basic.blue.button:hover,
background-color: #afb8c133;
border-radius: 6px;
}
// branch display in PRs
.issue.list .branches .branch {
background-color: #afb8c133;
border-radius: 6px;
}
.issue.list .branches .truncated-name {
color: #24292f;
padding: 2px;
}