forked from forkcms/forkcms
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Daphne Slootmans
committed
Aug 3, 2023
1 parent
6760f7f
commit 8e282c8
Showing
10 changed files
with
73 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,3 +22,7 @@ p img { | |
z-index: 10; | ||
} | ||
} | ||
|
||
.box-shadow { | ||
box-shadow: $box-shadow-sm; | ||
} |
5 changes: 4 additions & 1 deletion
5
src/Frontend/Themes/Bootstrap/src/Layout/Sass/components/_navbar-languages.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 0 additions & 9 deletions
9
src/Frontend/Themes/Bootstrap/src/Layout/Sass/components/_navbar.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
src/Frontend/Themes/Bootstrap/src/Layout/Sass/components/_search.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
@include media-breakpoint-down(lg) { | ||
.search { | ||
width: 100%; | ||
|
||
form { | ||
width: 100%; | ||
} | ||
|
||
.twitter-typeahead { | ||
flex-grow: 1; | ||
} | ||
} | ||
|
||
.dropdown-menu.dropdown-search { | ||
width: 80vw; | ||
right: -100%; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
src/Frontend/Themes/Bootstrap/src/Layout/Templates/SearchModal.html.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<div class="modal fade d-lg-none" id="topModal" tabindex="-1" aria-labelledby="topModalLabel" aria-hidden="true"> | ||
<div class="modal-dialog modal-fullscreen-md-down modal-dialog-centered"> | ||
<div class="modal-content"> | ||
<div class="modal-header"> | ||
<h1 class="modal-title fs-5 visually-hidden" id="topModalLabel">Modal title</h1> | ||
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> | ||
</div> | ||
<div class="modal-body d-flex flex-column justify-content-center"> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
</div> |