mirror of
https://github.com/go-gitea/gitea.git
synced 2025-08-30 12:32:49 +09:00
Merge branch 'main' into feature/bots
This commit is contained in:
@ -1354,6 +1354,12 @@ a.ui.card:hover,
|
||||
border-color: var(--color-error-border) !important;
|
||||
}
|
||||
|
||||
// A fix for text visibility issue in Chrome autofill in dark mode.
|
||||
// It's a problem from Formatic UI, and this rule overrides it.
|
||||
.ui.form .field.field input:-webkit-autofill {
|
||||
-webkit-text-fill-color: var(--color-black) !important;
|
||||
}
|
||||
|
||||
.ui.loading.loading.input > i.icon svg {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
@ -188,7 +188,11 @@
|
||||
}
|
||||
|
||||
.repo-owner-name-list .item-name {
|
||||
max-width: 70%;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.repo-owner-name-list .item-name svg {
|
||||
min-width: 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -12,7 +12,8 @@
|
||||
margin: 0 .5rem !important;
|
||||
padding: .5rem !important;
|
||||
width: 320px;
|
||||
height: 60vh;
|
||||
height: calc(100vh - 450px);
|
||||
min-height: 60vh;
|
||||
overflow-y: scroll;
|
||||
flex: 0 0 auto;
|
||||
overflow: visible;
|
||||
|
Reference in New Issue
Block a user