1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-03 09:07:19 +00:00

Fix input size for dependency select (#6913)

This commit is contained in:
Xaver Maierhofer
2019-05-12 13:10:12 +02:00
committed by Lauris BH
parent 13583a650f
commit a92ab34493
3 changed files with 13 additions and 4 deletions

View File

@ -2244,9 +2244,18 @@ tbody.commit-list {
cursor: pointer;
}
@media only screen and (max-width: 768px) {
.new-dependency-drop-list {
#new-dependency-drop-list {
&.ui.selection.dropdown {
min-width: 0;
width: 100%;
border-radius: 4px 0 0 4px;
border-right: 0;
white-space: nowrap;
}
.text {
width: 100%;
overflow: hidden;
}
}