Skip to content

Commit 0aa6551

Browse files
committed
Real Firefox Mobile v42 bugfix. Fixes #115
1 parent 74f2d99 commit 0aa6551

File tree

8 files changed

+23
-8
lines changed

8 files changed

+23
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SlickNav v1.0.5.1
1+
# SlickNav v1.0.5.5
22
## Responsive Mobile Menu jQuery Plugin
33

44
[![Join the chat at https://gitter.im/ComputerWolf/SlickNav](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/ComputerWolf/SlickNav?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "slicknav",
3-
"version": "1.0.5.1",
3+
"version": "1.0.5.5",
44
"authors": [
55
"Josh Cope"
66
],

dist/jquery.slicknav.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* SlickNav Responsive Mobile Menu v1.0.5
2+
* SlickNav Responsive Mobile Menu v1.0.5.5
33
* (c) 2015 Josh Cope
44
* licensed under MIT
55
*/

dist/jquery.slicknav.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/slicknav.css

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* SlickNav Responsive Mobile Menu v1.0.5
2+
* SlickNav Responsive Mobile Menu v1.0.5.5
33
* (c) 2015 Josh Cope
44
* licensed under MIT
55
*/
@@ -25,6 +25,13 @@
2525
width: 1.125em;
2626
height: 0.875em;
2727
margin: 0.188em 0 0 0.438em; }
28+
.slicknav_menu .slicknav_icon:before {
29+
background: transparent;
30+
width: 1.125em;
31+
height: 0.875em;
32+
display: block;
33+
content: "";
34+
position: absolute; }
2835
.slicknav_menu .slicknav_no-text {
2936
margin: 0; }
3037
.slicknav_menu .slicknav_icon-bar {

dist/slicknav.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.5.1",
2+
"version": "1.0.5.5",
33
"name": "slicknav",
44
"description": "",
55
"keywords": [

scss/core.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@
2222
width: 1.125em;
2323
height: 0.875em;
2424
margin: 0.188em 0 0 0.438em;
25+
&:before { // Firefox Mobile v42 bugfix
26+
background: transparent;
27+
width: 1.125em;
28+
height: 0.875em;
29+
display: block;
30+
content: "";
31+
position: absolute;
32+
}
2533
}
2634
.slicknav_no-text {
2735
margin: 0;

0 commit comments

Comments
 (0)