mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-28 02:27:57 +08:00
Fix bootstrap input-group style [SCI-8723] (#5770)
This commit is contained in:
parent
9421ef3312
commit
5266fad02d
3 changed files with 10 additions and 2 deletions
|
@ -82,3 +82,11 @@
|
|||
background-repeat: no-repeat;
|
||||
}
|
||||
}
|
||||
|
||||
#manage-module-due-date-modal {
|
||||
.input-group {
|
||||
.form-control {
|
||||
height: 2.5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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') %>"
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue