Version Description
- [Pro] Feature: Custom Anchor Class setting for menu items
- [Pro] Feature: Scroll Tolerance setting Enhancement: Improve Control Panel tab overflow handling Enhancement: Add font-display:block on Font Awesome to make Lighthouse happy Enhancement: Force toggle to absolute when printing to avoid printing on every page Update: PHP 8 compatibility Update: jQuery 3 compatibility in admin panel Fix: Admin menu item Shift button hovering Fix: Panel close button layering when scrolling menu items Fix: Panel double scroll bar corner case
Download this release
Release Info
Developer | sevenspark |
Plugin | ShiftNav – Responsive Mobile Menu |
Version | 1.7.1 |
Comparing to | |
See all releases |
Code changes from version 1.7.0.1 to 1.7.1
- admin/assets/admin.menu.js +3 -4
- admin/assets/admin.settings.css +8 -0
- admin/assets/admin.settings.js +2 -2
- admin/assets/fontawesome/css/font-awesome.css +1 -0
- admin/assets/fontawesome/css/font-awesome.min.css +1 -1
- admin/settings-api.class.php +2 -2
- admin/settings.config.php +9 -0
- assets/css/less/misc.less +6 -0
- assets/css/less/panel.less +6 -2
- assets/css/shiftnav.css +11 -2
- assets/css/shiftnav.min.css +1 -1
- assets/js/shiftnav.js +9 -3
- assets/js/shiftnav.min.js +34 -34
- includes/ShiftNavWalker.class.php +7 -2
- includes/functions.php +1 -0
- languages/shiftnav.pot +141 -130
- package.json +6 -6
- readme.txt +16 -2
- shiftnav-responsive-mobile-menu.php +3 -3
admin/assets/admin.menu.js
CHANGED
@@ -11,10 +11,9 @@ jQuery( document ).ready( function($){
|
|
11 |
$( '.shiftnav-js-check' ).remove();
|
12 |
|
13 |
//handle adding the "Shift" button on each menu item upon first interaction
|
14 |
-
$( '#menu-management' ).on( '
|
15 |
$(this).addClass( 'shiftnav-processed' );
|
16 |
$(this).find( '.item-title' ).append( '<span class="shiftnav-settings-toggle" data-shift-toggle="' + $(this).attr('id') + '"><i class="fa fa-gear"></i> Shift <span class="shiftnav-unsaved-alert"><i class="fa fa-warning"></i> <span class="shiftnav-unsaved-alert-message">Unsaved</span></span></span>' );
|
17 |
-
//console.log( $(this).find( '.item-title' ).text() );
|
18 |
});
|
19 |
|
20 |
//Don't allow clicks to propagate when clicking the toggle button, to avoid drag-starts of the menu item
|
@@ -42,7 +41,7 @@ jQuery( document ).ready( function($){
|
|
42 |
else{
|
43 |
$settingswrap.addClass( 'shiftnav-menu-item-settings-open' );
|
44 |
$( 'body' ).addClass( 'shiftnav-settings-panel-is-open' );
|
45 |
-
|
46 |
//Update
|
47 |
|
48 |
$current_panel = $settingswrap.find( '.shiftnav-menu-item-panel-' + this_menu_item_id );
|
@@ -112,7 +111,7 @@ jQuery( document ).ready( function($){
|
|
112 |
return false;
|
113 |
});
|
114 |
|
115 |
-
$current_panel.find( '.shiftnav-menu-item-tab > a' ).first().click
|
116 |
|
117 |
$settingswrap.append( $current_panel );
|
118 |
}
|
11 |
$( '.shiftnav-js-check' ).remove();
|
12 |
|
13 |
//handle adding the "Shift" button on each menu item upon first interaction
|
14 |
+
$( '#menu-management' ).on( 'mouseenter touchEnd MSPointerUp pointerup' , '.menu-item:not(.shiftnav-processed)' , function(e){
|
15 |
$(this).addClass( 'shiftnav-processed' );
|
16 |
$(this).find( '.item-title' ).append( '<span class="shiftnav-settings-toggle" data-shift-toggle="' + $(this).attr('id') + '"><i class="fa fa-gear"></i> Shift <span class="shiftnav-unsaved-alert"><i class="fa fa-warning"></i> <span class="shiftnav-unsaved-alert-message">Unsaved</span></span></span>' );
|
|
|
17 |
});
|
18 |
|
19 |
//Don't allow clicks to propagate when clicking the toggle button, to avoid drag-starts of the menu item
|
41 |
else{
|
42 |
$settingswrap.addClass( 'shiftnav-menu-item-settings-open' );
|
43 |
$( 'body' ).addClass( 'shiftnav-settings-panel-is-open' );
|
44 |
+
|
45 |
//Update
|
46 |
|
47 |
$current_panel = $settingswrap.find( '.shiftnav-menu-item-panel-' + this_menu_item_id );
|
111 |
return false;
|
112 |
});
|
113 |
|
114 |
+
$current_panel.find( '.shiftnav-menu-item-tab > a' ).first().trigger('click');
|
115 |
|
116 |
$settingswrap.append( $current_panel );
|
117 |
}
|
admin/assets/admin.settings.css
CHANGED
@@ -234,6 +234,14 @@ h4.shiftnav-settings-section{
|
|
234 |
margin-bottom:-2px;
|
235 |
}
|
236 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
237 |
|
238 |
.shiftnav-wrap .form-table tr:nth-child(2n){
|
239 |
background:#f9f9f9;
|
234 |
margin-bottom:-2px;
|
235 |
}
|
236 |
|
237 |
+
.shiftnav-wrap .nav-tab-wrapper{
|
238 |
+
overflow-x:auto;
|
239 |
+
display:flex;
|
240 |
+
}
|
241 |
+
.shiftnav-wrap .shiftnav_instance_toggle{
|
242 |
+
margin-left:20px;
|
243 |
+
}
|
244 |
+
|
245 |
|
246 |
.shiftnav-wrap .form-table tr:nth-child(2n){
|
247 |
background:#f9f9f9;
|
admin/assets/admin.settings.js
CHANGED
@@ -116,7 +116,7 @@ jQuery( document ).ready( function($){
|
|
116 |
|
117 |
var id = response.id;
|
118 |
$( '#shiftnav_'+id+', #shiftnav_'+id+'-tab' ).remove(); //delete tab and content
|
119 |
-
$( '.nav-tab-wrapper > a' ).first().click
|
120 |
}
|
121 |
|
122 |
}, 'json' ).fail( function(){
|
@@ -154,7 +154,7 @@ jQuery( document ).ready( function($){
|
|
154 |
if( window.location.hash ){
|
155 |
//console.log( window.location.hash + '-tab ' + $( window.location.hash + '-tab' ).size() );
|
156 |
|
157 |
-
$( window.location.hash + '-tab' ).click
|
158 |
}
|
159 |
} , 500 );
|
160 |
});
|
116 |
|
117 |
var id = response.id;
|
118 |
$( '#shiftnav_'+id+', #shiftnav_'+id+'-tab' ).remove(); //delete tab and content
|
119 |
+
$( '.nav-tab-wrapper > a' ).first().trigger('click'); //switch to first tab
|
120 |
}
|
121 |
|
122 |
}, 'json' ).fail( function(){
|
154 |
if( window.location.hash ){
|
155 |
//console.log( window.location.hash + '-tab ' + $( window.location.hash + '-tab' ).size() );
|
156 |
|
157 |
+
$( window.location.hash + '-tab' ).trigger('click');
|
158 |
}
|
159 |
} , 500 );
|
160 |
});
|
admin/assets/fontawesome/css/font-awesome.css
CHANGED
@@ -10,6 +10,7 @@
|
|
10 |
src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
|
11 |
font-weight: normal;
|
12 |
font-style: normal;
|
|
|
13 |
}
|
14 |
.fa {
|
15 |
display: inline-block;
|
10 |
src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
|
11 |
font-weight: normal;
|
12 |
font-style: normal;
|
13 |
+
font-display:block;
|
14 |
}
|
15 |
.fa {
|
16 |
display: inline-block;
|
admin/assets/fontawesome/css/font-awesome.min.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
/*!
|
2 |
* Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
|
3 |
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
4 |
-
*/@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
|
1 |
/*!
|
2 |
* Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
|
3 |
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
4 |
+
*/@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal;font-display:block;}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}
|
admin/settings-api.class.php
CHANGED
@@ -306,7 +306,7 @@ class ShiftNav_Settings_API {
|
|
306 |
$html .= '<input type="button" class="button wpsf-browse" id="'. $id .'_button" value="Browse" />
|
307 |
<script type="text/javascript">
|
308 |
jQuery(document).ready(function($){
|
309 |
-
$("#'. $js_id .'_button").click
|
310 |
tb_show("", "media-upload.php?post_id=0&type=image&TB_iframe=true");
|
311 |
window.original_send_to_editor = window.send_to_editor;
|
312 |
window.send_to_editor = function(html) {
|
@@ -583,7 +583,7 @@ class ShiftNav_Settings_API {
|
|
583 |
else {
|
584 |
$('.nav-tab-wrapper a:first').addClass('nav-tab-active');
|
585 |
}
|
586 |
-
$('.nav-tab-wrapper a').click
|
587 |
$('.nav-tab-wrapper a').removeClass('nav-tab-active');
|
588 |
$(this).addClass('nav-tab-active').blur();
|
589 |
var clicked_group = $(this).attr('href');
|
306 |
$html .= '<input type="button" class="button wpsf-browse" id="'. $id .'_button" value="Browse" />
|
307 |
<script type="text/javascript">
|
308 |
jQuery(document).ready(function($){
|
309 |
+
$("#'. $js_id .'_button").on("click", function() {
|
310 |
tb_show("", "media-upload.php?post_id=0&type=image&TB_iframe=true");
|
311 |
window.original_send_to_editor = window.send_to_editor;
|
312 |
window.send_to_editor = function(html) {
|
583 |
else {
|
584 |
$('.nav-tab-wrapper a:first').addClass('nav-tab-active');
|
585 |
}
|
586 |
+
$('.nav-tab-wrapper a').on( 'click', function(evt) {
|
587 |
$('.nav-tab-wrapper a').removeClass('nav-tab-active');
|
588 |
$(this).addClass('nav-tab-active').blur();
|
589 |
var clicked_group = $(this).attr('href');
|
admin/settings.config.php
CHANGED
@@ -94,6 +94,7 @@ function shiftnav_get_settings_fields(){
|
|
94 |
'name' => 'skin',
|
95 |
'label' => __( 'Skin' , 'shiftnav' ),
|
96 |
'type' => 'select',
|
|
|
97 |
'options' => shiftnav_get_skin_ops(),
|
98 |
'default' => 'standard-dark',
|
99 |
//'options' => get_registered_nav_menus()
|
@@ -693,6 +694,14 @@ function shiftnav_get_settings_fields(){
|
|
693 |
'input_type' => 'number',
|
694 |
'default' => 50,
|
695 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
696 |
}
|
697 |
|
698 |
|
94 |
'name' => 'skin',
|
95 |
'label' => __( 'Skin' , 'shiftnav' ),
|
96 |
'type' => 'select',
|
97 |
+
'desc' => 'Select the base skin for your menu. You can override styles in the Customizer settings. Choose "custom.css" to write your own skin - see <a href="https://sevenspark.com/docs/shiftnav/customize/custom-stylesheet-custom-css">Custom Stylesheet (custom.css)</a>',
|
98 |
'options' => shiftnav_get_skin_ops(),
|
99 |
'default' => 'standard-dark',
|
100 |
//'options' => get_registered_nav_menus()
|
694 |
'input_type' => 'number',
|
695 |
'default' => 50,
|
696 |
);
|
697 |
+
$fields[$gen][131] = array(
|
698 |
+
'name' => 'scroll_tolerance',
|
699 |
+
'label' => __( 'Scroll Tolerance', 'shiftnav' ),
|
700 |
+
'desc' => __( '(Unrelated to ScrollTo or Scroll Offset). Pixel distance the user must scroll to trigger an up/down direction change. Used for the Hide Toggle Bar on Scroll Down setting.', 'shiftnav' ),
|
701 |
+
'type' => 'text',
|
702 |
+
'input_type' => 'number',
|
703 |
+
'default' => 10,
|
704 |
+
);
|
705 |
}
|
706 |
|
707 |
|
assets/css/less/misc.less
CHANGED
@@ -106,3 +106,9 @@
|
|
106 |
text-align:center;
|
107 |
font-size:16px;
|
108 |
}
|
|
|
|
|
|
|
|
|
|
|
|
106 |
text-align:center;
|
107 |
font-size:16px;
|
108 |
}
|
109 |
+
|
110 |
+
@media print {
|
111 |
+
#shiftnav-toggle-main{
|
112 |
+
position:absolute !important;
|
113 |
+
}
|
114 |
+
}
|
assets/css/less/panel.less
CHANGED
@@ -10,10 +10,10 @@
|
|
10 |
height:100%;
|
11 |
background:white;
|
12 |
z-index:600000;
|
13 |
-
overflow
|
14 |
-
overflow-x:hidden;
|
15 |
visibility:hidden;
|
16 |
opacity:0;
|
|
|
17 |
}
|
18 |
.shiftnav-open .shiftnav,
|
19 |
.shiftnav-transitioning .shiftnav{
|
@@ -164,6 +164,10 @@
|
|
164 |
float:none;
|
165 |
min-width:0;
|
166 |
}
|
|
|
|
|
|
|
|
|
167 |
.shiftnav ul.shiftnav-menu{
|
168 |
position:relative;
|
169 |
clear:both;
|
10 |
height:100%;
|
11 |
background:white;
|
12 |
z-index:600000;
|
13 |
+
overflow:hidden;
|
|
|
14 |
visibility:hidden;
|
15 |
opacity:0;
|
16 |
+
overscroll-behavior: contain;
|
17 |
}
|
18 |
.shiftnav-open .shiftnav,
|
19 |
.shiftnav-transitioning .shiftnav{
|
164 |
float:none;
|
165 |
min-width:0;
|
166 |
}
|
167 |
+
.shiftnav nav.shiftnav-nav{
|
168 |
+
position:relative;
|
169 |
+
z-index:10;
|
170 |
+
}
|
171 |
.shiftnav ul.shiftnav-menu{
|
172 |
position:relative;
|
173 |
clear:both;
|
assets/css/shiftnav.css
CHANGED
@@ -340,10 +340,10 @@ body.admin-bar .shiftnav {
|
|
340 |
height: 100%;
|
341 |
background: white;
|
342 |
z-index: 600000;
|
343 |
-
overflow
|
344 |
-
overflow-x: hidden;
|
345 |
visibility: hidden;
|
346 |
opacity: 0;
|
|
|
347 |
}
|
348 |
.shiftnav-open .shiftnav,
|
349 |
.shiftnav-transitioning .shiftnav {
|
@@ -481,6 +481,10 @@ body.admin-bar .shiftnav {
|
|
481 |
float: none;
|
482 |
min-width: 0;
|
483 |
}
|
|
|
|
|
|
|
|
|
484 |
.shiftnav ul.shiftnav-menu {
|
485 |
position: relative;
|
486 |
clear: both;
|
@@ -866,6 +870,11 @@ body.admin-bar .shiftnav {
|
|
866 |
text-align: center;
|
867 |
font-size: 16px;
|
868 |
}
|
|
|
|
|
|
|
|
|
|
|
869 |
.rtl .shiftnav li.menu-item {
|
870 |
text-align: right;
|
871 |
}
|
340 |
height: 100%;
|
341 |
background: white;
|
342 |
z-index: 600000;
|
343 |
+
overflow: hidden;
|
|
|
344 |
visibility: hidden;
|
345 |
opacity: 0;
|
346 |
+
overscroll-behavior: contain;
|
347 |
}
|
348 |
.shiftnav-open .shiftnav,
|
349 |
.shiftnav-transitioning .shiftnav {
|
481 |
float: none;
|
482 |
min-width: 0;
|
483 |
}
|
484 |
+
.shiftnav nav.shiftnav-nav {
|
485 |
+
position: relative;
|
486 |
+
z-index: 10;
|
487 |
+
}
|
488 |
.shiftnav ul.shiftnav-menu {
|
489 |
position: relative;
|
490 |
clear: both;
|
870 |
text-align: center;
|
871 |
font-size: 16px;
|
872 |
}
|
873 |
+
@media print {
|
874 |
+
#shiftnav-toggle-main {
|
875 |
+
position: absolute !important;
|
876 |
+
}
|
877 |
+
}
|
878 |
.rtl .shiftnav li.menu-item {
|
879 |
text-align: right;
|
880 |
}
|
assets/css/shiftnav.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.shiftnav-wrap,body.shiftnav-lock.shiftnav-open{overflow:hidden}.shiftnav .shiftnav-panel-close,.shiftnav-toggle-burger{border:none;font-size:inherit;color:inherit}.shiftnav,.shiftnav *,.shiftnav-toggle,.shiftnav-toggle *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;line-height:1.3em;-webkit-tap-highlight-color:transparent;padding:0;margin:0;background:none}.shiftnav-wrap{padding:0;margin:0;background:0 0;position:relative;max-width:100%}body.shiftnav-lock-x.shiftnav-enabled{overflow-x:hidden}body.shiftnav-transition{overflow:visible}.shiftnav,.shiftnav-inner{height:100%;overflow-y:auto;overflow-x:hidden}#shiftnav-toggle-main,.shiftnav,.shiftnav-wrap{-webkit-transition:-webkit-transform .5s;-moz-transition:-moz-transform .5s;-ms-transition:-ms-transform .5s;-o-transition:-o-transform .5s;transition:transform .5s}.shiftnav .fa,.shiftnav-toggle .fa{font-family:FontAwesome;font-weight:400}.shiftnav-toggle{cursor:pointer}#shiftnav-toggle-main{position:fixed;top:0;left:0;width:100%;max-width:100%;box-sizing:border-box;padding:0 10px;z-index:500000;text-align:center;background:#1D1D20;color:#eee}#shiftnav-toggle-main.shiftnav-toggle-position-absolute{position:absolute}#shiftnav-toggle-main.shiftnav-toggle-main-align-left{text-align:left}#shiftnav-toggle-main.shiftnav-toggle-main-align-right{text-align:right}#shiftnav-toggle-main a{color:inherit;text-decoration:none}#shiftnav-toggle-main .shiftnav-main-toggle-content-after>*,#shiftnav-toggle-main .shiftnav-main-toggle-content-before>*{position:relative;z-index:20}#shiftnav-toggle-main .shiftnav-main-toggle-content-before{float:left}#shiftnav-toggle-main .shiftnav-main-toggle-content-after{float:right}#shiftnav-toggle-main .shiftnav-main-toggle-content{padding:16px 40px}#shiftnav-toggle-main.shiftnav-toggle-main-align-center .shiftnav-main-toggle-content{width:100%;box-sizing:border-box;position:absolute;left:0}#shiftnav-toggle-main.shiftnav-togglebar-transparent{background:0 0}.shiftnav-toggle-main-block{padding:16px 20px;display:inline-block;line-height:1em}.shiftnav-toggle-main-ontop{position:relative;z-index:20}#shiftnav-toggle-main.shiftnav-toggle-edge-right{left:auto;right:0}#shiftnav-toggle-main.shiftnav-toggle-style-burger_only{width:auto;padding:0;margin:0}#shiftnav-toggle-main.shiftnav-toggle-style-burger_only .shiftnav-toggle-burger{margin:0}.shiftnav-toggle-style-burger_only .shiftnav-toggle-burger{font-size:24px}#shiftnav-toggle-main .shiftnav-toggle-burger,#shiftnav-toggle-main.shiftnav-toggle-main-entire-bar:before{float:left;content:'\f0c9';font-family:FontAwesome;padding:16px 20px;margin-left:-10px;position:relative;z-index:20;line-height:1em}.shiftnav-open #shiftnav-toggle-main.shiftnav-toggle-icon-x .shiftnav-toggle-burger .fa:before,.shiftnav-open #shiftnav-toggle-main.shiftnav-toggle-main-entire-bar.shiftnav-toggle-icon-x:before{content:'\f00d'}#shiftnav-toggle-main.shiftnav-toggle-edge-right .shiftnav-toggle-burger,#shiftnav-toggle-main.shiftnav-toggle-edge-right.shiftnav-toggle-main-entire-bar:before,.shiftnav-open-right #shiftnav-toggle-main.shiftnav-toggle-main-entire-bar:before{float:right;padding-left:20px}.shiftnav-open-left #shiftnav-toggle-main.shiftnav-toggle-edge-right .shiftnav-toggle-burger .fa:before,.shiftnav-open-left #shiftnav-toggle-main.shiftnav-toggle-edge-right:before{float:left;padding-left:0;padding-right:20px}.shiftnav-force #shiftnav-toggle-main{display:block!important}.shiftnav-toggle-style-default{background:#333;color:#eee;padding:10px}.shiftnav-toggle-style-default:hover{background:#222;color:#ddd}.shiftnav-toggle-style-default .fa{margin-right:5px}.shiftnav-toggle-button{display:inline-block;padding:10px 15px;background:#444;color:#eee}.shiftnav-toggle-button:hover{display:inline-block;padding:10px 15px;background:#222;color:#eee}.shiftnav-toggle-button .fa{margin-right:3px}.shiftnav-fixed-left,.shiftnav-fixed-right{position:fixed;top:0;z-index:9999999;-webkit-transition:-webkit-transform .5s;-moz-transition:-moz-transform .5s;-ms-transition:-ms-transform .5s;-o-transition:-o-transform .5s;transition:transform .5s}.shiftnav-fixed-right{right:0}.shiftnav-fixed-left{left:0}.admin-bar .shiftnav-fixed-left,.admin-bar .shiftnav-fixed-right{top:32px}@media screen and (max-width:782px){.admin-bar .shiftnav-fixed-left,.admin-bar .shiftnav-fixed-right{top:46px}}.shiftnav-open .shiftnav-toggle .shiftnav-icon-toggler:before,.shiftnav-open-left .shiftnav-toggle .shiftnav-icon-toggler-left:before,.shiftnav-open-right .shiftnav-toggle .shiftnav-icon-toggler-right:before{content:"\f00d"}.shiftnav-open.shiftnav-open-left #shiftnav-toggle-main,.shiftnav-open.shiftnav-open-left .shiftnav-wrap,.shiftnav-open.shiftnav-open-left>.shiftnav-fixed-left{-webkit-transform:translateX(290px);-moz-transform:translateX(290px);-ms-transform:translateX(290px);-o-transform:translateX(290px);transform:translateX(290px)}.shiftnav-open.shiftnav-open-right #shiftnav-toggle-main,.shiftnav-open.shiftnav-open-right .shiftnav-wrap,.shiftnav-open.shiftnav-open-right>.shiftnav-fixed-right{-webkit-transform:translateX(-290px);-moz-transform:translateX(-290px);-ms-transform:translateX(-290px);-o-transform:translateX(-290px);transform:translateX(-290px)}body.admin-bar #shiftnav-toggle-main,body.admin-bar .shiftnav{top:32px}body.admin-bar .shiftnav{padding-bottom:32px}#wpadminbar:hover{z-index:999999}@media screen and (min-width:600px) and (max-width:782px){body.admin-bar #shiftnav-toggle-main,body.admin-bar .shiftnav{top:46px}body.admin-bar .shiftnav{padding-bottom:46px}}@media screen and (max-width:600px){body.admin-bar #shiftnav-toggle-main,body.admin-bar .shiftnav{top:0}body.admin-bar .shiftnav{padding-bottom:0}html #shiftnav-toggle-main~#wpadminbar{top:54px}html.shiftnav-nogap{margin-top:0!important}}.shiftnav-wrap{left:0;top:0;z-index:250;padding-top:1px;margin-top:-1px}.shiftnav-open .shiftnav-wrap{height:100%}.shiftnav:after{content:' ';display:block;position:absolute;right:-15px;top:0;height:100%;width:15px;background:0 0;-webkit-box-shadow:0 0 15px rgba(0,0,0,.8);-moz-box-shadow:0 0 15px rgba(0,0,0,.8);-ms-box-shadow:0 0 15px rgba(0,0,0,.8);-o-box-shadow:0 0 15px rgba(0,0,0,.8);box-shadow:0 0 15px rgba(0,0,0,.8);z-index:10000}.shiftnav,.shiftnav-no-transforms .shiftnav{width:290px}.shiftnav.shiftnav-right-edge:after{left:-15px;right:auto}.shiftnav-no-transforms .shiftnav:after{display:none!important}.shiftnav.shiftnav-nojs{display:none}.shiftnav{position:fixed;top:0;background:#fff;z-index:600000;visibility:hidden;opacity:0}.shiftnav-open .shiftnav,.shiftnav-transitioning .shiftnav{visibility:visible;opacity:1}.shiftnav-inner{-webkit-overflow-scrolling:touch}.shiftnav.shiftnav-left-edge{left:0;-webkit-transform:translateX(-290px);-moz-transform:translateX(-290px);-ms-transform:translateX(-290px);-o-transform:translateX(-290px);transform:translateX(-290px)}.shiftnav.shiftnav-right-edge{right:0;-webkit-transform:translateX(290px);-moz-transform:translateX(290px);-ms-transform:translateX(290px);-o-transform:translateX(290px);transform:translateX(290px)}.shiftnav-target:focus{outline-offset:-2px}.shiftnav-open .shiftnav.shiftnav-open-target{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}.shiftnav-no-transforms .shiftnav.shiftnav-left-edge{left:-290px}.shiftnav-no-transforms.shiftnav-open .shiftnav.shiftnav-open-target.shiftnav-left-edge{left:0}.shiftnav-no-transforms .shiftnav.shiftnav-right-edge{left:auto;right:-290px}.shiftnav-no-transforms.shiftnav-open .shiftnav.shiftnav-open-target.shiftnav-right-edge{right:0}.shiftnav-no-transforms #shiftnav-toggle-main,.shiftnav-no-transforms .shiftnav{-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none}.shiftnav-no-transforms.shiftnav-open-left #shiftnav-toggle-main{left:290px}.shiftnav-no-transforms.shiftnav-open-right #shiftnav-toggle-main{left:auto;right:290px}.shiftnav-no-transforms #shiftnav-toggle-main,.shiftnav-no-transforms .shiftnav-wrap{-webkit-transform:none!important;-moz-transform:none!important;-ms-transform:none!important;-o-transform:none!important;transform:none!important}.shiftnav-no-transforms .shiftnav-inner{padding-top:30px}.shiftnav .shiftnav-panel-close{display:block;position:absolute;right:0;padding:15px 20px;background:rgba(0,0,0,.2);z-index:20;cursor:pointer}.shiftnav .shiftnav-menu-title{font-size:30px;text-align:center;padding:40px 25px;font-weight:400;margin:0;color:inherit}.shiftnav-menu-title a,.shiftnav-menu-title a:hover,.shiftnav-menu-title a:visited{color:inherit;text-decoration:none}.shiftnav .shiftnav-menu-image-padded{padding:25px}.shiftnav .shiftnav-menu-image a{display:block}.shiftnav .shiftnav-menu-image img{max-width:100%;height:auto}.shiftnav .shiftnav-nav,.shiftnav ul.shiftnav-menu,.shiftnav ul.shiftnav-menu ul.sub-menu{position:static;display:block;top:auto;left:auto;float:none;min-width:0}.shiftnav ul.shiftnav-menu{position:relative;clear:both;overflow:hidden}.shiftnav ul.shiftnav-menu,.shiftnav ul.shiftnav-menu ul.sub-menu{list-style:none;margin:0;padding:0}.shiftnav ul.shiftnav-menu li.menu-item{position:relative;margin:0;padding:0;background:none;list-style-type:none}.shiftnav ul.shiftnav-menu li.menu-item>.shiftnav-target,.shiftnav ul.shiftnav-menu li.shiftnav-retract>.shiftnav-target{display:block;padding:15px 25px;line-height:1.6em;text-decoration:none;position:relative;cursor:pointer;-webkit-transition:.2s all ease;-moz-transition:.2s all ease;-ms-transition:.2s all ease;-o-transition:.2s all ease;transition:.2s all ease}.shiftnav ul.shiftnav-menu li.menu-item.shiftnav-has-icon>.shiftnav-target>i.shiftnav-icon{margin-right:.8em;font-size:150%;vertical-align:middle;line-height:inherit;width:1.2em;text-align:center}.shiftnav ul.shiftnav-menu li.menu-item.shiftnav-has-icon>.shiftnav-target>i.shiftnav-icon:before{vertical-align:top}.shiftnav ul.shiftnav-menu li.menu-item.shiftnav-has-icon>.shiftnav-target>span.shiftnav-target-text{vertical-align:middle;display:inline-block;line-height:inherit}.shiftnav ul.shiftnav-menu li.shiftnav-retract,.shiftnav ul.shiftnav-menu li.shiftnav-sub-shift li.shiftnav-active~li.shiftnav-retract{display:none;margin:0}.shiftnav ul.shiftnav-menu li.shiftnav-sub-shift>.sub-menu.shiftnav-sub-active-current>li.shiftnav-retract{display:block}.shiftnav ul.shiftnav-menu.shiftnav-targets-medium li.menu-item>.shiftnav-target{padding-top:10px!important;padding-bottom:10px!important}.shiftnav ul.shiftnav-menu.shiftnav-targets-large li.menu-item>.shiftnav-target{padding-top:16px!important;padding-bottom:16px!important}.shiftnav ul.shiftnav-menu.shiftnav-targets-enormous li.menu-item>.shiftnav-target{padding-top:24px!important;padding-bottom:24px!important}.shiftnav ul.shiftnav-menu.shiftnav-targets-text-small li.menu-item>.shiftnav-target{font-size:12px!important}.shiftnav ul.shiftnav-menu.shiftnav-targets-text-medium li.menu-item>.shiftnav-target{font-size:14px!important}.shiftnav ul.shiftnav-menu.shiftnav-targets-text-large li.menu-item>.shiftnav-target{font-size:16px!important}.shiftnav ul.shiftnav-menu.shiftnav-targets-text-enormous li.menu-item>.shiftnav-target{font-size:22px!important}.shiftnav ul.shiftnav-menu.shiftnav-targets-icon-small li.menu-item>.shiftnav-target>i.shiftnav-icon{font-size:100%!important}.shiftnav ul.shiftnav-menu.shiftnav-targets-icon-medium li.menu-item>.shiftnav-target>i.shiftnav-icon{font-size:140%!important}.shiftnav ul.shiftnav-menu.shiftnav-targets-icon-large li.menu-item>.shiftnav-target>i.shiftnav-icon{font-size:180%!important}.shiftnav ul.shiftnav-menu.shiftnav-targets-icon-large li.menu-item.shiftnav-has-icon>.shiftnav-target>i.shiftnav-icon:before{vertical-align:middle}.shiftnav ul.shiftnav-menu.shiftnav-targets-icon-enormous li.menu-item>.shiftnav-target>i.shiftnav-icon{font-size:250%!important}.shiftnav ul.shiftnav-menu.shiftnav-targets-icon-enormous li.menu-item.shiftnav-has-icon>.shiftnav-target>i.shiftnav-icon:before{vertical-align:middle}.shiftnav ul.shiftnav-menu.shiftnav-indent-subs li.shiftnav-sub-always ul.sub-menu li.menu-item>a{padding-left:50px}.shiftnav ul.shiftnav-menu.shiftnav-indent-subs li.shiftnav-sub-always ul.sub-menu ul.sub-menu li.menu-item>a{padding-left:75px}.shiftnav ul.shiftnav-menu.shiftnav-indent-subs li.shiftnav-sub-always ul.sub-menu ul.sub-menu ul.sub-menu li.menu-item>a{padding-left:100px}@media only screen and (max-width:960px){#shiftnav-toggle-main{font-size:16px}}@media only screen and (max-width:479px){.shiftnav{width:320px;max-width:95%}.shiftnav.shiftnav-left-edge{-webkit-transform:translateX(-320px);-moz-transform:translateX(-320px);-ms-transform:translateX(-320px);-o-transform:translateX(-320px);transform:translateX(-320px)}.shiftnav-open.shiftnav-open-left #shiftnav-toggle-main,.shiftnav-open.shiftnav-open-left .shiftnav-fixed-left,.shiftnav-open.shiftnav-open-left .shiftnav-wrap,.shiftnav.shiftnav-right-edge{-webkit-transform:translateX(320px);-moz-transform:translateX(320px);-ms-transform:translateX(320px);-o-transform:translateX(320px);transform:translateX(320px)}.shiftnav-open.shiftnav-open-right #shiftnav-toggle-main,.shiftnav-open.shiftnav-open-right .shiftnav-fixed-right,.shiftnav-open.shiftnav-open-right .shiftnav-wrap{-webkit-transform:translateX(-320px);-moz-transform:translateX(-320px);-ms-transform:translateX(-320px);-o-transform:translateX(-320px);transform:translateX(-320px)}.shiftnav .shiftnav-menu-title{font-size:30px;text-align:center;padding:20px 0;font-weight:400;margin:0}}@media only screen and (max-width:374px){.shiftnav{width:305px;max-width:95%}.shiftnav.shiftnav-left-edge{-webkit-transform:translateX(-305px);-moz-transform:translateX(-305px);-ms-transform:translateX(-305px);-o-transform:translateX(-305px);transform:translateX(-305px)}.shiftnav-open.shiftnav-open-left #shiftnav-toggle-main,.shiftnav-open.shiftnav-open-left .shiftnav-fixed-left,.shiftnav-open.shiftnav-open-left .shiftnav-wrap,.shiftnav.shiftnav-right-edge{-webkit-transform:translateX(305px);-moz-transform:translateX(305px);-ms-transform:translateX(305px);-o-transform:translateX(305px);transform:translateX(305px)}.shiftnav-open.shiftnav-open-right #shiftnav-toggle-main,.shiftnav-open.shiftnav-open-right .shiftnav-fixed-right,.shiftnav-open.shiftnav-open-right .shiftnav-wrap{-webkit-transform:translateX(-305px);-moz-transform:translateX(-305px);-ms-transform:translateX(-305px);-o-transform:translateX(-305px);transform:translateX(-305px)}}@media only screen and (max-width:359px){.shiftnav{width:265px;max-width:95%}.shiftnav.shiftnav-left-edge{-webkit-transform:translateX(-265px);-moz-transform:translateX(-265px);-ms-transform:translateX(-265px);-o-transform:translateX(-265px);transform:translateX(-265px)}.shiftnav-open.shiftnav-open-left #shiftnav-toggle-main,.shiftnav-open.shiftnav-open-left .shiftnav-fixed-left,.shiftnav-open.shiftnav-open-left .shiftnav-wrap,.shiftnav.shiftnav-right-edge{-webkit-transform:translateX(265px);-moz-transform:translateX(265px);-ms-transform:translateX(265px);-o-transform:translateX(265px);transform:translateX(265px)}.shiftnav-open.shiftnav-open-right #shiftnav-toggle-main,.shiftnav-open.shiftnav-open-right .shiftnav-fixed-right,.shiftnav-open.shiftnav-open-right .shiftnav-wrap{-webkit-transform:translateX(-265px);-moz-transform:translateX(-265px);-ms-transform:translateX(-265px);-o-transform:translateX(-265px);transform:translateX(-265px)}}@media only screen and (max-width:319px){.shiftnav{width:230px;max-width:95%}.shiftnav.shiftnav-left-edge{-webkit-transform:translateX(-230px);-moz-transform:translateX(-230px);-ms-transform:translateX(-230px);-o-transform:translateX(-230px);transform:translateX(-230px)}.shiftnav-open.shiftnav-open-left #shiftnav-toggle-main,.shiftnav-open.shiftnav-open-left .shiftnav-fixed-left,.shiftnav-open.shiftnav-open-left .shiftnav-wrap,.shiftnav.shiftnav-right-edge{-webkit-transform:translateX(230px);-moz-transform:translateX(230px);-ms-transform:translateX(230px);-o-transform:translateX(230px);transform:translateX(230px)}.shiftnav-open.shiftnav-open-right #shiftnav-toggle-main,.shiftnav-open.shiftnav-open-right .shiftnav-fixed-right,.shiftnav-open.shiftnav-open-right .shiftnav-wrap{-webkit-transform:translateX(-230px);-moz-transform:translateX(-230px);-ms-transform:translateX(-230px);-o-transform:translateX(-230px);transform:translateX(-230px)}}.shiftnav-content-wrap{padding:25px}.shiftnav-content-wrap-small{padding:10px}.shiftnav-admin-tip{background:#eee;color:#333;padding:20px;border-left:4px solid #E6D244;margin:10px}.shiftnav-admin-tip a,.shiftnav-admin-tip a:visited{color:#00A3FF;text-decoration:underline}.shiftnav-admin-tip a:hover{color:#0D75AF}.shiftnav-admin-tip strong{color:tomato}.shiftnav-loading{display:block;position:fixed;bottom:0;right:20px;background:#35AC6A;color:#fff;padding:15px;max-width:400px}.shiftnav-loading h5{color:#fff;font-weight:700;margin:0}.shiftnav-loading:hover h5{padding-bottom:5px;border-bottom:1px solid #fff}.shiftnav-loading .shiftnav-loading-message{color:#fff;max-height:0;overflow:hidden;visibility:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .3s ease-in;transition:all .3s ease-in}.shiftnav-loading:hover .shiftnav-loading-message{visibility:visible;max-height:1000px;overflow:auto}.shiftnav-loading .shiftnav-loading-message p{color:#fff;margin:10px 0}.ie7 .shiftnav,.ie7 .shiftnav-toggle,.ie8 .shiftnav,.ie8 .shiftnav-toggle,.lt-ie9 .shiftnav,.lt-ie9 .shiftnav-toggle{display:none!important}.shiftnav-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.shiftnav-sr-only-focusable:active,.shiftnav-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.shiftnav .shiftnav-sr-close{background:#fff;color:#222;width:100%;padding:15px;text-align:center;font-size:16px}.rtl .shiftnav li.menu-item{text-align:right}.rtl .shiftnav li.menu-item .shiftnav-submenu-activation{right:auto;left:0;-webkit-transform:translateX(0);transform:translateX(0)}.rtl .shiftnav ul.shiftnav-menu li.menu-item.shiftnav-sub-shift.shiftnav-active>.shiftnav-submenu-activation,.rtl .shiftnav ul.shiftnav-menu li.menu-item.shiftnav-sub-shift.shiftnav-in-transition>.shiftnav-submenu-activation{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.rtl .shiftnav li.menu-item.shiftnav-sub-shift>.shiftnav-submenu-activation i:before{content:"\f053"}.rtl .shiftnav ul.shiftnav-menu li.menu-item.shiftnav-has-icon>.shiftnav-target>i.shiftnav-icon{margin-right:0;margin-left:.8em}.rtl .shiftnav ul.shiftnav-menu li.shiftnav-retract>.shiftnav-target i:before{content:"\f054"}.rtl .shiftnav-search input.shiftnav-search-input{padding:14px 25px 14px 50px}.rtl .shiftnav-searchbar-drop .shiftnav-search-input{padding:24px 24px 24px 50px}.rtl .shiftnav-search .shiftnav-search-submit,.rtl .shiftnav-searchbar-drop .shiftnav-search-submit{left:0;right:auto}
|
1 |
+
.shiftnav,.shiftnav *,.shiftnav-toggle,.shiftnav-toggle *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;line-height:1.3em;-webkit-tap-highlight-color:transparent;padding:0;margin:0;background:none transparent}.shiftnav-wrap{padding:0;margin:0;background:0 0;position:relative;max-width:100%;overflow:hidden}body.shiftnav-lock-x.shiftnav-enabled{overflow-x:hidden}body.shiftnav-lock.shiftnav-open{overflow:hidden}body.shiftnav-transition{overflow:visible}#shiftnav-toggle-main,.shiftnav,.shiftnav-wrap{-webkit-transition:-webkit-transform .5s;-moz-transition:-moz-transform .5s;-ms-transition:-ms-transform .5s;-o-transition:-o-transform .5s;transition:transform .5s}.shiftnav .fa,.shiftnav-toggle .fa{font-family:FontAwesome;font-weight:400}.shiftnav-toggle{cursor:pointer}.shiftnav-toggle-burger{color:inherit;font-size:inherit;border:none}#shiftnav-toggle-main{position:fixed;top:0;left:0;width:100%;max-width:100%;box-sizing:border-box;padding:0 10px;z-index:500000;text-align:center}#shiftnav-toggle-main.shiftnav-toggle-position-absolute{position:absolute}#shiftnav-toggle-main.shiftnav-toggle-main-align-left{text-align:left}#shiftnav-toggle-main.shiftnav-toggle-main-align-right{text-align:right}#shiftnav-toggle-main{background:#1d1d20;color:#eee}#shiftnav-toggle-main a{color:inherit;text-decoration:none}#shiftnav-toggle-main .shiftnav-main-toggle-content-after>*,#shiftnav-toggle-main .shiftnav-main-toggle-content-before>*{position:relative;z-index:20}#shiftnav-toggle-main .shiftnav-main-toggle-content-before{float:left}#shiftnav-toggle-main .shiftnav-main-toggle-content-after{float:right}#shiftnav-toggle-main .shiftnav-main-toggle-content{padding:16px 40px}#shiftnav-toggle-main.shiftnav-toggle-main-align-center .shiftnav-main-toggle-content{width:100%;box-sizing:border-box;position:absolute;left:0}#shiftnav-toggle-main.shiftnav-togglebar-transparent{background:0 0}.shiftnav-toggle-main-block{padding:16px 20px;display:inline-block;line-height:1em}.shiftnav-toggle-main-ontop{position:relative;z-index:20}#shiftnav-toggle-main.shiftnav-toggle-edge-right{left:auto;right:0}#shiftnav-toggle-main.shiftnav-toggle-style-burger_only{width:auto;padding:0;margin:0}#shiftnav-toggle-main.shiftnav-toggle-style-burger_only .shiftnav-toggle-burger{margin:0}.shiftnav-toggle-style-burger_only .shiftnav-toggle-burger{font-size:24px}#shiftnav-toggle-main .shiftnav-toggle-burger,#shiftnav-toggle-main.shiftnav-toggle-main-entire-bar:before{float:left;content:'\f0c9';font-family:FontAwesome;padding:16px 20px;margin-left:-10px;position:relative;z-index:20;line-height:1em}.shiftnav-open #shiftnav-toggle-main.shiftnav-toggle-icon-x .shiftnav-toggle-burger .fa:before,.shiftnav-open #shiftnav-toggle-main.shiftnav-toggle-main-entire-bar.shiftnav-toggle-icon-x:before{content:'\f00d'}#shiftnav-toggle-main.shiftnav-toggle-edge-right .shiftnav-toggle-burger,#shiftnav-toggle-main.shiftnav-toggle-edge-right.shiftnav-toggle-main-entire-bar:before,.shiftnav-open-right #shiftnav-toggle-main.shiftnav-toggle-main-entire-bar:before{float:right;padding-left:20px}.shiftnav-open-left #shiftnav-toggle-main.shiftnav-toggle-edge-right .shiftnav-toggle-burger .fa:before,.shiftnav-open-left #shiftnav-toggle-main.shiftnav-toggle-edge-right:before{float:left;padding-left:0;padding-right:20px}.shiftnav-force #shiftnav-toggle-main{display:block!important}.shiftnav-toggle-style-default{background:#333;color:#eee;padding:10px}.shiftnav-toggle-style-default:hover{background:#222;color:#ddd}.shiftnav-toggle-style-default .fa{margin-right:5px}.shiftnav-toggle-button{display:inline-block;padding:10px 15px;background:#444;color:#eee}.shiftnav-toggle-button:hover{display:inline-block;padding:10px 15px;background:#222;color:#eee}.shiftnav-toggle-button .fa{margin-right:3px}.shiftnav-fixed-left,.shiftnav-fixed-right{position:fixed;top:0;z-index:9999999;-webkit-transition:-webkit-transform .5s;-moz-transition:-moz-transform .5s;-ms-transition:-ms-transform .5s;-o-transition:-o-transform .5s;transition:transform .5s}.shiftnav-fixed-right{right:0}.shiftnav-fixed-left{left:0}.admin-bar .shiftnav-fixed-left,.admin-bar .shiftnav-fixed-right{top:32px}@media screen and (max-width:782px){.admin-bar .shiftnav-fixed-left,.admin-bar .shiftnav-fixed-right{top:46px}}.shiftnav-open .shiftnav-toggle .shiftnav-icon-toggler:before,.shiftnav-open-left .shiftnav-toggle .shiftnav-icon-toggler-left:before,.shiftnav-open-right .shiftnav-toggle .shiftnav-icon-toggler-right:before{content:"\f00d"}.shiftnav-open.shiftnav-open-left #shiftnav-toggle-main,.shiftnav-open.shiftnav-open-left .shiftnav-wrap,.shiftnav-open.shiftnav-open-left>.shiftnav-fixed-left{-webkit-transform:translateX(290px);-moz-transform:translateX(290px);-ms-transform:translateX(290px);-o-transform:translateX(290px);transform:translateX(290px)}.shiftnav-open.shiftnav-open-right #shiftnav-toggle-main,.shiftnav-open.shiftnav-open-right .shiftnav-wrap,.shiftnav-open.shiftnav-open-right>.shiftnav-fixed-right{-webkit-transform:translateX(-290px);-moz-transform:translateX(-290px);-ms-transform:translateX(-290px);-o-transform:translateX(-290px);transform:translateX(-290px)}body.admin-bar #shiftnav-toggle-main,body.admin-bar .shiftnav{top:32px}body.admin-bar .shiftnav{padding-bottom:32px}#wpadminbar:hover{z-index:999999}@media screen and (min-width:600px) and (max-width:782px){body.admin-bar #shiftnav-toggle-main,body.admin-bar .shiftnav{top:46px}body.admin-bar .shiftnav{padding-bottom:46px}}@media screen and (max-width:600px){body.admin-bar #shiftnav-toggle-main,body.admin-bar .shiftnav{top:0}body.admin-bar .shiftnav{padding-bottom:0}html #shiftnav-toggle-main~#wpadminbar{top:54px}html.shiftnav-nogap{margin-top:0!important}}.shiftnav-wrap{left:0;top:0;z-index:250;padding-top:1px;margin-top:-1px}.shiftnav-open .shiftnav-wrap{height:100%}.shiftnav:after{content:' ';display:block;position:absolute;right:-15px;top:0;height:100%;width:15px;background:0 0;-webkit-box-shadow:0 0 15px rgba(0,0,0,.8);-moz-box-shadow:0 0 15px rgba(0,0,0,.8);-ms-box-shadow:0 0 15px rgba(0,0,0,.8);-o-box-shadow:0 0 15px rgba(0,0,0,.8);box-shadow:0 0 15px rgba(0,0,0,.8);z-index:10000}.shiftnav.shiftnav-right-edge:after{left:-15px;right:auto}.shiftnav-no-transforms .shiftnav:after{display:none!important}.shiftnav.shiftnav-nojs{display:none}.shiftnav{position:fixed;top:0;width:290px;height:100%;background:#fff;z-index:600000;overflow:hidden;visibility:hidden;opacity:0;overscroll-behavior:contain}.shiftnav-open .shiftnav,.shiftnav-transitioning .shiftnav{visibility:visible;opacity:1}.shiftnav-inner{-webkit-overflow-scrolling:touch;height:100%;overflow-y:auto;overflow-x:hidden}.shiftnav.shiftnav-left-edge{left:0}.shiftnav.shiftnav-right-edge{right:0}.shiftnav-target:focus{outline-offset:-2px}.shiftnav.shiftnav-left-edge{-webkit-transform:translateX(-290px);-moz-transform:translateX(-290px);-ms-transform:translateX(-290px);-o-transform:translateX(-290px);transform:translateX(-290px)}.shiftnav.shiftnav-right-edge{-webkit-transform:translateX(290px);-moz-transform:translateX(290px);-ms-transform:translateX(290px);-o-transform:translateX(290px);transform:translateX(290px)}.shiftnav-open .shiftnav.shiftnav-open-target{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}.shiftnav-no-transforms .shiftnav{width:290px}.shiftnav-no-transforms .shiftnav.shiftnav-left-edge{left:-290px}.shiftnav-no-transforms.shiftnav-open .shiftnav.shiftnav-open-target.shiftnav-left-edge{left:0}.shiftnav-no-transforms .shiftnav.shiftnav-right-edge{left:auto;right:-290px}.shiftnav-no-transforms.shiftnav-open .shiftnav.shiftnav-open-target.shiftnav-right-edge{right:0}.shiftnav-no-transforms #shiftnav-toggle-main,.shiftnav-no-transforms .shiftnav{-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none}.shiftnav-no-transforms.shiftnav-open-left #shiftnav-toggle-main{left:290px}.shiftnav-no-transforms.shiftnav-open-right #shiftnav-toggle-main{left:auto;right:290px}.shiftnav-no-transforms #shiftnav-toggle-main,.shiftnav-no-transforms .shiftnav-wrap{-webkit-transform:none!important;-moz-transform:none!important;-ms-transform:none!important;-o-transform:none!important;transform:none!important}.shiftnav-no-transforms .shiftnav-inner{padding-top:30px}.shiftnav .shiftnav-panel-close{display:block;position:absolute;right:0;padding:15px 20px;background:rgba(0,0,0,.2);z-index:20;cursor:pointer;border:none;color:inherit;font-size:inherit}.shiftnav .shiftnav-menu-title{font-size:30px;text-align:center;padding:40px 25px;font-weight:400;margin:0;color:inherit}.shiftnav-menu-title a,.shiftnav-menu-title a:hover,.shiftnav-menu-title a:visited{color:inherit;text-decoration:none}.shiftnav .shiftnav-menu-image-padded{padding:25px}.shiftnav .shiftnav-menu-image a{display:block}.shiftnav .shiftnav-menu-image img{max-width:100%;height:auto}.shiftnav .shiftnav-nav,.shiftnav ul.shiftnav-menu,.shiftnav ul.shiftnav-menu ul.sub-menu{position:static;display:block;top:auto;left:auto;float:none;min-width:0}.shiftnav nav.shiftnav-nav{position:relative;z-index:10}.shiftnav ul.shiftnav-menu{position:relative;clear:both;overflow:hidden}.shiftnav ul.shiftnav-menu,.shiftnav ul.shiftnav-menu ul.sub-menu{list-style:none;margin:0;padding:0}.shiftnav ul.shiftnav-menu li.menu-item{position:relative;margin:0;padding:0;background:none transparent;list-style-type:none}.shiftnav ul.shiftnav-menu li.menu-item>.shiftnav-target,.shiftnav ul.shiftnav-menu li.shiftnav-retract>.shiftnav-target{display:block;padding:15px 25px;line-height:1.6em;text-decoration:none;position:relative;cursor:pointer;-webkit-transition:.2s all ease;-moz-transition:.2s all ease;-ms-transition:.2s all ease;-o-transition:.2s all ease;transition:.2s all ease}.shiftnav ul.shiftnav-menu li.menu-item.shiftnav-has-icon>.shiftnav-target>i.shiftnav-icon{margin-right:.8em;font-size:150%;vertical-align:middle;line-height:inherit;width:1.2em;text-align:center}.shiftnav ul.shiftnav-menu li.menu-item.shiftnav-has-icon>.shiftnav-target>i.shiftnav-icon:before{vertical-align:top}.shiftnav ul.shiftnav-menu li.menu-item.shiftnav-has-icon>.shiftnav-target>span.shiftnav-target-text{vertical-align:middle;display:inline-block;line-height:inherit}.shiftnav ul.shiftnav-menu li.shiftnav-retract,.shiftnav ul.shiftnav-menu li.shiftnav-sub-shift li.shiftnav-active~li.shiftnav-retract{display:none;margin:0}.shiftnav ul.shiftnav-menu li.shiftnav-sub-shift>.sub-menu.shiftnav-sub-active-current>li.shiftnav-retract{display:block}.shiftnav ul.shiftnav-menu.shiftnav-targets-medium li.menu-item>.shiftnav-target{padding-top:10px!important;padding-bottom:10px!important}.shiftnav ul.shiftnav-menu.shiftnav-targets-large li.menu-item>.shiftnav-target{padding-top:16px!important;padding-bottom:16px!important}.shiftnav ul.shiftnav-menu.shiftnav-targets-enormous li.menu-item>.shiftnav-target{padding-top:24px!important;padding-bottom:24px!important}.shiftnav ul.shiftnav-menu.shiftnav-targets-text-small li.menu-item>.shiftnav-target{font-size:12px!important}.shiftnav ul.shiftnav-menu.shiftnav-targets-text-medium li.menu-item>.shiftnav-target{font-size:14px!important}.shiftnav ul.shiftnav-menu.shiftnav-targets-text-large li.menu-item>.shiftnav-target{font-size:16px!important}.shiftnav ul.shiftnav-menu.shiftnav-targets-text-enormous li.menu-item>.shiftnav-target{font-size:22px!important}.shiftnav ul.shiftnav-menu.shiftnav-targets-icon-small li.menu-item>.shiftnav-target>i.shiftnav-icon{font-size:100%!important}.shiftnav ul.shiftnav-menu.shiftnav-targets-icon-medium li.menu-item>.shiftnav-target>i.shiftnav-icon{font-size:140%!important}.shiftnav ul.shiftnav-menu.shiftnav-targets-icon-large li.menu-item>.shiftnav-target>i.shiftnav-icon{font-size:180%!important}.shiftnav ul.shiftnav-menu.shiftnav-targets-icon-large li.menu-item.shiftnav-has-icon>.shiftnav-target>i.shiftnav-icon:before{vertical-align:middle}.shiftnav ul.shiftnav-menu.shiftnav-targets-icon-enormous li.menu-item>.shiftnav-target>i.shiftnav-icon{font-size:250%!important}.shiftnav ul.shiftnav-menu.shiftnav-targets-icon-enormous li.menu-item.shiftnav-has-icon>.shiftnav-target>i.shiftnav-icon:before{vertical-align:middle}.shiftnav ul.shiftnav-menu.shiftnav-indent-subs li.shiftnav-sub-always ul.sub-menu li.menu-item>a{padding-left:50px}.shiftnav ul.shiftnav-menu.shiftnav-indent-subs li.shiftnav-sub-always ul.sub-menu ul.sub-menu li.menu-item>a{padding-left:75px}.shiftnav ul.shiftnav-menu.shiftnav-indent-subs li.shiftnav-sub-always ul.sub-menu ul.sub-menu ul.sub-menu li.menu-item>a{padding-left:100px}@media only screen and (max-width:960px){#shiftnav-toggle-main{font-size:16px}}@media only screen and (max-width:479px){.shiftnav{width:320px;max-width:95%}.shiftnav.shiftnav-left-edge{-webkit-transform:translateX(-320px);-moz-transform:translateX(-320px);-ms-transform:translateX(-320px);-o-transform:translateX(-320px);transform:translateX(-320px)}.shiftnav.shiftnav-right-edge{-webkit-transform:translateX(320px);-moz-transform:translateX(320px);-ms-transform:translateX(320px);-o-transform:translateX(320px);transform:translateX(320px)}.shiftnav-open.shiftnav-open-left #shiftnav-toggle-main,.shiftnav-open.shiftnav-open-left .shiftnav-fixed-left,.shiftnav-open.shiftnav-open-left .shiftnav-wrap{-webkit-transform:translateX(320px);-moz-transform:translateX(320px);-ms-transform:translateX(320px);-o-transform:translateX(320px);transform:translateX(320px)}.shiftnav-open.shiftnav-open-right #shiftnav-toggle-main,.shiftnav-open.shiftnav-open-right .shiftnav-fixed-right,.shiftnav-open.shiftnav-open-right .shiftnav-wrap{-webkit-transform:translateX(-320px);-moz-transform:translateX(-320px);-ms-transform:translateX(-320px);-o-transform:translateX(-320px);transform:translateX(-320px)}.shiftnav .shiftnav-menu-title{font-size:30px;text-align:center;padding:20px 0;font-weight:400;margin:0}}@media only screen and (max-width:374px){.shiftnav{width:305px;max-width:95%}.shiftnav.shiftnav-left-edge{-webkit-transform:translateX(-305px);-moz-transform:translateX(-305px);-ms-transform:translateX(-305px);-o-transform:translateX(-305px);transform:translateX(-305px)}.shiftnav.shiftnav-right-edge{-webkit-transform:translateX(305px);-moz-transform:translateX(305px);-ms-transform:translateX(305px);-o-transform:translateX(305px);transform:translateX(305px)}.shiftnav-open.shiftnav-open-left #shiftnav-toggle-main,.shiftnav-open.shiftnav-open-left .shiftnav-fixed-left,.shiftnav-open.shiftnav-open-left .shiftnav-wrap{-webkit-transform:translateX(305px);-moz-transform:translateX(305px);-ms-transform:translateX(305px);-o-transform:translateX(305px);transform:translateX(305px)}.shiftnav-open.shiftnav-open-right #shiftnav-toggle-main,.shiftnav-open.shiftnav-open-right .shiftnav-fixed-right,.shiftnav-open.shiftnav-open-right .shiftnav-wrap{-webkit-transform:translateX(-305px);-moz-transform:translateX(-305px);-ms-transform:translateX(-305px);-o-transform:translateX(-305px);transform:translateX(-305px)}}@media only screen and (max-width:359px){.shiftnav{width:265px;max-width:95%}.shiftnav.shiftnav-left-edge{-webkit-transform:translateX(-265px);-moz-transform:translateX(-265px);-ms-transform:translateX(-265px);-o-transform:translateX(-265px);transform:translateX(-265px)}.shiftnav.shiftnav-right-edge{-webkit-transform:translateX(265px);-moz-transform:translateX(265px);-ms-transform:translateX(265px);-o-transform:translateX(265px);transform:translateX(265px)}.shiftnav-open.shiftnav-open-left #shiftnav-toggle-main,.shiftnav-open.shiftnav-open-left .shiftnav-fixed-left,.shiftnav-open.shiftnav-open-left .shiftnav-wrap{-webkit-transform:translateX(265px);-moz-transform:translateX(265px);-ms-transform:translateX(265px);-o-transform:translateX(265px);transform:translateX(265px)}.shiftnav-open.shiftnav-open-right #shiftnav-toggle-main,.shiftnav-open.shiftnav-open-right .shiftnav-fixed-right,.shiftnav-open.shiftnav-open-right .shiftnav-wrap{-webkit-transform:translateX(-265px);-moz-transform:translateX(-265px);-ms-transform:translateX(-265px);-o-transform:translateX(-265px);transform:translateX(-265px)}}@media only screen and (max-width:319px){.shiftnav{width:230px;max-width:95%}.shiftnav.shiftnav-left-edge{-webkit-transform:translateX(-230px);-moz-transform:translateX(-230px);-ms-transform:translateX(-230px);-o-transform:translateX(-230px);transform:translateX(-230px)}.shiftnav.shiftnav-right-edge{-webkit-transform:translateX(230px);-moz-transform:translateX(230px);-ms-transform:translateX(230px);-o-transform:translateX(230px);transform:translateX(230px)}.shiftnav-open.shiftnav-open-left #shiftnav-toggle-main,.shiftnav-open.shiftnav-open-left .shiftnav-fixed-left,.shiftnav-open.shiftnav-open-left .shiftnav-wrap{-webkit-transform:translateX(230px);-moz-transform:translateX(230px);-ms-transform:translateX(230px);-o-transform:translateX(230px);transform:translateX(230px)}.shiftnav-open.shiftnav-open-right #shiftnav-toggle-main,.shiftnav-open.shiftnav-open-right .shiftnav-fixed-right,.shiftnav-open.shiftnav-open-right .shiftnav-wrap{-webkit-transform:translateX(-230px);-moz-transform:translateX(-230px);-ms-transform:translateX(-230px);-o-transform:translateX(-230px);transform:translateX(-230px)}}.shiftnav-content-wrap{padding:25px}.shiftnav-content-wrap-small{padding:10px}.shiftnav-admin-tip{background:#eee;color:#333;padding:20px;border-left:4px solid #e6d244;margin:10px}.shiftnav-admin-tip a,.shiftnav-admin-tip a:visited{color:#00a3ff;text-decoration:underline}.shiftnav-admin-tip a:hover{color:#0d75af}.shiftnav-admin-tip strong{color:tomato}.shiftnav-loading{display:block;position:fixed;bottom:0;right:20px;background:#35ac6a;color:#fff;padding:15px;max-width:400px}.shiftnav-loading h5{color:#fff;font-weight:700;margin:0}.shiftnav-loading:hover h5{padding-bottom:5px;border-bottom:1px solid #fff}.shiftnav-loading .shiftnav-loading-message{color:#fff;max-height:0;overflow:hidden;visibility:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-transition:all .3s ease-in;transition:all .3s ease-in}.shiftnav-loading:hover .shiftnav-loading-message{visibility:visible;max-height:1000px;overflow:auto}.shiftnav-loading .shiftnav-loading-message p{color:#fff;margin:10px 0}.ie7 .shiftnav,.ie7 .shiftnav-toggle,.ie8 .shiftnav,.ie8 .shiftnav-toggle,.lt-ie9 .shiftnav,.lt-ie9 .shiftnav-toggle{display:none!important}.shiftnav-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.shiftnav-sr-only-focusable:active,.shiftnav-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.shiftnav .shiftnav-sr-close{background:#fff;color:#222;width:100%;padding:15px;text-align:center;font-size:16px}@media print{#shiftnav-toggle-main{position:absolute!important}}.rtl .shiftnav li.menu-item{text-align:right}.rtl .shiftnav li.menu-item .shiftnav-submenu-activation{right:auto;left:0;-webkit-transform:translateX(0);transform:translateX(0)}.rtl .shiftnav ul.shiftnav-menu li.menu-item.shiftnav-sub-shift.shiftnav-active>.shiftnav-submenu-activation,.rtl .shiftnav ul.shiftnav-menu li.menu-item.shiftnav-sub-shift.shiftnav-in-transition>.shiftnav-submenu-activation{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.rtl .shiftnav li.menu-item.shiftnav-sub-shift>.shiftnav-submenu-activation i:before{content:"\f053"}.rtl .shiftnav ul.shiftnav-menu li.menu-item.shiftnav-has-icon>.shiftnav-target>i.shiftnav-icon{margin-right:0;margin-left:.8em}.rtl .shiftnav ul.shiftnav-menu li.shiftnav-retract>.shiftnav-target i:before{content:"\f054"}.rtl .shiftnav-search input.shiftnav-search-input{padding:14px 25px 14px 50px}.rtl .shiftnav-searchbar-drop .shiftnav-search-input{padding:24px 24px 24px 50px}.rtl .shiftnav-search .shiftnav-search-submit,.rtl .shiftnav-searchbar-drop .shiftnav-search-submit{left:0;right:auto}
|
assets/js/shiftnav.js
CHANGED
@@ -25,7 +25,7 @@
|
|
25 |
timeout = setTimeout(delayed, threshold || 100);
|
26 |
};
|
27 |
}
|
28 |
-
jQuery.fn[sr] = function(fn){ return fn ? this.
|
29 |
|
30 |
})(jQuery,'shiftsmartresize');
|
31 |
|
@@ -972,11 +972,17 @@ var shift_supports = (function() {
|
|
972 |
// What direction are we scrolling?
|
973 |
var scrollTop = $(window).scrollTop();
|
974 |
var scrollDir = '';
|
|
|
975 |
if( scrollTop <= shiftnav_data.scroll_top_boundary ) scrollDir = 'top';
|
976 |
-
else if( scrollTop
|
977 |
-
else if( scrollTop
|
|
|
978 |
|
979 |
|
|
|
|
|
|
|
|
|
980 |
// Update classes, but only if we've actually changed direction
|
981 |
if( scrollDir !== prevScrollDir ){
|
982 |
$body.removeClass( 'shiftnav--scroll-top shiftnav--scroll-up shiftnav--scroll-down' );
|
25 |
timeout = setTimeout(delayed, threshold || 100);
|
26 |
};
|
27 |
}
|
28 |
+
jQuery.fn[sr] = function(fn){ return fn ? this.on('resize', debounce(fn)) : this.trigger(sr); };
|
29 |
|
30 |
})(jQuery,'shiftsmartresize');
|
31 |
|
972 |
// What direction are we scrolling?
|
973 |
var scrollTop = $(window).scrollTop();
|
974 |
var scrollDir = '';
|
975 |
+
var scrollTolerance = shiftnav_data.scroll_tolerance;
|
976 |
if( scrollTop <= shiftnav_data.scroll_top_boundary ) scrollDir = 'top';
|
977 |
+
else if( ( scrollTop - prevScrollTop ) > scrollTolerance ) scrollDir = 'down';
|
978 |
+
else if( ( prevScrollTop - scrollTop ) > scrollTolerance ) scrollDir = 'up';
|
979 |
+
else return; // Ignore, as we are within tolerances - explicitly not updating prevScroll dir and top
|
980 |
|
981 |
|
982 |
+
// else scrollDir = prevScrollDir; //if we moved within tolerances, keep the old direction
|
983 |
+
// console.log( prevScrollTop, scrollTop, prevScrollDir, scrollDir );
|
984 |
+
|
985 |
+
|
986 |
// Update classes, but only if we've actually changed direction
|
987 |
if( scrollDir !== prevScrollDir ){
|
988 |
$body.removeClass( 'shiftnav--scroll-top shiftnav--scroll-up shiftnav--scroll-down' );
|
assets/js/shiftnav.min.js
CHANGED
@@ -1,34 +1,34 @@
|
|
1 |
-
'use strict';(function(
|
2 |
-
var shift_supports=function(){var
|
3 |
-
(function(
|
4 |
-
this.touchMove="MSPointerMove"):(this.touchStart="touchstart",this.touchEnd="touchend",this.touchMove="touchmove");this.toggleevent="touchend"==this.touchEnd?this.touchEnd+" click":this.touchEnd;this.transitionend="transitionend.shiftnav webkitTransitionEnd.shiftnav msTransitionEnd.shiftnav oTransitionEnd.shiftnav";this.settings.clicktest&&(this.touchEnd="click");this.init()}var
|
5 |
-
scroll_offset:100,disable_transforms:!1,close_on_target_click:!1,process_uber_segments:!0};
|
6 |
-
d=this;if(!a.hasClass("shiftnav-enabled")){a.addClass("shiftnav-enabled");"on"==shiftnav_data.lock_body&&a.addClass("shiftnav-lock");"on"==shiftnav_data.lock_body_x&&a.addClass("shiftnav-lock-x");"off"!=shiftnav_data.shift_body?""!=shiftnav_data.shift_body_wrapper?
|
7 |
-
var c
|
8 |
-
e=g.getElementById("shiftnav-dynamic-css"),e||(e=g.createElement("style"),e.appendChild(g.createTextNode("")),g.head.appendChild(e)),(e=e.sheet)&&"insertRule"in e&&e.insertRule(
|
9 |
-
|
10 |
-
function(
|
11 |
-
this.openclass="shiftnav-open shiftnav-open-"+this.edge;this.$shiftnav.find(".shiftnav-panel-close").on("click",function(
|
12 |
-
d.settings.open_current&&
|
13 |
-
d.siblings().removeClass("current-menu-item").removeClass("current-menu-ancestor"),d.addClass("current-menu-item"),d=e.offset().top,d-=a.settings.scroll_offset,
|
14 |
-
a));"a"===
|
15 |
-
console.log("disableSubmenuToggleMouseEvents");$shiftnav.off("mouseover.shift-submenu-toggle");$shiftnav.off("mouseout.shift-submenu-toggle")},initializeSubmenuToggleKeyboardEvents:function(){this.settings.debug&&console.log("initializeSubmenuToggleKeyboardEvents");var a=this;this.$shiftnav.on("keyup.shift-submenu-toggle",".shiftnav-submenu-activation",function(d){if(13===d.keyCode){a.handleMouseActivation(d,this,a);var c
|
16 |
-
10)}})},initializeRetractors:function(){if(this.settings.retractors){var a=this;this.$shiftnav.on("mouseup.shiftnav",".shiftnav-retract",function(
|
17 |
-
function(
|
18 |
-
d.keyCode&&a.toggle(
|
19 |
-
|
20 |
-
function(){
|
21 |
-
this.$shiftnav.removeClass("shiftnav-open-target").on(a.transitionend,function(){
|
22 |
-
initializeTouchoffClose:function(){if(this.settings.touchOffClose){var a=this;
|
23 |
-
a.stopPropagation();a=
|
24 |
-
shiftnav_data.scroll_panel)return 0;if("undefined"==typeof a)return this.$shiftnav.find(".shiftnav-inner").scrollTop();this.$shiftnav.find(".shiftnav-inner").scrollTop(a)},openSubmenu:function(a,d,
|
25 |
-
a.parents("ul").removeClass("shiftnav-sub-active-current"),a.find("> ul").addClass("shiftnav-sub-active").addClass("shiftnav-sub-active-current"),setTimeout(function(){a.addClass("shiftnav-active");a.trigger("shiftnav-open-submenu");a.removeClass("shiftnav-caulk");setTimeout(function(){var
|
26 |
-
d+"]");a.hasClass("menu-item-has-children")&&a.hasClass("shiftnav-active")&&(a.addClass("shiftnav-in-transition"),a.each(function(){var
|
27 |
-
|
28 |
-
(d.removeClass("shiftnav-searchbar-drop-open"),
|
29 |
-
"plugin_shiftnav")||
|
30 |
-
(function(
|
31 |
-
!0:!1,close_on_target_click:"on"==shiftnav_data.close_on_target_click?!0:!1,process_uber_segments:"on"==shiftnav_data.process_uber_segments?!0:!1});if("."==window.location.hash.substring(1,2)&&(
|
32 |
-
|
33 |
-
break;case "down":
|
34 |
-
b(window).on("load",function(){
|
1 |
+
'use strict';(function(c,h){var g=function(l,p,q){var a;return function(){var d=this,b=arguments;a?clearTimeout(a):q&&l.apply(d,b);a=setTimeout(function(){q||l.apply(d,b);a=null},p||100)}};jQuery.fn[h]=function(l){return l?this.on("resize",g(l)):this.trigger(h)}})(jQuery,"shiftsmartresize");
|
2 |
+
var shift_supports=function(){var c=document.createElement("div"),h=["Khtml","Ms","O","Moz","Webkit"];return function(g){var l=h.length;if(g in c.style)return!0;for(g=g.replace(/^[a-z]/,function(p){return p.toUpperCase()});l--;)if(h[l]+g in c.style)return!0;return!1}}();
|
3 |
+
(function(c,h,g,l){function p(a,d){this.element=a;this.$shiftnav=c(this.element);this.$menu=this.$shiftnav.find("ul.shiftnav-menu");this.settings=c.extend({},q,d);this._defaults=q;this._name="shiftnav";this.touchenabled="ontouchstart"in h||0<navigator.maxTouchPoints||0<navigator.msMaxTouchPoints;h.navigator.pointerEnabled?(this.touchStart="pointerdown",this.touchEnd="pointerup",this.touchMove="pointermove"):h.navigator.msPointerEnabled?(this.touchStart="MSPointerDown",this.touchEnd="MSPointerUp",
|
4 |
+
this.touchMove="MSPointerMove"):(this.touchStart="touchstart",this.touchEnd="touchend",this.touchMove="touchmove");this.toggleevent="touchend"==this.touchEnd?this.touchEnd+" click":this.touchEnd;this.transitionend="transitionend.shiftnav webkitTransitionEnd.shiftnav msTransitionEnd.shiftnav oTransitionEnd.shiftnav";this.settings.clicktest&&(this.touchEnd="click");this.init()}var q={mouseEvents:!0,retractors:!0,touchOffClose:!0,clicktest:!1,windowstest:!1,debug:!1,open_current:!1,collapse_accordions:!1,
|
5 |
+
scroll_offset:100,disable_transforms:!1,close_on_target_click:!1,process_uber_segments:!0};p.prototype={init:function(){this.$shiftnav.removeClass("shiftnav-nojs");this.$toggles=c('.shiftnav-toggle[data-shiftnav-target="'+this.$shiftnav.data("shiftnav-id")+'"]');this.initializeShiftNav();this.initializeTargets();this.initializeSubmenuToggleMouseEvents();this.initializeSubmenuToggleKeyboardEvents();this.initializeRetractors();this.initializeResponsiveToggle()},initializeShiftNav:function(){var a=c("body"),
|
6 |
+
d=this;if(!a.hasClass("shiftnav-enabled")){a.addClass("shiftnav-enabled");"on"==shiftnav_data.lock_body&&a.addClass("shiftnav-lock");"on"==shiftnav_data.lock_body_x&&a.addClass("shiftnav-lock-x");"off"!=shiftnav_data.shift_body?""!=shiftnav_data.shift_body_wrapper?c(shiftnav_data.shift_body_wrapper).addClass("shiftnav-wrap"):(a.wrapInner('<div class="shiftnav-wrap"></div>'),c("video[autoplay]").each(function(){c(this).get(0).play()})):a.addClass("shiftnav-disable-shift-body");c("#shiftnav-toggle-main, #wpadminbar, .shiftnav-fixed-left, .shiftnav-fixed-right").appendTo("body");
|
7 |
+
var b=c(".shiftnav-wrap"),e=c("#shiftnav-toggle-main");if(e.length)if(!e.hasClass("shiftnav-toggle-style-burger_only")&&e.hasClass("shiftnav-togglebar-gap-auto")||e.hasClass("shiftnav-togglebar-gap-on")){var f=e.outerHeight();b.css("padding-top",f);e.addClass("shiftnav-togglebar-gap-on");"off"==shiftnav_data.shift_body&&(b="body.shiftnav-disable-shift-body{ padding-top:"+f+"px; }",""!==shiftnav_data.breakpoint&&(b="@media screen and (max-width:"+(shiftnav_data.breakpoint-1)+"px){ "+b+" }"),e=null,
|
8 |
+
e=g.getElementById("shiftnav-dynamic-css"),e||(e=g.createElement("style"),e.appendChild(g.createTextNode("")),g.head.appendChild(e)),(e=e.sheet)&&"insertRule"in e&&e.insertRule(b,0))}else c("body").hasClass("admin-bar")&&c("html").addClass("shiftnav-nogap");b=!1;e=navigator.userAgent.toLowerCase();/android/.test(e)&&(b=!0,/android [1-3]\./.test(e)?b=!0:/chrome/.test(e)?b=!1:/firefox/.test(e)&&(b=!1));(!shift_supports("transform")||b||d.settings.disable_transforms)&&a.addClass("shiftnav-no-transforms");
|
9 |
+
c(".shiftnav-searchbar-toggle").each(function(){var k=c(this).next(".shiftnav-searchbar-drop");c(this).on(d.toggleevent,function(n){d.toggleSearchBar(n,k,d)}).on("keyup.shiftnav-searchbar-toggle",function(n){13===n.keyCode&&d.toggleSearchBar(n,k,d)}).on("keydown.shiftnav-searbar-toggle",function(n){13===n.keyCode&&n.stopPropagation()})});c(".shiftnav-searchbar-drop").on(this.toggleevent,function(k){k.stopPropagation()});if(this.settings.touchOffClose)c(".shiftnav-searchbar-drop .shiftnav-search-input").on("blur",
|
10 |
+
function(k){""!=c(this).val()||m||c(this).parents(".shiftnav-searchbar-drop").removeClass("shiftnav-searchbar-drop-open")});var m;c(".shiftnav-searchbar-toggle").on("mousedown",function(k){m=!0});c(".shiftnav-searchbar-toggle").on("mouseup",function(k){m=!1});c(".shiftnav").css("max-height",h.innerHeight);c(h).shiftsmartresize(function(){c(".shiftnav").css("max-height",h.innerHeight)})}this.$shiftnav.appendTo("body");this.$shiftnav.hasClass("shiftnav-right-edge")?this.edge="right":this.edge="left";
|
11 |
+
this.openclass="shiftnav-open shiftnav-open-"+this.edge;this.$shiftnav.find(".shiftnav-panel-close").on("click",function(k){d.closeShiftNav()});this.$shiftnav.find(".shiftnav-sr-close").on("click",function(k){d.closeShiftNav();d.focusMainToggle()});this.$shiftnav.find(".shiftnav-submenu-activation").each(function(){var k=c(this).siblings(".shiftnav-target").outerHeight();c(this).css({height:k,width:k})});d.settings.process_uber_segments&&this.$shiftnav.find(".sub-menu .menu-item.current-menu-item").parents(".menu-item").addClass("current-menu-ancestor");
|
12 |
+
d.settings.open_current&&c(".shiftnav .shiftnav-sub-accordion.current-menu-item, .shiftnav .shiftnav-sub-accordion.current-menu-ancestor").addClass("shiftnav-active")},initializeTargets:function(){var a=this;this.$shiftnav.find(".shiftnav-scrollto").removeClass("current-menu-item").removeClass("current-menu-ancestor");this.$shiftnav.on("click",".menu-item > .shiftnav-target",function(d){var b=c(this).data("shiftnav-scrolltarget");if(b){var e=c(b).first();if(0<e.length)return d=c(this).parent(".menu-item"),
|
13 |
+
d.siblings().removeClass("current-menu-item").removeClass("current-menu-ancestor"),d.addClass("current-menu-item"),d=e.offset().top,d-=a.settings.scroll_offset,c("html,body").animate({scrollTop:d},1E3,"swing",function(){a.closeShiftNav()}),!1;(e=c(this).attr("href"))&&-1==e.indexOf("#")&&(-1==b.indexOf("#")&&(b="#"+b),h.location=e+b,d.preventDefault())}else c(this).is("span")&&(d=c(this).parent(".menu-item"),d.hasClass("shiftnav-active")?a.closeSubmenu(d,"disabledLink",a):a.openSubmenu(d,"disabledLink",
|
14 |
+
a));"a"===c(this).prop("tagName").toLowerCase()&&a.settings.close_on_target_click&&a.closeShiftNav()})},initializeSubmenuToggleMouseEvents:function(){if(this.settings.mouseEvents&&!this.settings.clicktest&&!this.settings.windowstest){this.settings.debug&&console.log("initializeSubmenuToggleMouseEvents");var a=this;this.$shiftnav.on("mouseup.shift-submenu-toggle",".shiftnav-submenu-activation",function(d){a.handleMouseActivation(d,this,a)})}},disableSubmenuToggleMouseEvents:function(){this.settings.debug&&
|
15 |
+
console.log("disableSubmenuToggleMouseEvents");$shiftnav.off("mouseover.shift-submenu-toggle");$shiftnav.off("mouseout.shift-submenu-toggle")},initializeSubmenuToggleKeyboardEvents:function(){this.settings.debug&&console.log("initializeSubmenuToggleKeyboardEvents");var a=this;this.$shiftnav.on("keyup.shift-submenu-toggle",".shiftnav-submenu-activation",function(d){if(13===d.keyCode){a.handleMouseActivation(d,this,a);var b=c(this).siblings(".shiftnav-submenu-activation").first();b.length&&setTimeout(function(){b.focus()},
|
16 |
+
10)}})},initializeRetractors:function(){if(this.settings.retractors){var a=this;this.$shiftnav.on("mouseup.shiftnav",".shiftnav-retract",function(d){a.handleSubmenuRetractorEnd(d,this,a)});this.$shiftnav.on("keyup.shiftnav",".shiftnav-retract",function(d){13===d.keyCode&&a.handleSubmenuRetractorEnd(d,this,a)})}},initializeResponsiveToggle:function(){var a=this;this.$toggles.on("click","a",function(d){d.stopPropagation()});this.$toggles.on("click",function(d){a.toggle(c(this),a,d)});this.$toggles.on("keydown",
|
17 |
+
function(d){if(9===d.keyCode){var b=c(this).data("shiftnav-target");b=c('[data-shiftnav-id="'+b+'"]');b.length&&b.hasClass("shiftnav-open-target")&&(d.preventDefault(),b.find("a[href], area[href], input:not([disabled]), select:not([disabled]), textarea:not([disabled]), button:not([disabled]), iframe, object, embed, *[tabindex], *[contenteditable]").first().focus())}});if("shiftnav-main"===this.$shiftnav.attr("id"))c("#shiftnav-toggle-main.shiftnav-toggle-main-entire-bar").on("keydown",function(d){13===
|
18 |
+
d.keyCode&&a.toggle(c(this),a,d)})},toggle:function(a,d,b){b.preventDefault();b.stopPropagation();if("click"!=b.originalEvent.type||!c(this).data("disableToggle")){if(d.$shiftnav.hasClass("shiftnav-open-target"))d.closeShiftNav();else{a=a.attr("id");var e="shiftnav-toggle-main"==a?"[Main Toggle Bar]":'"'+c(this).text()+'"';"shiftnav-toggle-main-button"!=a&&"shiftnav-toggle-main"!=a||!c("body").hasClass("shiftnav-open")?d.openShiftNav("toggle: "+e):c(".shiftnav.shiftnav-open-target").shiftnav("closeShiftNav")}"click"!==
|
19 |
+
b.originalEvent.type&&"keydown"!==b.originalEvent.type&&(c(this).data("disableToggle",!0),setTimeout(function(){c(this).data("disableToggle",!1)},1E3));return!1}},openShiftNav:function(a){var d=this;this.settings.debug&&console.log("openShiftNav "+(a||"?"));c("body").removeClass("shiftnav-open-right shiftnav-open-left").addClass(this.openclass).addClass("shiftnav-transitioning");c(".shiftnav-open-target").removeClass("shiftnav-open-target");this.$shiftnav.addClass("shiftnav-open-target").on(d.transitionend,
|
20 |
+
function(){c("body").removeClass("shiftnav-transitioning");c(this).off(d.transitionend)});this.$shiftnav.trigger("shiftnav-open");this.disableTouchoffClose();this.initializeTouchoffClose();c("body").on("focusin.shiftnavPanel",function(b){d.closeShiftNav();d.focusMainToggle()});this.$shiftnav.on("focusin.shiftnavPanel",function(b){b.stopPropagation()});c(g).on("keyup.shiftnavPanel",function(b){27===b.keyCode&&(d.closeShiftNav(),d.focusMainToggle())})},closeShiftNav:function(){var a=this;c("body").removeClass(this.openclass).addClass("shiftnav-transitioning");
|
21 |
+
this.$shiftnav.removeClass("shiftnav-open-target").on(a.transitionend,function(){c("body").removeClass("shiftnav-transitioning");c(this).off(a.transitionend)});this.$shiftnav.trigger("shiftnav-close");this.disableTouchoffClose();c("body").off("focusin.shiftnavPanel");this.$shiftnav.off("focusin.shiftnavPanel");c(g).off("keyup.shiftnavPanel")},focusMainToggle:function(a){"shiftnav-main"===this.$shiftnav.attr("id")&&c('#shiftnav-toggle-main .shiftnav-toggle[data-shiftnav-target="shiftnav-main"]').focus()},
|
22 |
+
initializeTouchoffClose:function(){if(this.settings.touchOffClose){var a=this;c(g).on("click.shiftnav "+this.touchEnd+".shiftnav",function(d){a.handleTouchoffClose(d,this,a)})}},disableTouchoffClose:function(){c(g).off(".shiftnav")},handleMouseActivation:function(a,d,b){b.settings.debug&&console.log("handleMouseover, add mouseout",a);a=c(d).parent();a.hasClass("shiftnav-active")?b.closeSubmenu(a,"mouseActivate",b):b.openSubmenu(a,"mouseActivate",b)},handleSubmenuRetractorEnd:function(a,d,b){a.preventDefault();
|
23 |
+
a.stopPropagation();a=c(d).parent("ul").parent("li");b.closeSubmenu(a,"handleSubmenuRetractor",b);b.settings.debug&&console.log("handleSubmenuRetractorEnd "+a.find("> a").text())},handleTouchoffClose:function(a,d,b){c("body").is(".shiftnav-transitioning")||0!==c(a.target).parents().add(c(a.target)).filter(".shiftnav, .shiftnav-toggle, .shiftnav-ignore").length||(b.settings.debug&&console.log("touchoff close ",a),a.preventDefault(),a.stopPropagation(),b.closeShiftNav(),b.disableTouchoffClose())},scrollPanel:function(a){if("off"==
|
24 |
+
shiftnav_data.scroll_panel)return 0;if("undefined"==typeof a)return this.$shiftnav.find(".shiftnav-inner").scrollTop();this.$shiftnav.find(".shiftnav-inner").scrollTop(a)},openSubmenu:function(a,d,b){a.hasClass("shiftnav-active")||(a.hasClass("shiftnav-sub-shift")?(a.siblings(".shiftnav-active").removeClass("shiftnav-active"),a.toggleClass("shiftnav-caulk"),b.$shiftnav.addClass("shiftnav-sub-shift-active")):b.settings.collapse_accordions&&a.siblings(".shiftnav-active").removeClass("shiftnav-active"),
|
25 |
+
a.parents("ul").removeClass("shiftnav-sub-active-current"),a.find("> ul").addClass("shiftnav-sub-active").addClass("shiftnav-sub-active-current"),setTimeout(function(){a.addClass("shiftnav-active");a.trigger("shiftnav-open-submenu");a.removeClass("shiftnav-caulk");setTimeout(function(){var e=b.scrollPanel();a.data("scroll-back",e);e=a.offset().top+e-c(h).scrollTop();b.scrollPanel(e)},100)},1))},closeSubmenu:function(a,d,b){this.settings.debug&&console.log("closeSubmenu "+a.find(">a").text()+" ["+
|
26 |
+
d+"]");a.hasClass("menu-item-has-children")&&a.hasClass("shiftnav-active")&&(a.addClass("shiftnav-in-transition"),a.each(function(){var f=c(this),m=f.find("> ul");m.on(b.transitionend+"_closesubmenu",function(){b.settings.debug&&console.log("finished submenu close transition");f.removeClass("shiftnav-in-transition");m.off(b.transitionend+"_closesubmenu")});b.closeSubmenu(f.find(".shiftnav-active"),d+"_recursive",b)}));a.removeClass("shiftnav-active");if(a.hasClass("shiftnav-sub-shift")){0==a.parents(".shiftnav-sub-shift").length&&
|
27 |
+
b.$shiftnav.removeClass("shiftnav-sub-shift-active");var e=a.data("scroll-back");"undefined"!==e&&b.scrollPanel(e)}a.find("> ul").removeClass("shiftnav-sub-active").removeClass("shiftnav-sub-active-current");a.closest("ul").addClass("shiftnav-sub-active-current");a.trigger("shiftnav-close-submenu")},closeAllSubmenus:function(){c(this.element).find("li.menu-item-has-children").removeClass("shiftnav-active")},toggleSearchBar:function(a,d,b){a.stopPropagation();a.preventDefault();d.hasClass("shiftnav-searchbar-drop-open")?
|
28 |
+
(d.removeClass("shiftnav-searchbar-drop-open"),c("body").off("click.shiftnav-searchbar-drop")):(d.addClass("shiftnav-searchbar-drop-open"),d.find(".shiftnav-search-input").focus(),b.settings.touchOffClose&&setTimeout(function(){c("body").on("click.shiftnav-searchbar-drop",function(e){c(".shiftnav-searchbar-drop").removeClass("shiftnav-searchbar-drop-open");c("body").off("click.shiftnav-searchbar-drop")})},100))}};c.fn.shiftnav=function(a){var d=arguments;if(a===l||"object"===typeof a)return this.each(function(){c.data(this,
|
29 |
+
"plugin_shiftnav")||c.data(this,"plugin_shiftnav",new p(this,a))});if("string"===typeof a&&"_"!==a[0]&&"init"!==a){var b;this.each(function(){var e=c.data(this,"plugin_shiftnav");e instanceof p&&"function"===typeof e[a]&&(b=e[a].apply(e,Array.prototype.slice.call(d,1)));"destroy"===a&&c.data(this,"plugin_shiftnav",null)});return b!==l?b:this}}})(jQuery,window,document);
|
30 |
+
(function(c){function h(b){if(!q){q=!0;"undefined"!=typeof console&&"window.load"==b&&console.log("ShiftNav initialized via "+b);c(".shiftnav-loading").remove();jQuery(".shiftnav").shiftnav({open_current:"on"==shiftnav_data.open_current?!0:!1,collapse_accordions:"on"==shiftnav_data.collapse_accordions?!0:!1,breakpoint:parseInt(shiftnav_data.breakpoint),touchOffClose:"on"==shiftnav_data.touch_off_close?!0:!1,scroll_offset:shiftnav_data.scroll_offset,disable_transforms:"on"==shiftnav_data.disable_transforms?
|
31 |
+
!0:!1,close_on_target_click:"on"==shiftnav_data.close_on_target_click?!0:!1,process_uber_segments:"on"==shiftnav_data.process_uber_segments?!0:!1});if("."==window.location.hash.substring(1,2)&&(b=c(window.location.hash.substring(1)),b.length)){var e=b.offset().top-shiftnav_data.scroll_offset;b.length&&window.scrollTo(0,e)}window.location.hash&&(b=window.location.hash,"."==b.substring(1,2)&&(b=b.substring(1)),b=b.replace(/[^#a-z0-9!$&'()*+,;=]/gi,""),b=c(".shiftnav").find('.shiftnav-target[data-shiftnav-scrolltarget="'+
|
32 |
+
b+'"]').parent(),b.length&&(b.siblings().removeClass("current-menu-item").removeClass("current-menu-ancestor"),b.addClass("current-menu-item")));"1"==shiftnav_data.pro&&(g(),c(window).on("scroll",p(l(g,200),200)));c(".shiftnav").trigger("shiftnav-loaded")}}function g(){var b=c("body"),e=c(window).scrollTop();var f=shiftnav_data.scroll_tolerance;if(e<=shiftnav_data.scroll_top_boundary)f="top";else if(e-a>f)f="down";else if(a-e>f)f="up";else return;if(f!==d)switch(b.removeClass("shiftnav--scroll-top shiftnav--scroll-up shiftnav--scroll-down"),
|
33 |
+
f){case "top":b.addClass("shiftnav--scroll-top");break;case "down":b.addClass("shiftnav--scroll-down");break;case "up":b.addClass("shiftnav--scroll-up")}b.trigger("shiftnav-window-scroll",{scrollTop:e,scrollDir:f,prevScrollDir:d});d=f;a=e}function l(b,e,f){var m;return function(){var k=this,n=arguments,r=f&&!m;clearTimeout(m);m=setTimeout(function(){m=null;f||b.apply(k,n)},e);r&&b.apply(k,n)}}function p(b,e){var f;return function(){var m=arguments;f||(b.apply(this,m),f=!0,setTimeout(function(){f=
|
34 |
+
!1},e))}}var q=!1;jQuery(function(b){h("document.ready")});c(window).on("load",function(){h("window.load")});var a=0,d=""})(jQuery);
|
includes/ShiftNavWalker.class.php
CHANGED
@@ -298,8 +298,13 @@ class ShiftNavWalker extends Walker_Nav_Menu {
|
|
298 |
$el = 'a';
|
299 |
if( $disable_link ) $el = 'span';
|
300 |
|
|
|
|
|
|
|
|
|
|
|
301 |
$item_output = $args->before;
|
302 |
-
$item_output .= '<'.$el.' class="
|
303 |
|
304 |
|
305 |
|
@@ -380,7 +385,7 @@ class ShiftNavWalker extends Walker_Nav_Menu {
|
|
380 |
*
|
381 |
* Calls parent function in UberMenuWalker.class.php
|
382 |
*/
|
383 |
-
function display_element( $element, &$children_elements, $max_depth, $depth
|
384 |
|
385 |
if ( !$element )
|
386 |
return;
|
298 |
$el = 'a';
|
299 |
if( $disable_link ) $el = 'span';
|
300 |
|
301 |
+
// Anchor class
|
302 |
+
$anchor_class = 'shiftnav-target';
|
303 |
+
if( isset( $data['anchor_class'] ) && ( $data['anchor_class'] ) ) $anchor_class.= ' '.esc_attr( $data['anchor_class'] );
|
304 |
+
|
305 |
+
|
306 |
$item_output = $args->before;
|
307 |
+
$item_output .= '<'.$el.' class="'.$anchor_class.'" '. $attributes .'>';
|
308 |
|
309 |
|
310 |
|
385 |
*
|
386 |
* Calls parent function in UberMenuWalker.class.php
|
387 |
*/
|
388 |
+
function display_element( $element, &$children_elements, $max_depth, $depth, $args, &$output ) {
|
389 |
|
390 |
if ( !$element )
|
391 |
return;
|
includes/functions.php
CHANGED
@@ -359,6 +359,7 @@ function shiftnav_load_assets(){
|
|
359 |
'disable_transforms' => shiftnav_op( 'disable_transforms' , 'general' ),
|
360 |
'close_on_target_click' => shiftnav_op( 'close_on_target_click' , 'general' ),
|
361 |
'scroll_top_boundary' => shiftnav_op( 'scroll_top_boundary', 'general', 50 ),
|
|
|
362 |
'process_uber_segments' => shiftnav_op( 'process_uber_segments', 'general' ),
|
363 |
) );
|
364 |
}
|
359 |
'disable_transforms' => shiftnav_op( 'disable_transforms' , 'general' ),
|
360 |
'close_on_target_click' => shiftnav_op( 'close_on_target_click' , 'general' ),
|
361 |
'scroll_top_boundary' => shiftnav_op( 'scroll_top_boundary', 'general', 50 ),
|
362 |
+
'scroll_tolerance' => shiftnav_op( 'scroll_tolerance', 'general', 10 ),
|
363 |
'process_uber_segments' => shiftnav_op( 'process_uber_segments', 'general' ),
|
364 |
) );
|
365 |
}
|
languages/shiftnav.pot
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the ShiftNav Pro - Responsive Mobile Menu package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: ShiftNav Pro - Responsive Mobile Menu 1.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/shiftnav-pro\n"
|
7 |
-
"POT-Creation-Date:
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date:
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
"Language: en\n"
|
@@ -61,258 +61,258 @@ msgstr ""
|
|
61 |
msgid "Skin"
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: admin/settings.config.php:
|
65 |
msgid "Indent Always Visible Submenus"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: admin/settings.config.php:
|
69 |
msgid "Check this to indent submenu items of always-visible submenus"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: admin/settings.config.php:
|
73 |
msgid "Display Site Title"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: admin/settings.config.php:
|
77 |
msgid "Display the site title in the menu panel"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: admin/settings.config.php:
|
81 |
msgid "Display Panel Close Button"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: admin/settings.config.php:
|
85 |
msgid "Display an × close button in the upper right of the ShiftNav panel"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: admin/settings.config.php:
|
89 |
msgid "Custom Toggle Integration Code"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: admin/settings.config.php:
|
93 |
msgid "Display Toggle Bar"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: admin/settings.config.php:
|
97 |
msgid ""
|
98 |
"Uncheck this to disable the default toggle bar and add your own custom "
|
99 |
"toggle"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: admin/settings.config.php:
|
103 |
msgid "Toggle Bar Style"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: admin/settings.config.php:
|
107 |
msgid ""
|
108 |
"Choose whether to have a full width bar, which can include a title and "
|
109 |
"other content, or just a hamburger button only which will appear in the "
|
110 |
"upper corner of the site."
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: admin/settings.config.php:
|
114 |
msgid "Full Bar"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: admin/settings.config.php:
|
118 |
msgid "Hamburger button only"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: admin/settings.config.php:
|
122 |
msgid "Toggle Breakpoint"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: admin/settings.config.php:
|
126 |
msgid ""
|
127 |
"Show the toggle bar only below this pixel width. 960 is a good default for "
|
128 |
"most sites. Leave blank to show the toggle bar at all times. No need to "
|
129 |
"include \"px\""
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: admin/settings.config.php:
|
133 |
msgid "Set this to use ShiftNav only at mobile sizes"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: admin/settings.config.php:
|
137 |
msgid "Hide Theme Menu"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: admin/settings.config.php:
|
141 |
msgid ""
|
142 |
"Enter the selector of the theme's menu if you wish to hide it below the "
|
143 |
"breakpoint above. For example, <code>#primary-nav</code> or "
|
144 |
"<code>.topnav</code>. "
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: admin/settings.config.php:
|
148 |
msgid ""
|
149 |
"This setting requires you to set the <strong>Toggle Breakpoint</strong> "
|
150 |
"setting for it to have an effect"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: admin/settings.config.php:
|
154 |
msgid "Hide UberMenu 3"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: admin/settings.config.php:
|
158 |
msgid ""
|
159 |
"Hide all UberMenu 3 instances when ShiftNav is displayed. If you would "
|
160 |
"like to only hide a specific UberMenu, use the setting above with a "
|
161 |
"specific UberMenu ID."
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: admin/settings.config.php:
|
165 |
msgid "Toggle Content"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: admin/settings.config.php:
|
169 |
msgid ""
|
170 |
"The content to display in the main toggle bar (only valid for Full Width "
|
171 |
"toggle bar style). Can contain shortcodes and HTML, including <img> tags. "
|
172 |
"Default: [shift_toggle_title] will print the site title"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: admin/settings.config.php:
|
176 |
msgid "Toggle Target"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: admin/settings.config.php:
|
180 |
msgid ""
|
181 |
"The area which will trigger the ShiftNav Panel to open. (Not relevant for "
|
182 |
"Full Bar toggle style)"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: admin/settings.config.php:
|
186 |
msgid "Bars/Burger Icon Only"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: admin/settings.config.php:
|
190 |
msgid "Entire Bar"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: admin/settings.config.php:
|
194 |
msgid "Close Icon"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: admin/settings.config.php:
|
198 |
msgid "When the toggle is open, choose which icon to display."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: admin/settings.config.php:
|
202 |
msgid "Toggle Bar Position"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: admin/settings.config.php:
|
206 |
msgid ""
|
207 |
"Choose Fixed if you'd like the toggle bar to always be visible, or Absolute "
|
208 |
"if you'd like it only to be visible when scrolled to the very top of the "
|
209 |
"page"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: admin/settings.config.php:
|
213 |
msgid "Fixed (always in viewport)"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: admin/settings.config.php:
|
217 |
msgid "Absolute (scrolls out of viewport)"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: admin/settings.config.php:
|
221 |
msgid "Align Text"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: admin/settings.config.php:
|
225 |
msgid "Align text left, right, or center. Applies to inline elements only."
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin/settings.config.php:
|
229 |
msgid "Background Color"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: admin/settings.config.php:
|
233 |
msgid "Transparent Background"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: admin/settings.config.php:
|
237 |
msgid ""
|
238 |
"Make the toggle bar transparent. Note that this only make sense if you are "
|
239 |
"using a hamburger-only Toggle Bar Style, or remove the Toggle Bar Gap"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: admin/settings.config.php:
|
243 |
msgid "Text/Burger Color"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: admin/settings.config.php:
|
247 |
msgid "Font Size"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: admin/settings.config.php:
|
251 |
msgid "Override the default font size of the toggle bar by setting a value here."
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: admin/settings.config.php:
|
255 |
msgid "Hamburger Size"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: admin/settings.config.php:
|
259 |
msgid "Size of the hamburger icon in pixes (font size)."
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: admin/settings.config.php:
|
263 |
msgid "Toggle Bar Gap"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: admin/settings.config.php:
|
267 |
msgid ""
|
268 |
"By default, ShiftNav will automatically determine if a gap is needed - in "
|
269 |
"short, space is left for the full bar toggle, and is not left for a "
|
270 |
"burger-only toggle. If you wish to override this, you can do so here."
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: admin/settings.config.php:
|
274 |
msgid "Automatic"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: admin/settings.config.php:
|
278 |
msgid "Disable Gap"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: admin/settings.config.php:
|
282 |
msgid "Enable Gap"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: admin/settings.config.php:
|
286 |
msgid "Toggle Button ARIA Label"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: admin/settings.config.php:
|
290 |
msgid "The value for the aria-label attribute"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: admin/settings.config.php:
|
294 |
msgid "CSS Tweaks"
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: admin/settings.config.php:
|
298 |
msgid "Add custom CSS here, which will be printed in the site head."
|
299 |
msgstr ""
|
300 |
|
301 |
-
#: admin/settings.config.php:
|
302 |
msgid "Shift Body"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: admin/settings.config.php:
|
306 |
msgid ""
|
307 |
"Shift the body of the site when the menu is revealed. For some themes, "
|
308 |
"this may negatively affect the site content, so this can be disabled."
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: admin/settings.config.php:
|
312 |
msgid "Shift Body Wrapper"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: admin/settings.config.php:
|
316 |
msgid ""
|
317 |
"Leave this blank to automatically create a ShiftNav Wrapper via javascript "
|
318 |
"(this may have side effects). Set a selector here to turn a specific div "
|
@@ -321,66 +321,66 @@ msgid ""
|
|
321 |
"conflict."
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: admin/settings.config.php:
|
325 |
msgid "Footer Content"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: admin/settings.config.php:
|
329 |
msgid ""
|
330 |
"Add HTML or Shortcodes here and it will be injected at the wp_footer() "
|
331 |
"hook. Useful for fixed position elements"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: admin/settings.config.php:
|
335 |
msgid "Mobile Only"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: admin/settings.config.php:
|
339 |
msgid ""
|
340 |
"Only display ShiftNav when a mobile device is detected via wp_is_mobile(). "
|
341 |
"If you are using a caching plugin, make sure you have separate mobile and "
|
342 |
"desktop caches."
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: admin/settings.config.php:
|
346 |
msgid ""
|
347 |
"This is NOT the preferred way to make your menu appear on mobile devices. "
|
348 |
"For 99% of users, you will want to set a Toggle Breakpoint in the Toggle "
|
349 |
"Bar Panel, rather than using this setting."
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: admin/settings.config.php:
|
353 |
msgid "Button Size"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: admin/settings.config.php:
|
357 |
msgid ""
|
358 |
"The size of the padding on the links in the menu. The larger the setting, "
|
359 |
"the easier to click; but fewer menu items will appear on the screen at a "
|
360 |
"time."
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: admin/settings.config.php:
|
364 |
msgid "Text Size"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: admin/settings.config.php:
|
368 |
msgid "The size of the font on the links in the menu (will override all levels)."
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: admin/settings.config.php:
|
372 |
msgid "Icon Size"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: admin/settings.config.php:
|
376 |
msgid "The size of the icons in the menu."
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: admin/settings.config.php:
|
380 |
msgid "Disable Transforms & Transitions"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: admin/settings.config.php:
|
384 |
msgid ""
|
385 |
"Disable CSS3 transformations and transitions. This will disable smooth "
|
386 |
"animations, but may work better on browsers that don't properly implement "
|
@@ -390,140 +390,140 @@ msgid ""
|
|
390 |
"produce false positives when testing."
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: admin/settings.config.php:
|
394 |
msgid "Touch-off close"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: admin/settings.config.php:
|
398 |
msgid ""
|
399 |
"Close the ShiftNav panel or search dropdown when touching any content not "
|
400 |
"in the panel."
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: admin/settings.config.php:
|
404 |
msgid "Close panel on menu link click"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: admin/settings.config.php:
|
408 |
msgid ""
|
409 |
"Immediately close the panel when a link in the menu is clicked (prior to "
|
410 |
"redirect)"
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: admin/settings.config.php:
|
414 |
msgid "Scroll Offset"
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: admin/settings.config.php:
|
418 |
msgid ""
|
419 |
"When using the ScrollTo functionality, this is the number of pixels to "
|
420 |
"offset the scroll by, to account for the toggle bar and any spacing you "
|
421 |
"want."
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: admin/settings.config.php:
|
425 |
msgid "Open Current Accordion Submenu"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: admin/settings.config.php:
|
429 |
msgid ""
|
430 |
"Open the submenu of the current menu item on page load (accordion submenus "
|
431 |
"only)."
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: admin/settings.config.php:
|
435 |
msgid "Collapse Accordions"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: admin/settings.config.php:
|
439 |
msgid ""
|
440 |
"When an accordion menu is opened, collapse any other accordions on that "
|
441 |
"level."
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: admin/settings.config.php:
|
445 |
msgid "Scroll Shift Submenus to Top"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: admin/settings.config.php:
|
449 |
msgid ""
|
450 |
"When a Shift submenu is activated, scroll that item to the top to maximize "
|
451 |
"submenu visibility."
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: admin/settings.config.php:
|
455 |
msgid "Highlight Targets on Hover"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: admin/settings.config.php:
|
459 |
msgid ""
|
460 |
"With this setting enabled, the links will be highlighted when hovered or "
|
461 |
"touched."
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: admin/settings.config.php:
|
465 |
msgid "Highlight Targets on :active"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: admin/settings.config.php:
|
469 |
msgid ""
|
470 |
"With this setting enabled, the links will be highlighted while in the "
|
471 |
":active state. May not be desirable for touch scrolling."
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: admin/settings.config.php:
|
475 |
msgid "Back Button Tag"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: admin/settings.config.php:
|
479 |
msgid ""
|
480 |
"By default the tag is an anchor. Some themes will try to add JS to the "
|
481 |
"anchor and break the back button functionality, so you can also switch this "
|
482 |
"to a span to avoid the issue."
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: admin/settings.config.php:
|
486 |
msgid "Back Button Text"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: admin/settings.config.php:
|
490 |
msgid ""
|
491 |
"By default, the Back button text will read \"Back\". You can change this "
|
492 |
"here. Note that if you set a value here, it will no longer be translatable."
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: admin/settings.config.php:
|
496 |
msgid "Top Back Button"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: admin/settings.config.php:
|
500 |
msgid "Display a back button at the top of shift submenus (below the parent item)"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: admin/settings.config.php:
|
504 |
msgid "Bottom Back Button"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: admin/settings.config.php:
|
508 |
msgid ""
|
509 |
"Display a back button at the bottom of shift submenus. Note that you must "
|
510 |
"leave at least one back button enabled for users to be able to move back up "
|
511 |
"a level."
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: admin/settings.config.php:
|
515 |
msgid "Show Tips to Admins"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: admin/settings.config.php:
|
519 |
msgid "Display tips to admin users"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: admin/settings.config.php:
|
523 |
msgid "Lock Horizontal Scroll"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: admin/settings.config.php:
|
527 |
msgid ""
|
528 |
"Attempt to prevent the content from scrolling horizontally when the menu is "
|
529 |
"active. On some themes, may also prevent vertical scrolling. May not "
|
@@ -531,61 +531,61 @@ msgid ""
|
|
531 |
"Body</strong> is disabled."
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: admin/settings.config.php:
|
535 |
msgid "Lock Scroll"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: admin/settings.config.php:
|
539 |
msgid ""
|
540 |
"Lock both vertical and horizontal scrolling on site content when menu is "
|
541 |
"active. No effect if <strong>Shift Body</strong> is disabled."
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: admin/settings.config.php:
|
545 |
msgid "Load Font Awesome"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: admin/settings.config.php:
|
549 |
msgid ""
|
550 |
"If you are already loading Font Awesome 4 elsewhere in your setup, you can "
|
551 |
"disable this."
|
552 |
msgstr ""
|
553 |
|
554 |
-
#: admin/settings.config.php:
|
555 |
msgid "Inherit UberMenu Conditionals"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: admin/settings.config.php:
|
559 |
msgid "Display menu items based on UberMenu Conditionals settings"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: admin/settings.config.php:
|
563 |
msgid "Process UberMenu Menu Segments"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: admin/settings.config.php:
|
567 |
msgid ""
|
568 |
"Most UberMenu Advanced Items will be ignored by ShiftNav, as they are "
|
569 |
"UberMenu-specific. However, ShiftNav can process UberMenu Menu Segments "
|
570 |
"with this setting enabled."
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: admin/settings.config.php:
|
574 |
msgid "Force Filter Menu Args"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: admin/settings.config.php:
|
578 |
msgid ""
|
579 |
"Some themes will filter the menu arguments on all menus on the site, which "
|
580 |
"can break things. This will re-filter those arguments for ShiftNav menus "
|
581 |
"only."
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: admin/settings.config.php:
|
585 |
msgid "Kill Menu Class Filter"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: admin/settings.config.php:
|
589 |
msgid ""
|
590 |
"Some themes filter the menu item classes and strip out core WordPress "
|
591 |
"functionality. This will change the structure of ShiftNav and prevent "
|
@@ -593,30 +593,41 @@ msgid ""
|
|
593 |
"<code>nav_menu_css_class</code> filter."
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: admin/settings.config.php:
|
597 |
msgid "Scroll Top Boundary"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: admin/settings.config.php:
|
601 |
msgid ""
|
602 |
"(Unrelated to ScrollTo or Scroll Offset). Pixel distance from the top of "
|
603 |
"the viewport at which the user is considered to have scrolled to the top. "
|
604 |
"Used for the Hide Toggle Bar on Scroll Down setting."
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: admin/settings.config.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
608 |
msgid "Main ShiftNav Settings"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: admin/settings.config.php:
|
612 |
msgid "Toggle Bar"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: admin/settings.config.php:
|
616 |
msgid "General Settings"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: admin/settings.config.php:
|
620 |
msgid "Reset Settings"
|
621 |
msgstr ""
|
622 |
|
@@ -667,7 +678,7 @@ msgid ""
|
|
667 |
"but item should not be displayed in ShiftNav"
|
668 |
msgstr ""
|
669 |
|
670 |
-
#: admin/settings.menu.php:334 pro/admin/item.settings.pro.php:
|
671 |
msgid "Submenu Type"
|
672 |
msgstr ""
|
673 |
|
@@ -678,11 +689,11 @@ msgid ""
|
|
678 |
"\"Accordion\" or \"Shift\" with the Pro version."
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: admin/settings.menu.php:339 pro/admin/item.settings.pro.php:
|
682 |
msgid "Menu Default"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: admin/settings.menu.php:340 pro/admin/item.settings.pro.php:
|
686 |
#: pro/admin/settings.pro.php:206 pro/admin/settings.pro.php:501
|
687 |
msgid "Always visible"
|
688 |
msgstr ""
|
@@ -739,40 +750,40 @@ msgstr ""
|
|
739 |
msgid "Back"
|
740 |
msgstr ""
|
741 |
|
742 |
-
#: includes/functions.php:
|
743 |
msgid "ShiftNav [Main]"
|
744 |
msgstr ""
|
745 |
|
746 |
-
#: pro/admin/item.settings.pro.php:
|
747 |
msgid "Icon"
|
748 |
msgstr ""
|
749 |
|
750 |
-
#: pro/admin/item.settings.pro.php:
|
751 |
msgid "Custom Icon Class"
|
752 |
msgstr ""
|
753 |
|
754 |
-
#: pro/admin/item.settings.pro.php:
|
755 |
msgid "Custom URL"
|
756 |
msgstr ""
|
757 |
|
758 |
-
#: pro/admin/item.settings.pro.php:
|
759 |
msgid ""
|
760 |
"Customize your link URL - you can use shortcodes here. Your setting will "
|
761 |
"be escaped with the esc_url() function"
|
762 |
msgstr ""
|
763 |
|
764 |
-
#: pro/admin/item.settings.pro.php:
|
765 |
msgid ""
|
766 |
"Overrides the default submenu type, which can be set in the Control Panel "
|
767 |
"for each menu. "
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: pro/admin/item.settings.pro.php:
|
771 |
#: pro/admin/settings.pro.php:502
|
772 |
msgid "Accordion"
|
773 |
msgstr ""
|
774 |
|
775 |
-
#: pro/admin/item.settings.pro.php:
|
776 |
#: pro/admin/settings.pro.php:503
|
777 |
msgid "Shift"
|
778 |
msgstr ""
|
1 |
+
# Copyright (C) 2021 Chris Mavricos, SevenSpark
|
2 |
# This file is distributed under the same license as the ShiftNav Pro - Responsive Mobile Menu package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: ShiftNav Pro - Responsive Mobile Menu 1.7.1\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/shiftnav-pro\n"
|
7 |
+
"POT-Creation-Date: 2021-06-09 13:36:48+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=utf-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
"Language: en\n"
|
61 |
msgid "Skin"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: admin/settings.config.php:107 pro/admin/settings.pro.php:538
|
65 |
msgid "Indent Always Visible Submenus"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: admin/settings.config.php:108 pro/admin/settings.pro.php:539
|
69 |
msgid "Check this to indent submenu items of always-visible submenus"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: admin/settings.config.php:117 pro/admin/settings.pro.php:558
|
73 |
msgid "Display Site Title"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: admin/settings.config.php:118
|
77 |
msgid "Display the site title in the menu panel"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: admin/settings.config.php:127 pro/admin/settings.pro.php:578
|
81 |
msgid "Display Panel Close Button"
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: admin/settings.config.php:128 pro/admin/settings.pro.php:579
|
85 |
msgid "Display an × close button in the upper right of the ShiftNav panel"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: admin/settings.config.php:138
|
89 |
msgid "Custom Toggle Integration Code"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: admin/settings.config.php:168
|
93 |
msgid "Display Toggle Bar"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: admin/settings.config.php:169
|
97 |
msgid ""
|
98 |
"Uncheck this to disable the default toggle bar and add your own custom "
|
99 |
"toggle"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: admin/settings.config.php:177
|
103 |
msgid "Toggle Bar Style"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: admin/settings.config.php:178
|
107 |
msgid ""
|
108 |
"Choose whether to have a full width bar, which can include a title and "
|
109 |
"other content, or just a hamburger button only which will appear in the "
|
110 |
"upper corner of the site."
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: admin/settings.config.php:181
|
114 |
msgid "Full Bar"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: admin/settings.config.php:182
|
118 |
msgid "Hamburger button only"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: admin/settings.config.php:190
|
122 |
msgid "Toggle Breakpoint"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: admin/settings.config.php:191
|
126 |
msgid ""
|
127 |
"Show the toggle bar only below this pixel width. 960 is a good default for "
|
128 |
"most sites. Leave blank to show the toggle bar at all times. No need to "
|
129 |
"include \"px\""
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: admin/settings.config.php:191
|
133 |
msgid "Set this to use ShiftNav only at mobile sizes"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: admin/settings.config.php:199
|
137 |
msgid "Hide Theme Menu"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: admin/settings.config.php:200
|
141 |
msgid ""
|
142 |
"Enter the selector of the theme's menu if you wish to hide it below the "
|
143 |
"breakpoint above. For example, <code>#primary-nav</code> or "
|
144 |
"<code>.topnav</code>. "
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: admin/settings.config.php:200 admin/settings.config.php:209
|
148 |
msgid ""
|
149 |
"This setting requires you to set the <strong>Toggle Breakpoint</strong> "
|
150 |
"setting for it to have an effect"
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: admin/settings.config.php:208
|
154 |
msgid "Hide UberMenu 3"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: admin/settings.config.php:209
|
158 |
msgid ""
|
159 |
"Hide all UberMenu 3 instances when ShiftNav is displayed. If you would "
|
160 |
"like to only hide a specific UberMenu, use the setting above with a "
|
161 |
"specific UberMenu ID."
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: admin/settings.config.php:219 pro/admin/settings.pro.php:548
|
165 |
msgid "Toggle Content"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: admin/settings.config.php:220
|
169 |
msgid ""
|
170 |
"The content to display in the main toggle bar (only valid for Full Width "
|
171 |
"toggle bar style). Can contain shortcodes and HTML, including <img> tags. "
|
172 |
"Default: [shift_toggle_title] will print the site title"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: admin/settings.config.php:232
|
176 |
msgid "Toggle Target"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: admin/settings.config.php:233
|
180 |
msgid ""
|
181 |
"The area which will trigger the ShiftNav Panel to open. (Not relevant for "
|
182 |
"Full Bar toggle style)"
|
183 |
msgstr ""
|
184 |
|
185 |
+
#: admin/settings.config.php:236
|
186 |
msgid "Bars/Burger Icon Only"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: admin/settings.config.php:237
|
190 |
msgid "Entire Bar"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: admin/settings.config.php:244
|
194 |
msgid "Close Icon"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: admin/settings.config.php:245
|
198 |
msgid "When the toggle is open, choose which icon to display."
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: admin/settings.config.php:258
|
202 |
msgid "Toggle Bar Position"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: admin/settings.config.php:259
|
206 |
msgid ""
|
207 |
"Choose Fixed if you'd like the toggle bar to always be visible, or Absolute "
|
208 |
"if you'd like it only to be visible when scrolled to the very top of the "
|
209 |
"page"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: admin/settings.config.php:262
|
213 |
msgid "Fixed (always in viewport)"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: admin/settings.config.php:263
|
217 |
msgid "Absolute (scrolls out of viewport)"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: admin/settings.config.php:272
|
221 |
msgid "Align Text"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: admin/settings.config.php:273
|
225 |
msgid "Align text left, right, or center. Applies to inline elements only."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: admin/settings.config.php:287
|
229 |
msgid "Background Color"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: admin/settings.config.php:298
|
233 |
msgid "Transparent Background"
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: admin/settings.config.php:299
|
237 |
msgid ""
|
238 |
"Make the toggle bar transparent. Note that this only make sense if you are "
|
239 |
"using a hamburger-only Toggle Bar Style, or remove the Toggle Bar Gap"
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: admin/settings.config.php:310
|
243 |
msgid "Text/Burger Color"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: admin/settings.config.php:320
|
247 |
msgid "Font Size"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: admin/settings.config.php:321
|
251 |
msgid "Override the default font size of the toggle bar by setting a value here."
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: admin/settings.config.php:331
|
255 |
msgid "Hamburger Size"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: admin/settings.config.php:332
|
259 |
msgid "Size of the hamburger icon in pixes (font size)."
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: admin/settings.config.php:343
|
263 |
msgid "Toggle Bar Gap"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: admin/settings.config.php:344
|
267 |
msgid ""
|
268 |
"By default, ShiftNav will automatically determine if a gap is needed - in "
|
269 |
"short, space is left for the full bar toggle, and is not left for a "
|
270 |
"burger-only toggle. If you wish to override this, you can do so here."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: admin/settings.config.php:347
|
274 |
msgid "Automatic"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: admin/settings.config.php:348
|
278 |
msgid "Disable Gap"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: admin/settings.config.php:349
|
282 |
msgid "Enable Gap"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: admin/settings.config.php:358
|
286 |
msgid "Toggle Button ARIA Label"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: admin/settings.config.php:359
|
290 |
msgid "The value for the aria-label attribute"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: admin/settings.config.php:392
|
294 |
msgid "CSS Tweaks"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: admin/settings.config.php:393
|
298 |
msgid "Add custom CSS here, which will be printed in the site head."
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: admin/settings.config.php:400
|
302 |
msgid "Shift Body"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: admin/settings.config.php:401
|
306 |
msgid ""
|
307 |
"Shift the body of the site when the menu is revealed. For some themes, "
|
308 |
"this may negatively affect the site content, so this can be disabled."
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: admin/settings.config.php:408
|
312 |
msgid "Shift Body Wrapper"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: admin/settings.config.php:409
|
316 |
msgid ""
|
317 |
"Leave this blank to automatically create a ShiftNav Wrapper via javascript "
|
318 |
"(this may have side effects). Set a selector here to turn a specific div "
|
321 |
"conflict."
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: admin/settings.config.php:416
|
325 |
msgid "Footer Content"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: admin/settings.config.php:417
|
329 |
msgid ""
|
330 |
"Add HTML or Shortcodes here and it will be injected at the wp_footer() "
|
331 |
"hook. Useful for fixed position elements"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: admin/settings.config.php:424
|
335 |
msgid "Mobile Only"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: admin/settings.config.php:425
|
339 |
msgid ""
|
340 |
"Only display ShiftNav when a mobile device is detected via wp_is_mobile(). "
|
341 |
"If you are using a caching plugin, make sure you have separate mobile and "
|
342 |
"desktop caches."
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: admin/settings.config.php:425
|
346 |
msgid ""
|
347 |
"This is NOT the preferred way to make your menu appear on mobile devices. "
|
348 |
"For 99% of users, you will want to set a Toggle Breakpoint in the Toggle "
|
349 |
"Bar Panel, rather than using this setting."
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: admin/settings.config.php:432
|
353 |
msgid "Button Size"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: admin/settings.config.php:433
|
357 |
msgid ""
|
358 |
"The size of the padding on the links in the menu. The larger the setting, "
|
359 |
"the easier to click; but fewer menu items will appear on the screen at a "
|
360 |
"time."
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: admin/settings.config.php:446
|
364 |
msgid "Text Size"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: admin/settings.config.php:447
|
368 |
msgid "The size of the font on the links in the menu (will override all levels)."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: admin/settings.config.php:461
|
372 |
msgid "Icon Size"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: admin/settings.config.php:462
|
376 |
msgid "The size of the icons in the menu."
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: admin/settings.config.php:478
|
380 |
msgid "Disable Transforms & Transitions"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: admin/settings.config.php:479
|
384 |
msgid ""
|
385 |
"Disable CSS3 transformations and transitions. This will disable smooth "
|
386 |
"animations, but may work better on browsers that don't properly implement "
|
390 |
"produce false positives when testing."
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: admin/settings.config.php:486
|
394 |
msgid "Touch-off close"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: admin/settings.config.php:487
|
398 |
msgid ""
|
399 |
"Close the ShiftNav panel or search dropdown when touching any content not "
|
400 |
"in the panel."
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: admin/settings.config.php:495
|
404 |
msgid "Close panel on menu link click"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: admin/settings.config.php:496
|
408 |
msgid ""
|
409 |
"Immediately close the panel when a link in the menu is clicked (prior to "
|
410 |
"redirect)"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: admin/settings.config.php:503
|
414 |
msgid "Scroll Offset"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: admin/settings.config.php:504
|
418 |
msgid ""
|
419 |
"When using the ScrollTo functionality, this is the number of pixels to "
|
420 |
"offset the scroll by, to account for the toggle bar and any spacing you "
|
421 |
"want."
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: admin/settings.config.php:519
|
425 |
msgid "Open Current Accordion Submenu"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: admin/settings.config.php:520
|
429 |
msgid ""
|
430 |
"Open the submenu of the current menu item on page load (accordion submenus "
|
431 |
"only)."
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: admin/settings.config.php:527
|
435 |
msgid "Collapse Accordions"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: admin/settings.config.php:528
|
439 |
msgid ""
|
440 |
"When an accordion menu is opened, collapse any other accordions on that "
|
441 |
"level."
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: admin/settings.config.php:535
|
445 |
msgid "Scroll Shift Submenus to Top"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: admin/settings.config.php:536
|
449 |
msgid ""
|
450 |
"When a Shift submenu is activated, scroll that item to the top to maximize "
|
451 |
"submenu visibility."
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: admin/settings.config.php:544
|
455 |
msgid "Highlight Targets on Hover"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: admin/settings.config.php:545
|
459 |
msgid ""
|
460 |
"With this setting enabled, the links will be highlighted when hovered or "
|
461 |
"touched."
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: admin/settings.config.php:552
|
465 |
msgid "Highlight Targets on :active"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: admin/settings.config.php:553
|
469 |
msgid ""
|
470 |
"With this setting enabled, the links will be highlighted while in the "
|
471 |
":active state. May not be desirable for touch scrolling."
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: admin/settings.config.php:560
|
475 |
msgid "Back Button Tag"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: admin/settings.config.php:561
|
479 |
msgid ""
|
480 |
"By default the tag is an anchor. Some themes will try to add JS to the "
|
481 |
"anchor and break the back button functionality, so you can also switch this "
|
482 |
"to a span to avoid the issue."
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: admin/settings.config.php:572
|
486 |
msgid "Back Button Text"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: admin/settings.config.php:573
|
490 |
msgid ""
|
491 |
"By default, the Back button text will read \"Back\". You can change this "
|
492 |
"here. Note that if you set a value here, it will no longer be translatable."
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: admin/settings.config.php:579
|
496 |
msgid "Top Back Button"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: admin/settings.config.php:580
|
500 |
msgid "Display a back button at the top of shift submenus (below the parent item)"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: admin/settings.config.php:586
|
504 |
msgid "Bottom Back Button"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: admin/settings.config.php:587
|
508 |
msgid ""
|
509 |
"Display a back button at the bottom of shift submenus. Note that you must "
|
510 |
"leave at least one back button enabled for users to be able to move back up "
|
511 |
"a level."
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: admin/settings.config.php:594
|
515 |
msgid "Show Tips to Admins"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: admin/settings.config.php:595
|
519 |
msgid "Display tips to admin users"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: admin/settings.config.php:602
|
523 |
msgid "Lock Horizontal Scroll"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: admin/settings.config.php:603
|
527 |
msgid ""
|
528 |
"Attempt to prevent the content from scrolling horizontally when the menu is "
|
529 |
"active. On some themes, may also prevent vertical scrolling. May not "
|
531 |
"Body</strong> is disabled."
|
532 |
msgstr ""
|
533 |
|
534 |
+
#: admin/settings.config.php:610
|
535 |
msgid "Lock Scroll"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: admin/settings.config.php:611
|
539 |
msgid ""
|
540 |
"Lock both vertical and horizontal scrolling on site content when menu is "
|
541 |
"active. No effect if <strong>Shift Body</strong> is disabled."
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: admin/settings.config.php:618
|
545 |
msgid "Load Font Awesome"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: admin/settings.config.php:619
|
549 |
msgid ""
|
550 |
"If you are already loading Font Awesome 4 elsewhere in your setup, you can "
|
551 |
"disable this."
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: admin/settings.config.php:626
|
555 |
msgid "Inherit UberMenu Conditionals"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: admin/settings.config.php:627
|
559 |
msgid "Display menu items based on UberMenu Conditionals settings"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: admin/settings.config.php:634
|
563 |
msgid "Process UberMenu Menu Segments"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: admin/settings.config.php:635
|
567 |
msgid ""
|
568 |
"Most UberMenu Advanced Items will be ignored by ShiftNav, as they are "
|
569 |
"UberMenu-specific. However, ShiftNav can process UberMenu Menu Segments "
|
570 |
"with this setting enabled."
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: admin/settings.config.php:643
|
574 |
msgid "Force Filter Menu Args"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: admin/settings.config.php:644
|
578 |
msgid ""
|
579 |
"Some themes will filter the menu arguments on all menus on the site, which "
|
580 |
"can break things. This will re-filter those arguments for ShiftNav menus "
|
581 |
"only."
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: admin/settings.config.php:651
|
585 |
msgid "Kill Menu Class Filter"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: admin/settings.config.php:652
|
589 |
msgid ""
|
590 |
"Some themes filter the menu item classes and strip out core WordPress "
|
591 |
"functionality. This will change the structure of ShiftNav and prevent "
|
593 |
"<code>nav_menu_css_class</code> filter."
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: admin/settings.config.php:691
|
597 |
msgid "Scroll Top Boundary"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: admin/settings.config.php:692
|
601 |
msgid ""
|
602 |
"(Unrelated to ScrollTo or Scroll Offset). Pixel distance from the top of "
|
603 |
"the viewport at which the user is considered to have scrolled to the top. "
|
604 |
"Used for the Hide Toggle Bar on Scroll Down setting."
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: admin/settings.config.php:699
|
608 |
+
msgid "Scroll Tolerance"
|
609 |
+
msgstr ""
|
610 |
+
|
611 |
+
#: admin/settings.config.php:700
|
612 |
+
msgid ""
|
613 |
+
"(Unrelated to ScrollTo or Scroll Offset). Pixel distance the user must "
|
614 |
+
"scroll to trigger an up/down direction change. Used for the Hide Toggle "
|
615 |
+
"Bar on Scroll Down setting."
|
616 |
+
msgstr ""
|
617 |
+
|
618 |
+
#: admin/settings.config.php:736
|
619 |
msgid "Main ShiftNav Settings"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: admin/settings.config.php:740
|
623 |
msgid "Toggle Bar"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: admin/settings.config.php:748
|
627 |
msgid "General Settings"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: admin/settings.config.php:773
|
631 |
msgid "Reset Settings"
|
632 |
msgstr ""
|
633 |
|
678 |
"but item should not be displayed in ShiftNav"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: admin/settings.menu.php:334 pro/admin/item.settings.pro.php:48
|
682 |
msgid "Submenu Type"
|
683 |
msgstr ""
|
684 |
|
689 |
"\"Accordion\" or \"Shift\" with the Pro version."
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: admin/settings.menu.php:339 pro/admin/item.settings.pro.php:53
|
693 |
msgid "Menu Default"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: admin/settings.menu.php:340 pro/admin/item.settings.pro.php:54
|
697 |
#: pro/admin/settings.pro.php:206 pro/admin/settings.pro.php:501
|
698 |
msgid "Always visible"
|
699 |
msgstr ""
|
750 |
msgid "Back"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: includes/functions.php:308
|
754 |
msgid "ShiftNav [Main]"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: pro/admin/item.settings.pro.php:15
|
758 |
msgid "Icon"
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: pro/admin/item.settings.pro.php:23
|
762 |
msgid "Custom Icon Class"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: pro/admin/item.settings.pro.php:40
|
766 |
msgid "Custom URL"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: pro/admin/item.settings.pro.php:43
|
770 |
msgid ""
|
771 |
"Customize your link URL - you can use shortcodes here. Your setting will "
|
772 |
"be escaped with the esc_url() function"
|
773 |
msgstr ""
|
774 |
|
775 |
+
#: pro/admin/item.settings.pro.php:51
|
776 |
msgid ""
|
777 |
"Overrides the default submenu type, which can be set in the Control Panel "
|
778 |
"for each menu. "
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: pro/admin/item.settings.pro.php:55 pro/admin/settings.pro.php:207
|
782 |
#: pro/admin/settings.pro.php:502
|
783 |
msgid "Accordion"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: pro/admin/item.settings.pro.php:56 pro/admin/settings.pro.php:208
|
787 |
#: pro/admin/settings.pro.php:503
|
788 |
msgid "Shift"
|
789 |
msgstr ""
|
package.json
CHANGED
@@ -2,16 +2,16 @@
|
|
2 |
"name": "shiftnav-pro",
|
3 |
"version": "0.1.0",
|
4 |
"devDependencies": {
|
5 |
-
"grunt": "^1.0
|
6 |
-
"grunt-contrib-cssmin": "^
|
7 |
-
"grunt-contrib-jshint": "^
|
8 |
-
"grunt-contrib-less": "^
|
9 |
"grunt-contrib-nodeunit": "^2.1.0",
|
10 |
-
"grunt-contrib-uglify": "^
|
11 |
"grunt-wp-i18n": "^1.0.3"
|
12 |
},
|
13 |
"dependencies": {
|
14 |
-
"google-closure-compiler": "^
|
15 |
"grunt-closure-compiler": "0.0.21"
|
16 |
}
|
17 |
}
|
2 |
"name": "shiftnav-pro",
|
3 |
"version": "0.1.0",
|
4 |
"devDependencies": {
|
5 |
+
"grunt": "^1.3.0",
|
6 |
+
"grunt-contrib-cssmin": "^4.0.0",
|
7 |
+
"grunt-contrib-jshint": "^3.0.0",
|
8 |
+
"grunt-contrib-less": "^3.0.0",
|
9 |
"grunt-contrib-nodeunit": "^2.1.0",
|
10 |
+
"grunt-contrib-uglify": "^5.0.0",
|
11 |
"grunt-wp-i18n": "^1.0.3"
|
12 |
},
|
13 |
"dependencies": {
|
14 |
+
"google-closure-compiler": "^20210302.0.0",
|
15 |
"grunt-closure-compiler": "0.0.21"
|
16 |
}
|
17 |
}
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: sevenspark
|
|
3 |
Donate link: http://shiftnav.io/pro
|
4 |
Tags: responsive, menu, navigation, mobile, off-canvas, app, slide, sidebar
|
5 |
Requires at least: 4.0
|
6 |
-
Tested up to:
|
7 |
-
Stable tag: 1.7.
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -56,6 +56,20 @@ Please see the [ShiftNav Quick Setup Guide](http://sevenspark.com/docs/shiftnav-
|
|
56 |
|
57 |
== Changelog ==
|
58 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
= 1.7.0.1 =
|
60 |
|
61 |
* [Pro] Feature: Hide Toggle Bar when scrolling down
|
3 |
Donate link: http://shiftnav.io/pro
|
4 |
Tags: responsive, menu, navigation, mobile, off-canvas, app, slide, sidebar
|
5 |
Requires at least: 4.0
|
6 |
+
Tested up to: 6.0.1
|
7 |
+
Stable tag: 1.7.1
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
56 |
|
57 |
== Changelog ==
|
58 |
|
59 |
+
= 1.7.1 =
|
60 |
+
|
61 |
+
* [Pro] Feature: Custom Anchor Class setting for menu items
|
62 |
+
* [Pro] Feature: Scroll Tolerance setting
|
63 |
+
Enhancement: Improve Control Panel tab overflow handling
|
64 |
+
Enhancement: Add font-display:block on Font Awesome to make Lighthouse happy
|
65 |
+
Enhancement: Force toggle to absolute when printing to avoid printing on every page
|
66 |
+
Update: PHP 8 compatibility
|
67 |
+
Update: jQuery 3 compatibility in admin panel
|
68 |
+
Fix: Admin menu item Shift button hovering
|
69 |
+
Fix: Panel close button layering when scrolling menu items
|
70 |
+
Fix: Panel double scroll bar corner case
|
71 |
+
|
72 |
+
|
73 |
= 1.7.0.1 =
|
74 |
|
75 |
* [Pro] Feature: Hide Toggle Bar when scrolling down
|
shiftnav-responsive-mobile-menu.php
CHANGED
@@ -6,10 +6,10 @@ Description: An off-canvas mobile menu for WordPress
|
|
6 |
Author: Chris Mavricos, SevenSpark
|
7 |
Author URI: http://sevenspark.com
|
8 |
License: GPLv2
|
9 |
-
Version: 1.7.
|
10 |
*/
|
11 |
|
12 |
-
/* Copyright 2014-
|
13 |
|
14 |
// Exit if accessed directly
|
15 |
if ( !defined( 'ABSPATH' ) ) exit;
|
@@ -53,7 +53,7 @@ final class ShiftNav {
|
|
53 |
// Plugin version
|
54 |
|
55 |
if( ! defined( 'SHIFTNAV_VERSION' ) )
|
56 |
-
define( 'SHIFTNAV_VERSION', '1.7.
|
57 |
|
58 |
if( ! defined( 'SHIFTNAV_PRO' ) )
|
59 |
define( 'SHIFTNAV_PRO', false );
|
6 |
Author: Chris Mavricos, SevenSpark
|
7 |
Author URI: http://sevenspark.com
|
8 |
License: GPLv2
|
9 |
+
Version: 1.7.1
|
10 |
*/
|
11 |
|
12 |
+
/* Copyright 2014-2021 Chris Mavricos, SevenSpark */
|
13 |
|
14 |
// Exit if accessed directly
|
15 |
if ( !defined( 'ABSPATH' ) ) exit;
|
53 |
// Plugin version
|
54 |
|
55 |
if( ! defined( 'SHIFTNAV_VERSION' ) )
|
56 |
+
define( 'SHIFTNAV_VERSION', '1.7.1' );
|
57 |
|
58 |
if( ! defined( 'SHIFTNAV_PRO' ) )
|
59 |
define( 'SHIFTNAV_PRO', false );
|