Skip to content

Commit

Permalink
Updates search bar styling
Browse files Browse the repository at this point in the history
  • Loading branch information
lougroshek committed Jun 19, 2020
1 parent 6fc428c commit 0a5ab1b
Showing 1 changed file with 17 additions and 16 deletions.
33 changes: 17 additions & 16 deletions themes/docsy-master/assets/scss/_search.scss
@@ -1,29 +1,30 @@
// Search

.td-search-input {
background: transparent;
background: #f5f6f7; // transparent;

&.form-control:focus {
border-color: lighten($primary, 60%);
box-shadow: 0 0 0 2px lighten($primary, 30%);
}
&.form-control:focus {
// border-color: lighten($primary, 60%);
border: 0;
box-shadow: 0 0 0 2px lighten($primary, 30%);
}

@if $enable-rounded {
border-radius: 1rem;
}
@if $enable-rounded {
border-radius: 3px; // 1rem;
}

font-family: "Font Awesome 5 Free", $font-family-base;
font-family: 'Font Awesome 5 Free', $font-family-base;
}

.popover.offline-search-result {
// Override bootstrap default style (max-width: $popover-max-width;)
max-width: 90%;
// Override bootstrap default style (max-width: $popover-max-width;)
max-width: 90%;

.card {
margin-bottom: $spacer * .5;
.card {
margin-bottom: $spacer * 0.5;

.card-header {
font-weight: bold;
}
.card-header {
font-weight: bold;
}
}
}

0 comments on commit 0a5ab1b

Please sign in to comment.