1
0
Fork 0
forked from forgejo/forgejo

CSS table fixes (#13692)

* CSS table fixes

Override the right fomantic selectors.

Fixes: https://github.com/go-gitea/gitea/issues/13690

* use flexbox
This commit is contained in:
silverwind 2020-11-24 20:27:10 +01:00 committed by GitHub
parent 24330f71b6
commit 00ec651270
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 17 additions and 22 deletions

View file

@ -229,6 +229,8 @@ a:hover,
.ui.table {
color: var(--color-text);
background: var(--color-body);
border-color: var(--color-secondary);
}
.ui.ui.selectable.table > tbody > tr:hover,
@ -237,6 +239,12 @@ a:hover,
background-color: var(--color-secondary-alpha-40);
}
.ui.ui.ui.ui.table tr.grey:not(.marked),
.ui.ui.table td.grey:not(.marked) {
background: var(--color-body);
color: var(--color-text);
}
.ui.modal {
background: var(--color-body);
}