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
Jira Ticket Updates
• Removing border from UC Contact widget on mobile devices
• Fixed UConn banner jumping on page load
• Fixed date picker month/year color in gravity forms
  • Loading branch information
bcd04001 committed Sep 22, 2016
1 parent 71c5dd9 commit 54285ec
Show file tree
Hide file tree
Showing 8 changed files with 55 additions and 37 deletions.
5 changes: 5 additions & 0 deletions js/cs.js
Expand Up @@ -286,4 +286,9 @@ $('.panel, .collapse').on('hidden.bs.collapse', function (e) {
stickyFoot();
})


$(document).ready(function() {
$('#uc-header .container').fadeIn('slow');
});

})
2 changes: 1 addition & 1 deletion js/min/cs.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions sass/_content.scss
Expand Up @@ -245,4 +245,8 @@ a.btn {
}
}
}
}

.ui-datepicker-header {
color:black;
}
18 changes: 1 addition & 17 deletions sass/_nav.scss
Expand Up @@ -168,25 +168,9 @@ $nav-z: 9999;
#mega-menu-primary {margin-bottom:0;}
.mega-sub-menu {
list-style-type:none;

li.mega-menu-item a {
padding-top:7px!important;
padding-bottom:7px !important;
line-height:1.5em!important;
}
}
#megamenu-mobile-title {
font-size:1.3em;
padding:.8em 90px .8em .8em;
padding:.8em;
margin:0;
}
.mega-menu-toggle {
position:absolute;
right:0;
top:-3.2em;
}

#megamenu-mobile-title a,
#megamenu-mobile-title a:hover {
color: $site-title-color;
}
10 changes: 9 additions & 1 deletion sass/_titlebar.scss
Expand Up @@ -4,7 +4,15 @@
#uc-header{
border-bottom:1px solid transparent;
border-bottom-color:$uc-header-bottom-border-color;
}
min-height:56px;
background-color:#0F1938;
overflow:hidden;
height:56px;

.container {
display: none;
}
}

#uc-site-header {
padding-top:30px;
Expand Down
7 changes: 7 additions & 0 deletions sass/_widgets.scss
Expand Up @@ -522,6 +522,13 @@
}


&.uc-contact-widget {
.table-responsive {
border:none;
}
}


// EVENTS CALENDAR WIDGET


Expand Down
2 changes: 1 addition & 1 deletion sidebar.php
Expand Up @@ -5,7 +5,7 @@
* @package cornerstone
*/
?>
<div id="page-sidebar" class="col-sm-3 widget-area" role="complementary">
<div id="page-sidebar" class="col-md-3 widget-area" role="complementary">
<?php if ( ! dynamic_sidebar( 'sidebar' ) ) : ?>

<aside id="search" class="widget widget_search">
Expand Down
44 changes: 27 additions & 17 deletions style.css
Expand Up @@ -7191,6 +7191,13 @@ button.close {
#uc-header {
border-bottom: 1px solid transparent;
border-bottom-color: white;
min-height: 56px;
background-color: #0F1938;
overflow: hidden;
height: 56px;
}
#uc-header .container {
display: none;
}

#uc-site-header {
Expand Down Expand Up @@ -7372,29 +7379,13 @@ button.close {
.mega-sub-menu {
list-style-type: none;
}
.mega-sub-menu li.mega-menu-item a {
padding-top: 7px !important;
padding-bottom: 7px !important;
line-height: 1.5em !important;
}

#megamenu-mobile-title {
font-size: 1.3em;
padding: .8em 90px .8em .8em;
padding: .8em;
margin: 0;
}

.mega-menu-toggle {
position: absolute;
right: 0;
top: -3.2em;
}

#megamenu-mobile-title a,
#megamenu-mobile-title a:hover {
color: black;
}

/* - - - - - - - - - - - - - - - - - - -
== Header Image
- - - - - - - - - - - - - - - - - - - */
Expand Down Expand Up @@ -7761,6 +7752,9 @@ button.close {
.home #content .widget.uc-contact-widget td.uc-output-more {
word-break: break-all;
}
.home #content .widget.uc-contact-widget .table-responsive {
border: none;
}
.home #content .widget .uc-cal {
font: inherit;
padding: 0 !important;
Expand Down Expand Up @@ -8159,6 +8153,9 @@ button.close {
.home #content .panel-grid .widget.uc-contact-widget td.uc-output-more {
word-break: break-all;
}
.home #content .panel-grid .widget.uc-contact-widget .table-responsive {
border: none;
}
.home #content .panel-grid .widget .uc-cal {
font: inherit;
padding: 0 !important;
Expand Down Expand Up @@ -8554,6 +8551,9 @@ button.close {
#page-sidebar .widget.uc-contact-widget td.uc-output-more {
word-break: break-all;
}
#page-sidebar .widget.uc-contact-widget .table-responsive {
border: none;
}
#page-sidebar .widget .uc-cal {
font: inherit;
padding: 0 !important;
Expand Down Expand Up @@ -8953,6 +8953,9 @@ button.close {
.subpage .widget.uc-contact-widget td.uc-output-more {
word-break: break-all;
}
.subpage .widget.uc-contact-widget .table-responsive {
border: none;
}
.subpage .widget .uc-cal {
font: inherit;
padding: 0 !important;
Expand Down Expand Up @@ -9503,6 +9506,10 @@ a.btn {
display: flex !important;
}

.ui-datepicker-header {
color: black;
}

/* - - - - - - - - - - - - - - - - - - -
== Captions
- - - - - - - - - - - - - - - - - - - */
Expand Down Expand Up @@ -10265,6 +10272,9 @@ body.sticky .ie8 #footers {
#mega-footer .widget.uc-contact-widget td.uc-output-more {
word-break: break-all;
}
#mega-footer .widget.uc-contact-widget .table-responsive {
border: none;
}
#mega-footer .widget .uc-cal {
font: inherit;
padding: 0 !important;
Expand Down

0 comments on commit 54285ec

Please sign in to comment.