Skip to content

Commit

Permalink
Fixed search form styles.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanbohacek committed Oct 27, 2021
1 parent adee14f commit d2640f5
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 8 deletions.
2 changes: 1 addition & 1 deletion admin-js/scripts.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion admin-js/scripts.min.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 7 additions & 3 deletions css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -5676,7 +5676,6 @@ button.bg-dark:focus {
position: fixed !important; }

.position-sticky {
position: -webkit-sticky !important;
position: sticky !important; }

.fixed-top {
Expand All @@ -5693,9 +5692,8 @@ button.bg-dark:focus {
left: 0;
z-index: 1030; }

@supports ((position: -webkit-sticky) or (position: sticky)) {
@supports (position: sticky) {
.sticky-top {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1020; } }
Expand Down Expand Up @@ -7762,6 +7760,12 @@ video {
#menu-wrapper #search-filters.container {
padding: 0 !important; }

#search-filters input {
opacity: 1; }

#search-filters label {
padding-left: 0.5rem; }

@media (max-width: 860px) {
#search-filters .form-check {
margin-top: 1rem;
Expand Down
2 changes: 1 addition & 1 deletion css/styles.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/scripts.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/scripts.min.js.map

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions src/styles/layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,12 @@ video {
}

#search-filters{
input{
opacity: 1;
}
label{
padding-left: 0.5rem;
}
.form-check{
@media(max-width: $site-width-small){
margin-top: 1rem;
Expand Down

0 comments on commit d2640f5

Please sign in to comment.