Last active
June 23, 2017 00:45
-
-
Save aubricus/ca9c8015a2b6636830b2e495e073f4ea to your computer and use it in GitHub Desktop.
Hook a fixed position element into the DjangoCMS toolbar expanded / collapsed states
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
// 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