Fix input size for dependency select (#6913)

release/v1.9
Xaver Maierhofer 5 years ago committed by Lauris BH
parent 13583a650f
commit a92ab34493

File diff suppressed because one or more lines are too long

@ -2244,9 +2244,18 @@ tbody.commit-list {
cursor: pointer; 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%; width: 100%;
overflow: hidden;
} }
} }

@ -321,7 +321,7 @@
<form method="POST" action="{{$.RepoLink}}/issues/{{.Issue.Index}}/dependency/add" id="addDependencyForm"> <form method="POST" action="{{$.RepoLink}}/issues/{{.Issue.Index}}/dependency/add" id="addDependencyForm">
{{$.CsrfTokenHtml}} {{$.CsrfTokenHtml}}
<div class="ui fluid action input"> <div class="ui fluid action input">
<div class="ui search selection dropdown" id="new-dependency-drop-list" data-issue-id="{{.Issue.ID}}" style="min-width: 13.9rem;border-radius: 4px 0 0 4px;border-right: 0;white-space: nowrap;"> <div class="ui search selection dropdown" id="new-dependency-drop-list" data-issue-id="{{.Issue.ID}}">
<input name="newDependency" type="hidden"> <input name="newDependency" type="hidden">
<i class="dropdown icon"></i> <i class="dropdown icon"></i>
<input type="text" class="search"> <input type="text" class="search">

Loading…
Cancel
Save