priority-nav 1.0.12 → 1.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +22 -22
- package/README.md +106 -96
- package/demo/css/main.css +155 -155
- package/demo/css/priority-nav-core.css +38 -38
- package/demo/images/src/svg/arrow-down.svg +11 -11
- package/demo/images/src/svg/github-mark.svg +11 -11
- package/demo/images/src/svg/knob.svg +19 -19
- package/demo/index.html +143 -143
- package/demo/js/classList.js +69 -69
- package/demo/js/html5shiv.min.js +3 -3
- package/demo/js/priority-nav.js +666 -666
- package/demo/scss/base/_base.scss +13 -13
- package/demo/scss/base/_boxsizing.scss +13 -13
- package/demo/scss/base/_typography.scss +37 -37
- package/demo/scss/components/_github-links.scss +11 -11
- package/demo/scss/components/_logo.scss +14 -14
- package/demo/scss/components/_nav.scss +118 -118
- package/demo/scss/components/_social.scss +8 -8
- package/demo/scss/layouts/_header.scss +20 -20
- package/demo/scss/main.scss +42 -42
- package/demo/scss/pages/_home.scss +29 -29
- package/demo/scss/utils/_easings.scss +38 -38
- package/demo/scss/utils/_helpers.scss +92 -92
- package/demo/scss/utils/_triangles.scss +26 -26
- package/demo/scss/utils/_variables.scss +29 -29
- package/demo/scss/vendors/_normalize.scss +424 -424
- package/dist/priority-nav-core.css +9 -9
- package/dist/priority-nav.js +719 -724
- package/dist/priority-nav.min.js +3 -2
- package/package.json +46 -46
@@ -1,15 +1,15 @@
|
|
1
|
-
/*
|
2
|
-
* Core styles for PriorityNav.js
|
3
|
-
* These styles are not optional and should always be included
|
4
|
-
*
|
5
|
-
* Free to use under the MIT License.
|
6
|
-
* http://twitter.com/GijsRoge
|
1
|
+
/*
|
2
|
+
* Core styles for PriorityNav.js
|
3
|
+
* These styles are not optional and should always be included
|
4
|
+
*
|
5
|
+
* Free to use under the MIT License.
|
6
|
+
* http://twitter.com/GijsRoge
|
7
7
|
*/
|
8
8
|
.priority-nav {
|
9
9
|
white-space: nowrap;
|
10
|
-
/*
|
11
|
-
* Makes sure the menu's are inline-block so they don't take up
|
12
|
-
* the entire width of its parent. This will break the plugin.
|
10
|
+
/*
|
11
|
+
* Makes sure the menu's are inline-block so they don't take up
|
12
|
+
* the entire width of its parent. This will break the plugin.
|
13
13
|
*/
|
14
14
|
}
|
15
15
|
|