Skip to content

Instantly share code, notes, and snippets.

@aubricus
Last active June 23, 2017 00:45
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 aubricus/ca9c8015a2b6636830b2e495e073f4ea to your computer and use it in GitHub Desktop.
Save aubricus/ca9c8015a2b6636830b2e495e073f4ea to your computer and use it in GitHub Desktop.
Hook a fixed position element into the DjangoCMS toolbar expanded / collapsed states
// Hook a fixed position element into the DjangoCMS toolbar expanded / collapsed states
.fixed-element {
position: fixed;
top: 0;
left: 0;
width: 100%
.cms-toolbar-expanding &,
.cms-toolbar-expanded & {
top: 46px;
}
.cms-toolbar-collapsing & {
top: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment