diff --git a/css/widgets.css b/css/widgets.css index 918cf9c..ecc7be8 100644 --- a/css/widgets.css +++ b/css/widgets.css @@ -1,39 +1,3 @@ -/*-------------------------------------------------------------- -9.0 Widgets ---------------------------------------------------------------*/ -.widget { - border: 1px solid transparent; - border-width: 1px; - border-color: #cccccc; - border-radius: 0; - margin: 0 0 1.5em 0; - padding: none; - background-color: white; - color: black; -} -.widget a { - color: blue; -} -.widget a:hover { - color: red; -} -.widget .widget-head { - padding: 0.5em; - border: 1px solid transparent; - border-width: 0 0 1px 0; - border-color: #cccccc; -} -.widget .widget-head h2 { - font-size: 1em; - margin: 0; -} - -/* Make sure select elements fit in widgets */ -.widget select { - max-width: 100%; -} - -/* Search widget */ -.widget_search .search-submit { - display: none; -} +/* - - - - - - - - - - - - - - - - - - - + == Widgets +- - - - - - - - - - - - - - - - - - - */ diff --git a/sass/cal.scss b/sass/cal.scss index b00fa89..a697644 100644 --- a/sass/cal.scss +++ b/sass/cal.scss @@ -118,103 +118,4 @@ } } } - - - - - - - - -/* - ul.btn-multi{ - margin-bottom:.5em; - - li{ - - ul{ - - padding: 0px 0px 0px 12px; - - li{ - - &.month-arrow{ - - a.icon{ - - span.glyphicons{ - padding: 0px 0px 0px 5px; - - &:before{ - color:#fff; - font-size: 14px; - display:block; - position: relative; - } - } - } - } - } - } - a.btn-toggle{ - margin-left:10px; - font-size:14px; - color:#777; - text-align: center; - } - } - } - } - */ - /* - #events-grid.table { - tbody{ - tr{ - - th{ - width:14%; - text-align:right; - - span{ - font-weight:normal; - color:#777; - font-size:12px !important; - } - } - td{ - border-left: 1px solid #eee; - border-right: 1px solid #eee; - border-bottom: 1px solid #eee; - background: #fff; - text-align:left; - height: 90px; - padding:1px; - ol.event-list{ - li{ - span.event-time{ - font-size:11px !important; - padding: 0px 0px 0px 2px !important; - } - ol{ - padding: 0px 2px 0px 2px !important; - li{ - background: rgba(15,25,56, 0.1); - border:1px solid rgba(15,25,56, 0.2) !important; - padding: 0px 3px 0px 3px !important; - margin-bottom: 2px !important; - a.event-link{ - strong{ - font-weight:normal; - font-size:12px !important; - } - } - } - } - } - } - } - } - } - } - */ } \ No newline at end of file diff --git a/sass/content.scss b/sass/content.scss index a9b658e..66393d3 100644 --- a/sass/content.scss +++ b/sass/content.scss @@ -34,7 +34,7 @@ code { @include cs-word-break; } .page { - @include uc-cal; + //@include uc-cal; } /* POSTS diff --git a/sass/test.scss b/sass/test.scss new file mode 100644 index 0000000..1b300b3 --- /dev/null +++ b/sass/test.scss @@ -0,0 +1,175 @@ +.uc-cal { + margin:$widget-content-margin !important; + padding:0 !important; +} + +// reset all the damn css from the damn plugin damn it. I apologize to future generations for all the !importants. + +.uc-cal * { + + margin: 0 !important; + padding: 0!important; + border: 0!important; + font-size: 100%!important; + font: inherit!important; + vertical-align: baseline!important; + background:none!important; + position:inherit!important; + width:auto !important; + height: auto !important; + color:inherit !important; + display:block !important; + box-shadow:none !important; + text-transform:none !important; + min-height:inherit !important; + border-radius: 0 !important; + +} + +/*- - - - - */ + +// SHARED +.uc-cal-item { + @if $parent == '#megafooter' { + margin: $megafooter-ecw-item-margin !important; + } else { + margin: $ecw-item-margin !important; + } + + .uc-cal-event { + position:relative !important; + + .uc-cal-event-date { + float: left !important; + position: relative !important; + top:0; + } + + .uc-cal-event-title { + @if $parent == '#megafooter' { + color:$megafooter-ecw-title-color !important; + } else { + color:$ecw-title-color !important; + } + } + + &:hover { + .uc-cal-event-title { + @if $parent == '#megafooter' { + color:$megafooter-ecw-title-color-hover !important; + } else { + color:$ecw-title-color-hover !important; + } + } + } + + + &:after { + visibility: hidden !important; + display: block !important; + font-size: 0!important; + content: " "!important; + clear: both!important; + height: 0!important; + } + + } +} + + +/**/ + +// ICON VIEW +.uc-iconcal { + .uc-cal-list { + .uc-cal-item { + .uc-cal-event { + + padding-left: #{($ecw-icon-dateWidth + $ecw-icon-gutter)}px !important; + + .uc-cal-event-date { + + left:-#{($ecw-icon-dateWidth + $ecw-icon-gutter)}px; + margin-right:-#{($ecw-icon-dateWidth)}px !important; + width:#{($ecw-icon-dateWidth)}px !important; + + .uc-cal-event-month{ + padding: $ecw-icon-month-padding !important; + border-width:$ecw-icon-month-border-width !important; + border-style:$ecw-icon-month-border-style !important; + text-align:center !important; + font-size:$ecw-icon-month-font-size !important; + text-transform:$ecw-icon-month-font-transform !important; + letter-spacing: $ecw-icon-month-font-letter-spacing !important; + + @if $parent == '#megafooter' { + border-color: $megafooter-ecw-icon-month-border-color !important; + background-color:$megafooter-ecw-icon-month-bg !important; + color: $megafooter-ecw-icon-month-color!important; + } else { + border-color: $ecw-icon-month-border-color !important; + background-color:$ecw-icon-month-bg !important; + color: $ecw-icon-month-color!important; + } + } + .uc-cal-event-day { + + padding: $ecw-icon-day-padding !important; + border-width:$ecw-icon-day-border-width !important; + border-style:$ecw-icon-day-border-style !important; + text-align:center !important; + font-size:$ecw-icon-day-font-size !important; + + @if $parent == '#megafooter' { + border-color: $megafooter-ecw-icon-day-border-color !important; + background-color:$megafooter-ecw-icon-day-bg !important; + } else { + border-color: $ecw-icon-day-border-color !important; + background-color:$ecw-icon-day-bg !important; + } + } + } + .uc-cal-event-time { + @if $parent == '#megafooter' { + color: $megafooter-ecw-time-color !important; + } else { + color: $ecw-time-color !important; + } + } + + // hover styles + &:hover { + .uc-cal-event-month{ + + } + .uc-cal-event-day { + } + .uc-cal-event-title { + } + .uc-cal-event-time { + } + } + + } // cal-event + + + } //cal-item + } // cal-list + + +} //icon-VIEW + +/**/ + +// LIST VIEW +.uc-listcal { + + padding-left:$ecw-list-dateWidth !important; + + .uc-cal-event-date { + width: $ecw-list-dateWidth !important; + left:-($ecw-list-dateWidth) !important; + margin-right:-($ecw-list-dateWidth) !important; + } + } +} \ No newline at end of file diff --git a/sass/variables.scss b/sass/variables.scss index add851f..430a94e 100644 --- a/sass/variables.scss +++ b/sass/variables.scss @@ -62,7 +62,32 @@ $widget-head-color: $widget-color !default; $widget-head-border-width: 0 0 1px 0 !default; $widget-head-border-color: $widget-border-color !default; $widget-head-padding: .5em .5em .5em 1em !default; -$widget-head-size: $widget-size !default; +$widget-head-size: $widget-size !default; + + +// Megafooter often inverts the tones, so these variables allow you to override teh defaults used in the homepage/sidebars. + +$megafooter-widget-border-color: $widget-border-color !default; +$megafooter-widget-border-radius: $widget-border-radius !default; +$megafooter-widget-border-width: $widget-border-width !default; +$megafooter-widget-margin: $widget-margin !default; +$megafooter-widget-padding: $widget-padding !default; +$megafooter-widget-bg: $widget-bg !default; +$megafooter-widget-content-margin: $widget-content-margin !default; +$megafooter-widget-color: $widget-color !default; +$megafooter-widget-size: $widget-size !default; +$megafooter-widget-link-color: $widget-link-color !default; +$megafooter-widget-link-hover: $widget-link-hover !default; + +$megafooter-widget-head-bg: $widget-head-bg !default; +$megafooter-widget-head-color: $widget-head-color !default; +$megafooter-widget-head-border-width: $widget-head-border-width !default; +$megafooter-widget-head-border-color: $widget-head-border-color !default; +$megafooter-widget-head-padding: $widget-head-padding !default; +$megafooter-widget-head-size: $widget-head-size !default; + + + /* Specific Widgets */ @@ -70,10 +95,10 @@ $widget-head-size: $widget-size !default; // Events Calendar // SHARED -$uc-ecw-item-margin: 1em 0 !default; -$uc-ecw-font: inherit !default; -$uc-ecw-title-color: $widget-link-color !default; -$uc-ecw-title-color-hover: $widget-link-hover !default; +$uc-ecw-item-margin: 1em 0 !default; +$uc-ecw-font: inherit !default; +$uc-ecw-title-color: $widget-link-color !default; +$uc-ecw-title-color-hover: $widget-link-hover !default; // LIST VIEW @@ -115,6 +140,14 @@ $uc-ecw-icon-day-font-size: 130% !default; $uc-ecw-time-color: inherit !default; + + + + + + + + /* == Main Content Area */ $in-page-menu-border: #e7e7e7 !default; @@ -153,7 +186,7 @@ $uc-footer-link-hover: $footers-link-hover !default; $uc-footer-link-spacing: 1em !default; -@mixin uc-cal() { +@mixin uc-ecw() { .uc-cal { margin:$widget-content-margin !important; diff --git a/sass/widgets.scss b/sass/widgets.scss index 4ed75c3..f589406 100644 --- a/sass/widgets.scss +++ b/sass/widgets.scss @@ -1,273 +1,499 @@ /* - - - - - - - - - - - - - - - - - - - == Widgets - - - - - - - - - - - - - - - - - - - */ -.widget { - @include cs-word-break; - overflow:hidden; - - border:1px solid transparent; - border-width:$widget-border-width; - border-color: $widget-border-color; - border-radius: $widget-border-radius; - - margin: $widget-margin; - padding: $widget-padding; - background-color: $widget-bg; - color:$widget-color; - a { - color: $widget-link-color; +// Create a mixin with parent as optional argument. +// based on the argument, different variables are referenced. - &:hover { - color:$widget-link-hover; - } - } - .btn-primary, - .btn-success, - .btn-info, - .btn-warning, - .btn-danger, - .btn-primary:hover, - .btn-success:hover, - .btn-info:hover, - .btn-warning:hover, - .btn-danger:hover { - color:white; - } +@mixin widgets($parent){ - - - .widget-head { - padding: $widget-head-padding; - + .widget { + @include cs-word-break; + overflow:hidden; border:1px solid transparent; - border-width: $widget-head-border-width; - border-color: $widget-head-border-color; + + @if $parent == '#megafooter' { + border-width:$megafooter-widget-border-width; + border-color: $megafooter-widget-border-color; + border-radius: $megafooter-widget-border-radius; + margin: $megafooter-widget-margin; + padding: $megafooter-widget-padding; + background-color: $megafooter-widget-bg; + color:$megafooter-widget-color; + } else { + border-width:$widget-border-width; + border-color: $widget-border-color; + border-radius: $widget-border-radius; + margin: $widget-margin; + padding: $widget-padding; + background-color: $widget-bg; + color:$widget-color; + } - h2 { - font-size: $widget-head-size; - margin: 0; - color: $widget-head-color; + a { + @if $parent == '#megafooter' { + color: $megafooter-widget-link-color; + } else { + color: $widget-link-color; + } + + &:hover { + @if $parent == '#megafooter' { + color:$megafooter-widget-link-hover; + } else { + color:$widget-link-hover; + } + } } - } + .widget-head { + + border:1px solid transparent; + + @if $parent == '#megafooter' { + padding: $widget-head-padding; + border-width: $widget-head-border-width; + border-color: $widget-head-border-color; + } else { + padding: $megafooter-widget-head-padding; + border-width: $megafooter-widget-head-border-width; + border-color: $megafooter-widget-head-border-color; + } - form { - margin:$widget-content-margin; - } + h2 { + margin: 0; + + @if $parent == '#megafooter' { + font-size: $megafooter-widget-head-size; + color: $megafooter-widget-head-color; + } else { + font-size: $widget-head-size; + color: $widget-head-color; + } + } - ul, ol { - list-style-type:none; - padding:0; - margin:$widget-content-margin; + } + + form { + @if $parent == '#megafooter' { + margin:$megafooter-widget-content-margin; + } else { + margin:$widget-content-margin; + } + } - li { - margin-bottom:.75em; + ul, + ol { + list-style-type:none; + padding:0; + @if $parent == '#megafooter' { + margin:$megafooter-widget-content-margin; + } else { + margin:$widget-content-margin; + } - ul { - padding:0; - margin:.5em 0 .5em 2em; - list-style-type:disc; + li { + margin-bottom:.75em; - li { - margin-bottom:.5em; - ul { - list-style-type:circle; + ul { + padding:0; + margin:.5em 0 .5em 2em; + list-style-type:disc; + + li { + margin-bottom:.5em; + ul { + list-style-type:circle; + } } } - } - ol { - padding:0; - margin:.5em 0 .5em 2em; - list-style-type:decimal; - li { - margin-bottom:.5em; + ol { + padding:0; + margin:.5em 0 .5em 2em; + list-style-type:decimal; + li { + margin-bottom:.5em; + } } } + } - - } - -} -* html .widget.widget_dpe_fp_widget .dpe-flexible-posts li a{ - height:1% } - -/* Make sure select elements fit in widgets */ -.widget select { - max-width: 100%; -} - -.widget { - /* === CORE WP Widgets - */ - &.widget_archive {} - &.widget_nav_menu{} - &.widget_meta {} - &.widget_recent_comments {} - &.widget_recent_entries {} - &.widget_rss {} - &.widget_search {} - &.widget_text { - .textwidget { - margin:$widget-content-margin; - } - } - &.widget_tag_cloud { - .tagcloud { - margin:$widget-content-margin; + * html .widget.widget_dpe_fp_widget .dpe-flexible-posts li a{ + height:1% } - + + /* Make sure select elements fit in widgets */ + .widget select { + max-width: 100%; } - /* === 3rd Party Widgets - */ - &.widget_black_studio_tinymce { - .textwidget { - margin:$widget-content-margin; + + .widget { + /* === CORE WP Widgets + */ + &.widget_archive {} + &.widget_nav_menu{} + &.widget_meta {} + &.widget_recent_comments {} + &.widget_recent_entries {} + &.widget_rss {} + &.widget_search {} + &.widget_text { + .textwidget { + @if $parent == '#megafooter' { + margin:$megafooter-widget-content-margin; + } else { + margin:$widget-content-margin; + } + } } - ul { - li { - list-style-type: disc; + &.widget_tag_cloud { + .tagcloud { + @if $parent == '#megafooter' { + margin:$megafooter-widget-content-margin; + } else { + margin:$widget-content-margin; + } } } - ol { - li { - list-style-type:decimal; + + /* === 3rd Party Widgets + */ + &.widget_black_studio_tinymce { + .textwidget { + @if $parent == '#megafooter' { + margin:$megafooter-widget-content-margin; + } else { + margin:$widget-content-margin; + } + } + ul { + li { + list-style-type: disc; + } + } + ol { + li { + list-style-type:decimal; + } } } - } - &.simple-social-icons { - ul { - margin:.5em!important; - li { - margin:.5em!important; + &.simple-social-icons { + ul { + margin:.5em!important; + li { + margin:.5em!important; + } + } + //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; + content:none; } } - .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; - content:none; + &.widget_rcpt { + ul { + margin:0; + + .rcpt_item_title { + padding:.5em 5% 0; + font-weight:bold; + .rcpt_item_image{ + margin-left:-9%; + margin-bottom:1em; + width:117%; + img { + width:100%; + } + } + } + .rcpt_item_excerpt { + margin:.5em 5% 1em; + } + .rcpt_item_date { + margin:.5em 5% 1em; + } + } } - } - &.widget_rcpt { - ul { - margin:0; - - .rcpt_item_title { - padding:.5em 5% 0; - font-weight:bold; - .rcpt_item_image{ - margin-left:-9%; - margin-bottom:1em; - width:117%; - img { - width:100%; - } + &.widget_sp_image { + padding:0; + border:none; + background-color:transparent; + } + &.widget_metaslider_widget { + padding:0; + background-color:transparent; + border:none; + + } + &.widget_dpe_fp_widget{ + padding:0; + background-color:transparent; + .dpe-flexible-posts{ + li{ + padding: 0.1em 0px 0.1em 0px; + display:block; + background-color:transparent; + a{ + margin:0; + position:relative; + display:inline-block; + .attachment-thumbnail{ + height: 60px; + width: 60px; + margin-right:10px; + margin-bottom:10px; + float:left; + } + .attachment-medium{ + width:48%; + margin-right:10px; + margin-bottom:10px; + float:left; + } + .attachment-large{ + max-width:100%; + margin-right:10px; + margin-bottom:10px; + float:left; + clear:right; + } + .title{ + display:block; + position:relative; + font-size: 1em; + font-weight: normal; + } + &:after{ + visibility: hidden; + display: block; + font-size: 0; + content: " "; + clear: both; + height: 0; + } + } } } - .rcpt_item_excerpt { - margin:.5em 5% 1em; + } + + + /* === UCONN Widgets + */ + &.uc-contact-widget { + th { + white-space:nowrap; } - .rcpt_item_date { - margin:.5em 5% 1em; + td{ + &.uc-output-email{ + word-break: break-all; + } + &.uc-output-more{ + word-break: break-all; + } + } } - } - &.widget_sp_image { - padding:0; - border:none; - background-color:transparent; - } - &.widget_metaslider_widget { - padding:0; - background-color:transparent; - border:none; + + // EVENTS CALENDAR WIDGET + + &.uc-ecw { - } - &.widget_dpe_fp_widget{ - padding:0; - background-color:transparent; - .dpe-flexible-posts{ - li{ - padding: 0.1em 0px 0.1em 0px; - display:block; - background-color:transparent; - a{ - margin:0; - position:relative; - display:inline-block; - .attachment-thumbnail{ - height: 60px; - width: 60px; - margin-right:10px; - margin-bottom:10px; - float:left; - } - .attachment-medium{ - width:48%; - margin-right:10px; - margin-bottom:10px; - float:left; + .uc-cal { + margin:$widget-content-margin !important; + padding:0 !important; + } + + // reset all the damn css from the damn plugin damn it. I apologize to future generations for all the !importants. + + .uc-cal * { + + margin: 0 !important; + padding: 0!important; + border: 0!important; + font-size: 100%!important; + font: inherit!important; + vertical-align: baseline!important; + background:none!important; + position:inherit!important; + width:auto !important; + height: auto !important; + color:inherit !important; + display:block !important; + box-shadow:none !important; + text-transform:none !important; + min-height:inherit !important; + border-radius: 0 !important; + + } + + /*- - - - - */ + + // SHARED + .uc-cal-item { + @if $parent == '#megafooter' { + margin: $megafooter-ecw-item-margin !important; + } else { + margin: $ecw-item-margin !important; + } + + .uc-cal-event { + position:relative !important; + + .uc-cal-event-date { + float: left !important; + position: relative !important; + top:0; } - .attachment-large{ - max-width:100%; - margin-right:10px; - margin-bottom:10px; - float:left; - clear:right; + + .uc-cal-event-title { + @if $parent == '#megafooter' { + color:$megafooter-ecw-title-color !important; + } else { + color:$ecw-title-color !important; + } } - .title{ - display:block; - position:relative; - font-size: 1em; - font-weight: normal; + + &:hover { + .uc-cal-event-title { + @if $parent == '#megafooter' { + color:$megafooter-ecw-title-color-hover !important; + } else { + color:$ecw-title-color-hover !important; + } + } } - &:after{ - visibility: hidden; - display: block; - font-size: 0; - content: " "; - clear: both; - height: 0; + + + &:after { + visibility: hidden !important; + display: block !important; + font-size: 0!important; + content: " "!important; + clear: both!important; + height: 0!important; } + } } - } - } + + + /**/ + + // ICON VIEW + .uc-iconcal { + .uc-cal-list { + .uc-cal-item { + .uc-cal-event { + padding-left: #{($ecw-icon-dateWidth + $ecw-icon-gutter)}px !important; + + .uc-cal-event-date { + + left:-#{($ecw-icon-dateWidth + $ecw-icon-gutter)}px; + margin-right:-#{($ecw-icon-dateWidth)}px !important; + width:#{($ecw-icon-dateWidth)}px !important; + + .uc-cal-event-month{ + padding: $ecw-icon-month-padding !important; + border-width:$ecw-icon-month-border-width !important; + border-style:$ecw-icon-month-border-style !important; + text-align:center !important; + font-size:$ecw-icon-month-font-size !important; + text-transform:$ecw-icon-month-font-transform !important; + letter-spacing: $ecw-icon-month-font-letter-spacing !important; + + @if $parent == '#megafooter' { + border-color: $megafooter-ecw-icon-month-border-color !important; + background-color:$megafooter-ecw-icon-month-bg !important; + color: $megafooter-ecw-icon-month-color!important; + } else { + border-color: $ecw-icon-month-border-color !important; + background-color:$ecw-icon-month-bg !important; + color: $ecw-icon-month-color!important; + } + } + .uc-cal-event-day { + + padding: $ecw-icon-day-padding !important; + border-width:$ecw-icon-day-border-width !important; + border-style:$ecw-icon-day-border-style !important; + text-align:center !important; + font-size:$ecw-icon-day-font-size !important; + + @if $parent == '#megafooter' { + border-color: $megafooter-ecw-icon-day-border-color !important; + background-color:$megafooter-ecw-icon-day-bg !important; + } else { + border-color: $ecw-icon-day-border-color !important; + background-color:$ecw-icon-day-bg !important; + } + } + } + .uc-cal-event-time { + @if $parent == '#megafooter' { + color: $megafooter-ecw-time-color !important; + } else { + color: $ecw-time-color !important; + } + } + + // hover styles + &:hover { + .uc-cal-event-month{ + + } + .uc-cal-event-day { + } + .uc-cal-event-title { + } + .uc-cal-event-time { + } + } + + } // cal-event + + + } //cal-item + } // cal-list + + + } //icon-VIEW + + /**/ + + // LIST VIEW + .uc-listcal { - /* === UCONN Widgets - */ - &.uc-contact-widget { - th { - white-space:nowrap; - } - td{ - &.uc-output-email{ - word-break: break-all; - } - &.uc-output-more{ - word-break: break-all; + padding-left:$ecw-list-dateWidth !important; + + .uc-cal-event-date { + width: $ecw-list-dateWidth !important; + left:-($ecw-list-dateWidth) !important; + margin-right:-($ecw-list-dateWidth) !important; + } + } } + + /**/ + + }// END EVENTS CALENDAR WIDGET + &.uc-hours-widget { + caption { + padding:.5em; + } } - } - &.uc-ecw { - - // these styles contained in variables.scss, in the @uc-cal mixin. - - } - &.uc-hours-widget { - caption { - padding:.5em; + &.uc-ssw { } } - &.uc-ssw {} - - - } +@include widgets('#mega-footer'); + + + diff --git a/style.css b/style.css index b56545f..80a39f1 100644 --- a/style.css +++ b/style.css @@ -6991,94 +6991,6 @@ code { */ } -.page .uc-cal { - margin: 1em !important; - padding: 0 !important; -} -.page .uc-cal * { - margin: 0 !important; - padding: 0 !important; - border: 0 !important; - font-size: 100% !important; - font: inherit !important; - vertical-align: baseline !important; - background: none !important; - position: inherit !important; - width: auto !important; - height: auto !important; - color: inherit !important; - display: block !important; - box-shadow: none !important; - text-transform: none !important; - min-height: inherit !important; - border-radius: 0 !important; -} -.page .uc-cal-item { - margin: 1em 0 !important; -} -.page .uc-cal-item .uc-cal-event { - position: relative !important; -} -.page .uc-cal-item .uc-cal-event .uc-cal-event-date { - float: left !important; - position: relative !important; - top: 0; -} -.page .uc-cal-item .uc-cal-event .uc-cal-event-title { - color: #428bca !important; -} -.page .uc-cal-item .uc-cal-event:hover .uc-cal-event-title { - color: #2a6496 !important; -} -.page .uc-cal-item .uc-cal-event:after { - visibility: hidden !important; - display: block !important; - font-size: 0 !important; - content: " " !important; - clear: both !important; - height: 0 !important; -} -.page .uc-iconcal .uc-cal-list .uc-cal-item .uc-cal-event { - padding-left: 70px !important; -} -.page .uc-iconcal .uc-cal-list .uc-cal-item .uc-cal-event .uc-cal-event-date { - left: -70px; - margin-right: -55px !important; - width: 55px !important; -} -.page .uc-iconcal .uc-cal-list .uc-cal-item .uc-cal-event .uc-cal-event-date .uc-cal-event-month { - padding: 0.7em 0 0 !important; - border-width: 1px 1px 0 !important; - border-style: solid !important; - border-color: #cccccc !important; - text-align: center !important; - background-color: white !important; - font-size: 70% !important; - color: inherit !important; - text-transform: uppercase !important; - letter-spacing: 1px !important; -} -.page .uc-iconcal .uc-cal-list .uc-cal-item .uc-cal-event .uc-cal-event-date .uc-cal-event-day { - padding: 0 0 0.2em 0 !important; - border-width: 0 1px 1px !important; - border-style: solid !important; - border-color: #cccccc !important; - text-align: center !important; - background-color: white !important; - font-size: 130% !important; -} -.page .uc-iconcal .uc-cal-list .uc-cal-item .uc-cal-event .uc-cal-event-time { - color: inherit !important; -} -.page .uc-listcal .uc-cal-event { - padding-left: 3.7em !important; -} -.page .uc-listcal .uc-cal-event .uc-cal-event-date { - width: 3.7em !important; - left: -3.7em !important; - margin-right: -3.7em !important; -} - /* POSTS --------------------------------------------------------------*/ .post { @@ -7309,6 +7221,8 @@ object { */ overflow: hidden; border: 1px solid transparent; +} +.widget else { border-width: 1px; border-color: #cccccc; border-radius: 4px; @@ -7317,63 +7231,65 @@ object { background-color: white; color: black; } -.widget a { +.widget a else { color: #428bca; } -.widget a:hover { +.widget a:hover else { color: #2a6496; } -.widget .btn-primary, -.widget .btn-success, -.widget .btn-info, -.widget .btn-warning, -.widget .btn-danger, -.widget .btn-primary:hover, -.widget .btn-success:hover, -.widget .btn-info:hover, -.widget .btn-warning:hover, -.widget .btn-danger:hover { - color: white; -} .widget .widget-head { - padding: 0.5em 0.5em 0.5em 1em; border: 1px solid transparent; +} +.widget .widget-head else { + padding: 0.5em 0.5em 0.5em 1em; border-width: 0 0 1px 0; border-color: #cccccc; } .widget .widget-head h2 { - font-size: 1em; margin: 0; +} +.widget .widget-head h2 else { + font-size: 1em; color: black; } -.widget form { +.widget form else { margin: 1em; } -.widget ul, .widget ol { +.widget ul, +.widget ol { list-style-type: none; padding: 0; +} +.widget ul else, +.widget ol else { margin: 1em; } -.widget ul li, .widget ol li { +.widget ul li, +.widget ol li { margin-bottom: .75em; } -.widget ul li ul, .widget ol li ul { +.widget ul li ul, +.widget ol li ul { padding: 0; margin: .5em 0 .5em 2em; list-style-type: disc; } -.widget ul li ul li, .widget ol li ul li { +.widget ul li ul li, +.widget ol li ul li { margin-bottom: .5em; } -.widget ul li ul li ul, .widget ol li ul li ul { +.widget ul li ul li ul, +.widget ol li ul li ul { list-style-type: circle; } -.widget ul li ol, .widget ol li ol { +.widget ul li ol, +.widget ol li ol { padding: 0; margin: .5em 0 .5em 2em; list-style-type: decimal; } -.widget ul li ol li, .widget ol li ol li { +.widget ul li ol li, +.widget ol li ol li { margin-bottom: .5em; } @@ -7394,13 +7310,13 @@ object { /* === UCONN Widgets */ } -.widget.widget_text .textwidget { +.widget.widget_text .textwidget else { margin: 1em; } -.widget.widget_tag_cloud .tagcloud { +.widget.widget_tag_cloud .tagcloud else { margin: 1em; } -.widget.widget_black_studio_tinymce .textwidget { +.widget.widget_black_studio_tinymce .textwidget else { margin: 1em; } .widget.widget_black_studio_tinymce ul li { @@ -7507,6 +7423,9 @@ object { .widget.uc-contact-widget td.uc-output-more { word-break: break-all; } +.widget.uc-ecw { + /**/ +} .widget.uc-hours-widget caption { padding: .5em; } @@ -7740,99 +7659,6 @@ q:before, table q:after { display: none; } -#events-table { - /* - ul.btn-multi{ - margin-bottom:.5em; - - li{ - - ul{ - - padding: 0px 0px 0px 12px; - - li{ - - &.month-arrow{ - - a.icon{ - - span.glyphicons{ - padding: 0px 0px 0px 5px; - - &:before{ - color:#fff; - font-size: 14px; - display:block; - position: relative; - } - } - } - } - } - } - a.btn-toggle{ - margin-left:10px; - font-size:14px; - color:#777; - text-align: center; - } - } - } - } - */ - /* - #events-grid.table { - tbody{ - tr{ - - th{ - width:14%; - text-align:right; - - span{ - font-weight:normal; - color:#777; - font-size:12px !important; - } - } - td{ - border-left: 1px solid #eee; - border-right: 1px solid #eee; - border-bottom: 1px solid #eee; - background: #fff; - text-align:left; - height: 90px; - padding:1px; - ol.event-list{ - li{ - span.event-time{ - font-size:11px !important; - padding: 0px 0px 0px 2px !important; - } - ol{ - padding: 0px 2px 0px 2px !important; - li{ - background: rgba(15,25,56, 0.1); - border:1px solid rgba(15,25,56, 0.2) !important; - padding: 0px 3px 0px 3px !important; - margin-bottom: 2px !important; - a.event-link{ - strong{ - font-weight:normal; - font-size:12px !important; - } - } - } - } - } - } - } - } - } - } - */ -} #events-table #events-toolbar { margin-bottom: 1em; } @@ -7922,10 +7748,10 @@ body.sticky .ie8 #footers { #mega-footer { padding-top: 1em; - background-color: transparent; + background-color: white; } #mega-footer .widget { - color: #333333; + color: black; background-color: transparent; border: none; } @@ -7936,8 +7762,8 @@ body.sticky .ie8 #footers { color: #2a6496; } #mega-footer .widget .widget-head { - background-color: transparent; - color: #333333; + background-color: white; + color: black; border: none; } diff --git a/style.scss b/style.scss index 951977d..5bc8508 100644 --- a/style.scss +++ b/style.scss @@ -33,6 +33,7 @@ $icon-font-path: "../../global/bootstrap-sass-master/assets/fonts/bootstrap/" !d @import "sass/cal.scss"; @import "sass/in-page-menus.scss"; @import "sass/footer.scss"; +@import "sass/test.scss"; /*