Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Various Fixes
-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
Show file tree
Hide file tree
Showing 6 changed files with 91 additions and 1 deletion.
26 changes: 26 additions & 0 deletions page-pagebuilder.php
@@ -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(); ?>
1 change: 1 addition & 0 deletions sass/_cal.scss
Expand Up @@ -42,6 +42,7 @@
.uc-cal-event-title {
font-style:normal;
margin-left:1em;
display:flex !important;
}

.glyphicon-new-window {
Expand Down
20 changes: 20 additions & 0 deletions sass/_content.scss
Expand Up @@ -225,4 +225,24 @@ a.btn {
border-top:1px solid #eee;
border-bottom:1px solid #eee;
}
}

/*--------------------------------------------------------------
10.6 UC Calendar - Fixes for Sub/Super Characters
--------------------------------------------------------------*/

#content{
.widget {

// Uconn Calendar
&.uc-ecw{
.uc-cal-list {
.uc-cal-item {
.uc-cal-event-title {
display:flex !important;
}
}
}
}
}
}
22 changes: 22 additions & 0 deletions sass/_page-builder.scss
@@ -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;
}
}
}
}
}
}

20 changes: 20 additions & 0 deletions style.css
Expand Up @@ -9476,6 +9476,13 @@ a.btn {
border-bottom: 1px solid #eee;
}

/*--------------------------------------------------------------
10.6 UC Calendar - Fixes for Sub/Super Characters
--------------------------------------------------------------*/
#content .widget.uc-ecw .uc-cal-list .uc-cal-item .uc-cal-event-title {
display: flex !important;
}

/* - - - - - - - - - - - - - - - - - - -
== Captions
- - - - - - - - - - - - - - - - - - - */
Expand Down Expand Up @@ -9849,6 +9856,7 @@ q:before, table q:after {
.uc-listcal .uc-cal-list .uc-cal-item .uc-cal-event-title {
font-style: normal;
margin-left: 1em;
display: flex !important;
}
.uc-listcal .uc-cal-list .uc-cal-item .glyphicon-new-window {
display: none;
Expand Down Expand Up @@ -10609,3 +10617,15 @@ input[type="reset"]#footers.btn-block,
input[type="button"]#footers.btn-block {
width: 100%;
}

.panel-grid {
/* Denotes the beginning of a Page Builder section */
}
.panel-grid .simple-social-icons ul li.social-bloglovin:before, .panel-grid .simple-social-icons ul li.social-dribbble:before, .panel-grid .simple-social-icons ul li.social-email:before, .panel-grid .simple-social-icons ul li.social-facebook:before, .panel-grid .simple-social-icons ul li.social-flickr:before, .panel-grid .simple-social-icons ul li.social-github:before, .panel-grid .simple-social-icons ul li.social-gplus:before, .panel-grid .simple-social-icons ul li.social-instagram:before, .panel-grid .simple-social-icons ul li.social-linkedin:before, .panel-grid .simple-social-icons ul li.social-pinterest:before, .panel-grid .simple-social-icons ul li.social-rss:before, .panel-grid .simple-social-icons ul li.social-stumbleupon:before, .panel-grid .simple-social-icons ul li.social-tumblr:before, .panel-grid .simple-social-icons ul li.social-twitter:before, .panel-grid .simple-social-icons ul li.social-vimeo:before, .panel-grid .simple-social-icons ul li.social-youtube:before {
display: none !important;
content: none !important;
}
.panel-grid .simple-social-icons ul li a .glyphicon-new-window {
display: none !important;
content: none !important;
}
3 changes: 2 additions & 1 deletion style.scss
Expand Up @@ -28,4 +28,5 @@ $icon-font-path: "../../global/bootstrap-3.3.4/fonts/bootstrap/" !default;
@import "sass/_ucpeople.scss";
@import "sass/_cal.scss";
@import "sass/_in-page-menus.scss";
@import "sass/_footer.scss";
@import "sass/_footer.scss";
@import "sass/_page-builder.scss";

0 comments on commit d1186c1

Please sign in to comment.