Skip to content

Commit

Permalink
Fix alignement issue
Browse files Browse the repository at this point in the history
  • Loading branch information
xmorave2 committed Jul 18, 2023
1 parent b4936b1 commit a33073e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 7 additions & 7 deletions themes/bootstrap3/less/components/search.less
Original file line number Diff line number Diff line change
Expand Up @@ -571,26 +571,26 @@ table.search-history-table {

.searchForm-query {
position: relative;
display: inline-flex;
align-items: center;
display: inline-block;

.searchForm_lookfor {
padding-right: 18px;
box-sizing: border-box;
#searchForm_lookfor {
padding-right: 28px;
}

#searchForm-reset {
position: absolute;
display: none;
right: 3px;
top: 3px;
bottom: 0;
width: 2em;
height: 2em;
border: none;
border-radius: 50%;
background-color: @gray-lighter;
margin: 0;
padding: 2px;
font-size: 1em;
text-align: center;
line-height: 1em;
cursor: pointer;
}
}
Expand Down
14 changes: 7 additions & 7 deletions themes/bootstrap3/scss/components/search.scss
Original file line number Diff line number Diff line change
Expand Up @@ -571,26 +571,26 @@ table.search-history-table {

.searchForm-query {
position: relative;
display: inline-flex;
align-items: center;
display: inline-block;

.searchForm_lookfor {
padding-right: 18px;
box-sizing: border-box;
#searchForm_lookfor {
padding-right: 28px;
}

#searchForm-reset {
position: absolute;
display: none;
right: 3px;
top: 3px;
bottom: 0;
width: 2em;
height: 2em;
border: none;
border-radius: 50%;
background-color: $gray-lighter;
margin: 0;
padding: 2px;
font-size: 1em;
text-align: center;
line-height: 1em;
cursor: pointer;
}
}
Expand Down

0 comments on commit a33073e

Please sign in to comment.