Skip to content

Commit

Permalink
Fixes search foirm submit button in smaller screens #2346 #2174
Browse files Browse the repository at this point in the history
Also updates breaks with variables from Bottstrap4.
Updates css with existing classes. Removes old ones that are not used any more.
  • Loading branch information
christinach committed Dec 1, 2023
1 parent 127a454 commit c73a089
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 19 deletions.
33 changes: 15 additions & 18 deletions app/assets/stylesheets/components/search.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@
@import "variables/colors";
@import "variables/typography";

$search-box-form-height: calc(1.75em + 0.75rem + 2px);

header .navbar-form .input-group .custom-select {
header .search-navbar .input-group .custom-select {
width: auto;
}

@media (max-width: 575px) {
header .navbar-form .input-group .custom-select {
@media (max-width: $bp-small) {
header .search-navbar .input-group .custom-select {
width: 100%;
clear: both;
display: block;
Expand All @@ -20,14 +18,14 @@ header .navbar-form .input-group .custom-select {
}
}

header .navbar-form .input-group .input-group .search_q {
.search-navbar .search-query-form .input-group .search-input .search_q {
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
-webkit-appearance: none;
}
}

header .navbar-form .input-group .input-group-btn {
header .search-navbar .input-group .input-group-append .search-btn {
width: 40px;
}

Expand Down Expand Up @@ -66,7 +64,7 @@ header .navbar-form .input-group .input-group-btn {
height: 42px;
border-right: 0;

@media (max-width: 530px) {
@media (max-width: $bp-small) {
border-radius: 3px;
border: 1px solid #ccc;
}
Expand Down Expand Up @@ -98,17 +96,23 @@ header .navbar-form .input-group .input-group-btn {
}

@media (min-width: $bp-large) {
.navbar-form .input-group > .search_q.form-control {
.search-query-form .input-group {
width: 250px;
}
}

@media (min-width: $bp-xlarge) {
.navbar-form .input-group > .search_q.form-control {
.search-query-form .input-group {
width: 375px;
}
}

@media (max-width: $bp-medium), (max-width: $bp-small) {
.search-query-form .input-group {
width: 100px;
}
}

.search-query-form,
#search-navbar .search-query-form {
margin: 0;
Expand Down Expand Up @@ -138,7 +142,7 @@ header .navbar-form .input-group .input-group-btn {
border-top-right-radius: 0;
border-bottom-right-radius: 0;

@media (min-width: 575px) {
@media (min-width: $bp-small) {
border-radius: 0;
}
}
Expand All @@ -165,14 +169,7 @@ select::-ms-expand {
display: none;
}

.search_q.form-control,
.search-btn {
height: $search-box-form-height;
}

#search_field.custom-select {
height: $search-box-form-height;

@media (min-width: 575px) {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
Expand Down
2 changes: 1 addition & 1 deletion app/assets/stylesheets/requests/request.scss
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ input[type="radio"] + label {
}
}

.btn {
#request-submit-wrapper .btn {
display: block;
width: 100%;
min-height: 48px;
Expand Down

0 comments on commit c73a089

Please sign in to comment.