Closed rofthedeep closed 3 years ago
Hi,
at the moment the toolbar adds a black overlay to our site.
I don't compile the less file, but using directly the toolbar.css file from Resources/views/@Toolbar/_resources/css/toolbar.css
There this class exists:
.sf-toolbarreset { background-color: #222; bottom: 0; box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); color: #EEE; font: 11px Arial, sans-serif; margin: 0; padding: 0 36px 0 0; text-align: left; z-index: 99999; width: 100%; position: -webkit-sticky; position: sticky } Changing the "position: sticky" to "position: fixed" fixes the display problem.
.sf-toolbarreset { background-color: #222; bottom: 0; box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); color: #EEE; font: 11px Arial, sans-serif; margin: 0; padding: 0 36px 0 0; text-align: left; z-index: 99999; width: 100%; position: -webkit-sticky; position: sticky }
Best, Tim
With fixed we have this issue again https://github.com/FriendsOfShopware/FroshProfiler/issues/94 Have you an idea how we can fix both issues?
Hi,
at the moment the toolbar adds a black overlay to our site.
I don't compile the less file, but using directly the toolbar.css file from Resources/views/@Toolbar/_resources/css/toolbar.css
There this class exists:
.sf-toolbarreset { background-color: #222; bottom: 0; box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); color: #EEE; font: 11px Arial, sans-serif; margin: 0; padding: 0 36px 0 0; text-align: left; z-index: 99999; width: 100%; position: -webkit-sticky; position: sticky }
Changing the "position: sticky" to "position: fixed" fixes the display problem.Best, Tim