48 lines
1.1 KiB
SCSS
48 lines
1.1 KiB
SCSS
// Footer
|
|
// *******************************************************************************
|
|
|
|
@mixin template-footer-style($parent, $bg, $color: null, $active-color: null, $border: null) {
|
|
$colors: get-navbar-prop($bg, $active-color, $color, $border);
|
|
|
|
#{$parent} {
|
|
color: map-get($colors, color);
|
|
.layout-footer-fixed .layout-horizontal & {
|
|
background-color: map-get($colors, bg) !important;
|
|
}
|
|
|
|
.layout-footer-fixed .layout-wrapper:not(.layout-horizontal) & {
|
|
.footer-container {
|
|
background-color: map-get($colors, bg) !important;
|
|
}
|
|
}
|
|
|
|
.footer-link {
|
|
color: map-get($colors, active-color);
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: map-get($colors, active-color);
|
|
}
|
|
|
|
&.disabled {
|
|
color: map-get($colors, disabled-color) !important;
|
|
}
|
|
}
|
|
|
|
.footer-text {
|
|
color: map-get($colors, color);
|
|
}
|
|
|
|
.show > .footer-link,
|
|
.active > .footer-link,
|
|
.footer-link.show,
|
|
.footer-link.active {
|
|
color: map-get($colors, active-color);
|
|
}
|
|
|
|
hr {
|
|
border-color: map-get($colors, border);
|
|
}
|
|
}
|
|
}
|