Skip to content

Commit c5651cc

Browse files
committed
Adjusted libs directory structure, updated options, prep for new options interface, lots more...
1 parent a1e938a commit c5651cc

29 files changed

+2237
-189
lines changed

Nebula-Child/style.css

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

assets/css/admin.css

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

assets/css/dev.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11

2-
/* Processed on Monday, April 17, 2017 at 9:24pm */
2+
/* Processed on Monday, April 24, 2017 at 12:25am */

assets/css/login.css

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

assets/css/pre.css

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

assets/css/tinymce.css

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

assets/css/wireframing.css

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

assets/js/admin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jQuery(function(){
1717
});
1818

1919
if ( !jQuery('li#menu-comments').is(':visible') ){
20-
jQuery('#dashboard_right_now .main').append('Comments are disabled <small>(via <a href="themes.php?page=nebula_options">Nebula Options</a>)</small>.');
20+
jQuery('#dashboard_right_now .main').append('Comments are disabled <small>(via <a href="themes.php?page=nebula_options?tab=functions&option=comments">Nebula Options</a>)</small>.');
2121
}
2222

2323
businessHoursCheck();

assets/js/main.js

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2352,7 +2352,7 @@ function placeLookup(placeID){
23522352

23532353
//Zebra-striper, First-child/Last-child, Hover helper functions, add "external" rel to outbound links
23542354
function addHelperClasses(){
2355-
jQuery("a[href^='http']:not([href*='" + nebula.site.domain + "'])").attr('rel', 'nofollow external'); //Add rel attributes to external links
2355+
jQuery("a[href^='http']:not([href*='" + nebula.site.domain + "'])").attr('rel', 'nofollow external noopener'); //Add rel attributes to external links
23562356

23572357
//Remove filetype icons from images within <a> tags and buttons.
23582358
jQuery('a img').parents('a').addClass('no-icon');
@@ -2468,13 +2468,17 @@ function powerFooterWidthDist(){
24682468
}
24692469

24702470
//Offset must be an integer
2471-
function nebulaScrollTo(element, milliseconds, offset, onlyWhenBelow){
2471+
function nebulaScrollTo(element, milliseconds, offset, onlyWhenBelow, callback){
24722472
if ( !offset ){
24732473
var offset = 0; //Note: This selector should be the height of the fixed header, or a hard-coded offset.
24742474
}
24752475

24762476
//Call this function with a jQuery object to trigger scroll to an element (not just a selector string).
24772477
if ( element ){
2478+
if ( typeof element === 'string' ){
2479+
element = jQuery(element);
2480+
}
2481+
24782482
var willScroll = true;
24792483
if ( onlyWhenBelow ){
24802484
var elementTop = element.offset().top-offset;
@@ -2491,7 +2495,9 @@ function nebulaScrollTo(element, milliseconds, offset, onlyWhenBelow){
24912495

24922496
jQuery('html, body').animate({
24932497
scrollTop: element.offset().top-offset
2494-
}, milliseconds);
2498+
}, milliseconds, function(){
2499+
callback();
2500+
});
24952501
}
24962502

24972503
return false;

assets/scss/style.scss

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Description: Nebula is a springboard WordPress theme framework for developers. Like other WordPress startup themes, it has custom functionality built-in (like shortcodes, styles, and JS/PHP functions), but unlike other themes Nebula is not meant for the end-user.
55
Author: Pinckney Hugo Group
66
Author URI: http://www.pinckneyhugo.com
7-
Version: 4.11.16
7+
Version: 4.11.22
88
License: GNU General Public License v2.0 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010
Tags: one-column, two-columns, three-columns, four-columns, left-sidebar, right-sidebar, threaded-comments, theme-options, sticky-post, post-formats, microformats, full-width-template, front-page-post-form, flexible-header, featured-images, featured-image-header, editor-style, custom-menu, custom-colors, accessibility-ready
@@ -685,8 +685,6 @@ a.toplevelvert_expander {position: absolute; top: 5px; right: 0; padding: 2px 10
685685
&.closed i {@include prefix((transform: rotate(0deg)));}
686686
}
687687

688-
.xoxo form.search input[type="text"] {width: 77% !important; font-size: rem(12px); line-height: 24px; height: auto !important; vertical-align: top;} //Font size and line height needs !important
689-
690688
//Offcanvas Mmenu Modifications
691689
.mm-list > li:not(.mm-subtitle):not(.mm-label):not(.mm-noresults):after {margin-left: 0;}
692690
.mm-list a {border: none;

0 commit comments

Comments
 (0)