-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Quick fixes for horizontal scroll bar
Scroll bar has been showing up on some pages. Seems like the culprit is the extra margin introduced by `.row` classes on bootstrap. More likely there are overlapping grid elements causing the issues, but that is a much larger fix
- Loading branch information
1 parent
acf5b94
commit 767a9fc
Showing
8 changed files
with
18 additions
and
18 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
4 changes: 2 additions & 2 deletions
4
src/js/page_managers/templates/authentication-page-layout.html
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
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
<div class="row"> | ||
<div> | ||
<div class="col-sm-12"> | ||
<div data-widget="UserNavbarWidget" /> | ||
</div> | ||
</div> | ||
|
||
<div class="nav-button-container s-nav-button-container row"> | ||
<div class="nav-button-container s-nav-button-container"> | ||
<button class="btn btn-primary-faded toggle-menu s-toggle-menu "> | ||
<i class="fa fa-bars" aria-hidden="true"></i> Show Menu | ||
</button> | ||
</div> | ||
|
||
<div class="row s-darker-background"> | ||
<div class="row s-darker-background" style="margin-right:0;"> | ||
<div class="col-sm-2 nav-container s-nav-container"></div> | ||
<div class="col-sm-10 body-min-height"></div> | ||
</div> |
6 changes: 3 additions & 3 deletions
6
src/js/wraps/libraries_page_manager/libraries-page-layout.html
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
2 changes: 1 addition & 1 deletion
2
src/js/wraps/public_libraries_page_manager/public-libraries-page-layout.html
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
6 changes: 3 additions & 3 deletions
6
src/js/wraps/user_settings_page_manager/user-settings-layout.html
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