Fix bootstrap input-group style [SCI-8723] (#5770)

This commit is contained in:
Soufiane 2023-07-14 08:37:29 +02:00 committed by GitHub
parent 9421ef3312
commit 5266fad02d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 2 deletions

View file

@ -82,3 +82,11 @@
background-repeat: no-repeat;
}
}
#manage-module-due-date-modal {
.input-group {
.form-control {
height: 2.5rem;
}
}
}

View file

@ -12,7 +12,7 @@
role: 'search' do %>
<div class="form-group">
<div class="input-group">
<input class="form-control"
<input class="form-control min-h-[2.5rem]"
type="text"
name="q"
placeholder="<%= t('nav.search') %>"

View file

@ -6,7 +6,7 @@
<%= form_tag search_path, method: :get, id: 'search-bar', class: 'navbar-form navbar-left', role: 'search' do %>
<div class="form-group">
<div class="input-group">
<input class="form-control" type="text" name="q" placeholder="<%= t('nav.search') %>">
<input class="form-control min-h-[2.5rem]" type="text" name="q" placeholder="<%= t('nav.search') %>">
<span class="input-group-btn">
<button id="search-button" class="btn btn-secondary" type="submit">
<span class="sn-icon sn-icon-search"></span>