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

Adding missing variables #112

Merged
merged 1 commit into from
Apr 23, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 24 additions & 5 deletions sass/widgets.scss
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,15 @@

@if $parent == "#mega-footer" {
padding: $megafooter-widget-head-padding;
border-width: $megafooter-widget-head-border-width;
border-color: $megafooter-widget-head-border-color;
border-width: $megafooter-widget-head-border-width;
border-color: $megafooter-widget-head-border-color;
background-color: $megafooter-widget-head-bg;

} @else {
padding: $widget-head-padding;
border-width: $widget-head-border-width;
border-color: $widget-head-border-color;
border-width: $widget-head-border-width;
border-color: $widget-head-border-color;
background-color:$widget-head-bg;
}

h2 {
Expand All @@ -78,7 +80,23 @@
}

}


a{
@if $parent == "#mega-footer" {
color: $megafooter-widget-link-color;
} @else {
color: $widget-link-color;
}
&:hover{
@if $parent == "#mega-footer" {
color: $megafooter-widget-link-hover;
} @else {
color: $widget-link-hover;
}
}
}


form {
@if $parent == "#mega-footer" {
margin:$megafooter-widget-content-margin;
Expand Down Expand Up @@ -328,6 +346,7 @@
// EVENTS CALENDAR WIDGET

&.uc-ecw {
font:$ecw-font;

.uc-cal {
margin:$widget-content-margin !important;
Expand Down
Loading