Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Hot fixes
-Updating presspage
-Updating search, 404, 403 pages
-Calendar styling when using page builder
  • Loading branch information
briandunnigan authored and briandunnigan committed Mar 11, 2016
1 parent 2c388b9 commit 7b066fb
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 17 deletions.
31 changes: 22 additions & 9 deletions css/executive.css
Expand Up @@ -10701,14 +10701,15 @@ h2 {
#content #page-press .entry-content #presstop .post .col-sm-6:nth-child(2) .moretag:hover {
background-color: #39AAD3;
}
#content #page-press .entry-content #presstop .entry-header h4.entry-title a {
color: #3d3d3d !important;
}
#content #page-press .entry-content #presstop .entry-header a {
text-decoration: none;
}
#content #page-press .entry-content #presstop .entry-header a:hover {
color: rgba(38, 173, 228, 0.9);
}
#content #page-press .entry-content #presstop .entry-header a:hover h4 {
color: rgba(38, 173, 228, 0.9) !important;
color: #3d3d3d;
text-decoration: underline;
}
#content #page-press h4.entry-title {
line-height: 1.4em;
Expand Down Expand Up @@ -11726,7 +11727,7 @@ h1.entry-title {
margin-top: 2px;
}
.panel-grid .uc-cal.uc-listcal .uc-cal-event {
padding-left: 1em;
padding-left: 2em;
}
.panel-grid .uc-cal.uc-listcal .uc-cal-event-title {
margin-top: 0px !important;
Expand Down Expand Up @@ -11770,17 +11771,24 @@ h1.entry-title {
font-family: helvetica, arial, sans-serif;
}

#page-page-builder #main, #page-page-builder-cards #main {
.subpage .widget .uc-cal.uc-listcal {
padding-left: 2.7em !important;
}
.subpage .widget .uc-cal.uc-listcal .uc-cal-event-date {
left: -2.7em !important;
}

#page-page-builder #main, #page-page-builder-cards #main, #error404 #main {
padding: 15px 50px;
border: 1px solid #ededed;
}
#page-page-builder #main .uc-cal-event-month, #page-page-builder-cards #main .uc-cal-event-month {
#page-page-builder #main .uc-cal-event-month, #page-page-builder-cards #main .uc-cal-event-month, #error404 #main .uc-cal-event-month {
border: none !important;
}
#page-page-builder #main .uc-cal-event-day, #page-page-builder-cards #main .uc-cal-event-day {
#page-page-builder #main .uc-cal-event-day, #page-page-builder-cards #main .uc-cal-event-day, #error404 #main .uc-cal-event-day {
border: none !important;
}
#page-page-builder #main h3.widget-title, #page-page-builder-cards #main h3.widget-title {
#page-page-builder #main h3.widget-title, #page-page-builder-cards #main h3.widget-title, #error404 #main h3.widget-title {
font-size: 24px;
margin-bottom: 25px;
}
Expand Down Expand Up @@ -11932,3 +11940,8 @@ body.home #content .panel-grid .widget.widget_metaslider_widget ul li {
margin-top: -1px;
width: 20px;
}

#error404 .page-content .col-sm-6, #error403 .page-content .col-sm-6 {
padding: 0px;
width: 60%;
}
4 changes: 2 additions & 2 deletions functions.php
Expand Up @@ -29,13 +29,13 @@ add_action( 'wp_enqueue_scripts', 'starterkit_scripts', 99);
// Replaces the excerpt "more" text by a link
function new_excerpt_more($more) {
global $post;
return '...&nbsp; <a class="moretag" href="'. get_permalink($post->ID) . '">Continue Reading (Excerpt Filter)</a>';
return '...&nbsp; <a class="moretag" href="'. get_permalink($post->ID) . '">Continue Reading</a>';
}
add_filter('excerpt_more', 'new_excerpt_more');

add_filter( 'the_content_more_link', 'modify_read_more_link' );
function modify_read_more_link() {
return '<a class="moretag" href="'. get_permalink($post->ID) . '">Continue Reading (Content Filter)</a>';
return '<a class="moretag" href="'. get_permalink($post->ID) . '">Continue Reading</a>';
}


Expand Down
35 changes: 29 additions & 6 deletions sass/executive.scss
Expand Up @@ -614,15 +614,20 @@ $lightgrey: rgba($lightgrey_hex, $transparency);
}

.entry-header {
h4.entry-title {
a {
color: #3d3d3d !important;
}
}

a {
text-decoration:none;

&:hover {
color:rgba(38, 173, 228, 0.9);
color:#3d3d3d;
text-decoration: underline;


h4 {
color: rgba(38, 173, 228, 0.9) !important;
}
}
}
}
Expand Down Expand Up @@ -1405,7 +1410,7 @@ padding:8px 12px 4px

&.uc-listcal {
.uc-cal-event {
padding-left:1em;
padding-left:2em;
}
.uc-cal-event-title {
margin-top:0px !important;
Expand Down Expand Up @@ -1463,7 +1468,16 @@ padding:8px 12px 4px
}
}

#page-page-builder, #page-page-builder-cards {
.subpage .widget {
.uc-cal.uc-listcal {
padding-left:2.7em !important;
.uc-cal-event-date {
left:-2.7em !important;
}
}
}

#page-page-builder, #page-page-builder-cards, #error404 {
#main {
padding:15px 50px;
border:1px solid #ededed;
Expand Down Expand Up @@ -1682,6 +1696,15 @@ body.home {
}
}

#error404, #error403 {
.page-content {
.col-sm-6 {
padding:0px;
width:60%;
}
}
}




Expand Down

0 comments on commit 7b066fb

Please sign in to comment.