-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #426 from scania/bug/footer_moves_on_link_hover_IE
fix moving footer on IE when hover on nav item
- Loading branch information
Showing
3 changed files
with
56 additions
and
23 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,8 +61,10 @@ <h1>Corporate UI for Developers</h1> | |
<nav-item location="#" icon="youtube"></nav-item> | ||
<nav-item location="#" icon="linkedin"></nav-item> | ||
</c-social-media> | ||
<nav-item location="https://scania.github.io/corporate-ui-docs/master-branch/developer/support.html">Support</nav-item> | ||
<nav-item location="mailto:[email protected]">Contact</nav-item> | ||
</c-corporate-footer> | ||
|
||
<script src="js/ux-library.js"></script> | ||
</body> | ||
</html> | ||
</html> |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,31 @@ | ||
<footer class="footer"> | ||
<span class="wordmark"></span> | ||
<content select="c-social-media"></content> | ||
<div class="right-container"> | ||
<span class="wordmark"></span> | ||
</div> | ||
<div class="left-container"> | ||
<content select="c-social-media"></content> | ||
|
||
<template is="dom-if" if="{{navItems}}" restamp="true"> | ||
<div class="dropdown-container"> | ||
<nav class="dropdown-menu footer-links"> | ||
<content></content> | ||
<template is="dom-if" if="{{navItems}}" restamp="true"> | ||
<div class="dropdown-container"> | ||
<nav class="dropdown-menu footer-links"> | ||
<content></content> | ||
|
||
<template is="dom-repeat" items="{{items}}"> | ||
<nav-item props="{{item}}"></nav-item> | ||
</template> | ||
</nav> | ||
<a href="#" class="btn btn-lg-center-block hidden-md hidden-lg" data-toggle="dropdown"> | ||
SCANIA | ||
<span class="icon-caret-up"></span> | ||
</a> | ||
</div> | ||
</template> | ||
<p class="footer-copy-text"> | ||
<!-- <content select="copyright-text"> | ||
© Copyright Scania 2016 All rights reserved. | ||
</content> --> | ||
<span>©</span> {{copyright}} | ||
</p> | ||
</nav> | ||
<a href="#" class="btn btn-lg-center-block hidden-md hidden-lg" data-toggle="dropdown"> | ||
SCANIA | ||
<span class="icon-caret-up"></span> | ||
</a> | ||
</div> | ||
</template> | ||
<p class="footer-copy-text"> | ||
<!-- <content select="copyright-text"> | ||
© Copyright Scania 2016 All rights reserved. | ||
</content> --> | ||
<span>©</span> {{copyright}} | ||
</p> | ||
</div> | ||
|
||
</footer> |