Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
fix(style): modal z-above searchbar
Browse files Browse the repository at this point in the history
 - fix issue where searchbox on home page overlapped modal
  • Loading branch information
alex-wilmer committed Mar 16, 2016
1 parent 5d5eafb commit 0ddcae4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
7 changes: 4 additions & 3 deletions app/styles/app.less
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
@import "search.less";
@import "home.less";
@import "fonts.less";
@import "modal.less";
@import "../scripts/components/styles.less";

html, body {
Expand All @@ -39,7 +40,7 @@ abbr {
}
.navbar-nav > li > a {
padding-left: 13px;
padding-right: 13px;
padding-right: 13px;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
Expand Down Expand Up @@ -327,8 +328,8 @@ p, ul, ol {
}

dt {
font-weight: bold;
color:#66581c;
font-weight: bold;
color:#66581c;
}

dd {
Expand Down
7 changes: 7 additions & 0 deletions app/styles/modal.less
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.modal {
z-index: 10020 !important;
}

.modal-backdrop {
z-index: 10010 !important;
}

0 comments on commit 0ddcae4

Please sign in to comment.