forked from weblab/cornerstone
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
-Adding support for sub/super characters -Fixing social icons/glyphicon conflict on blank page builder pages -Fixing social icon external media link -Multi level dropdown hover/submenu background color issue fixed
- Loading branch information
briandunnigan
authored and
briandunnigan
committed
Feb 10, 2016
1 parent
77c9185
commit d1186c1
Showing
6 changed files
with
91 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
/** | ||
Template Name: Page Builder | ||
*/ | ||
|
||
get_header(); ?> | ||
<div id="page-page-builder"> | ||
<?php include('inc/sidebar-check.php')?> | ||
<?php while ( have_posts() ) : the_post(); ?> | ||
<?php include('inc/submenu-check.php')?> | ||
<div class="row"> | ||
<div class="col-sm-<?php echo (is_active_sidebar( $sidebar )?9:12); ?>"> | ||
<?php get_template_part( 'content', 'blank' ); ?> | ||
<?php | ||
// If comments are open or we have at least one comment, load up the comment template | ||
if ( comments_open() || '0' != get_comments_number() ) : | ||
comments_template(); | ||
endif; | ||
?> | ||
</div> | ||
<?php include('inc/sidebar-if-active.php')?> | ||
</div> | ||
<?php include('inc/submenu-closing-tags.php')?> | ||
<?php endwhile; // end of the loop. ?> | ||
</div> | ||
<?php get_footer(); ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
.panel-grid { /* Denotes the beginning of a Page Builder section */ | ||
.simple-social-icons { | ||
ul { | ||
li { | ||
//avoids conflict with glypicons social icons. | ||
|
||
&.social-bloglovin:before, &.social-dribbble:before, &.social-email:before, &.social-facebook:before, &.social-flickr:before, &.social-github:before, &.social-gplus:before, &.social-instagram:before, &.social-linkedin:before, &.social-pinterest:before, &.social-rss:before, &.social-stumbleupon:before, &.social-tumblr:before, &.social-twitter:before, &.social-vimeo:before, &.social-youtube:before { | ||
display:none !important; | ||
content:none!important; | ||
} | ||
|
||
a { | ||
.glyphicon-new-window { | ||
display:none !important; | ||
content:none!important; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters