Skip to content

Instantly share code, notes, and snippets.

@ckieffer
Last active August 29, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ckieffer/4d2d1538ab1f2261ec19 to your computer and use it in GitHub Desktop.
Save ckieffer/4d2d1538ab1f2261ec19 to your computer and use it in GitHub Desktop.
CSS Adjustments for Drupal Bootstrap Theme's Navbar Fixed Top When Used with Ember/Navbar Admin Theme
/* CSS Adjustments for Drupal Bootstrap Theme's Navbar Fixed Top When Used with Ember/Navbar Admin Theme. */
/* Place this in header.less and recompile */
.navbar-vertical .navbar-fixed-top,
.navbar-horizontal .navbar-fixed-top {
top: 40px !important;
}
.navbar-vertical.navbar-tray-open .navbar-fixed-top {
left: 150px !important;
}
.navbar-vertical .main-container {
margin-top: 40px !important;
}
.navbar-horizontal.navbar-tray-open .navbar-fixed-top {
top: 78px !important;
}
.navbar-horizontal .main-container {
margin-top: 40px !important;
}
.navbar-horizontal.navbar-tray-open .main-container {
margin-top: 78px !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment