1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-16 07:18:37 +00:00

Various style fixes (#13534)

* Various style fixes

- Fix the rest of the monochrome borders for arc-green
- Fix close icon position on system notice modal and padding
- Fix selectable table color for arc-green

* proper fix for close icon

Co-authored-by: Lauris BH <lauris@nix.lv>
This commit is contained in:
silverwind
2020-11-13 02:31:25 +01:00
committed by GitHub
parent ff7341b994
commit 0ae35c66f2
7 changed files with 38 additions and 58 deletions

View File

@@ -205,6 +205,29 @@ a:hover,
border-color: var(--color-secondary);
}
.ui.table {
color: var(--color-text);
}
.ui.ui.selectable.table > tbody > tr:hover,
.ui.table tbody tr td.selectable:hover {
color: var(--color-text);
background-color: var(--color-secondary-alpha-40);
}
.ui.modal {
background: var(--color-body);
}
.ui.modal > .close.inside,
.ui.fullscreen.modal > .close {
color: var(--body-color);
}
.ui.basic.table > tbody > tr {
border-color: var(--color-secondary);
}
.dont-break-out {
overflow-wrap: break-word;
word-wrap: break-word;