mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
83 lines
2.2 KiB
SCSS
Executable File
83 lines
2.2 KiB
SCSS
Executable File
//
|
|
// Panel Variables
|
|
//
|
|
$include-html-panel-classes: $include-html-classes !default;
|
|
|
|
// We use these to control the background and border styles
|
|
$panel-bg: darken(#fff, 5%) !default;
|
|
$panel-border-style: solid !default;
|
|
$panel-border-size: 1px !default;
|
|
|
|
// We use this % to control how much we darken things on hover
|
|
$panel-function-factor: 10% !default;
|
|
$panel-border-color: darken($panel-bg, $panel-function-factor) !default;
|
|
|
|
// We use these to set default inner padding and bottom margin
|
|
$panel-margin-bottom: em-calc(20) !default;
|
|
$panel-padding: em-calc(20) !default;
|
|
|
|
// We use these to set default font colors
|
|
$panel-font-color: #333 !default;
|
|
$panel-font-color-alt: #fff !default;
|
|
|
|
$panel-header-adjust: true !default;
|
|
$callout-panel-link-color: #fff !default;
|
|
//
|
|
// Panel Mixins
|
|
//
|
|
|
|
// We use this mixin to create panels.
|
|
@mixin panel($bg:$panel-bg, $padding:$panel-padding, $adjust:$panel-header-adjust) {
|
|
|
|
@if $bg {
|
|
$bg-lightness: lightness($bg);
|
|
|
|
border-style: $panel-border-style;
|
|
border-width: $panel-border-size;
|
|
border-color: darken($bg, $panel-function-factor);
|
|
margin-bottom: $panel-margin-bottom;
|
|
padding: $padding;
|
|
|
|
background: $bg;
|
|
|
|
// Respect the padding, fool.
|
|
&>:first-child { margin-top: 0; }
|
|
&>:last-child { margin-bottom: 0; }
|
|
|
|
@if $adjust {
|
|
// We set the font color based on the darkness of the bg.
|
|
@if $bg-lightness >= 50% and $bg == blue { h1,h2,h3,h4,h5,h6,p { color: $panel-font-color-alt; } }
|
|
@else if $bg-lightness >= 50% { h1,h2,h3,h4,h5,h6,p { color: $panel-font-color; } }
|
|
@else { h1,h2,h3,h4,h5,h6,p { color: $panel-font-color-alt; } }
|
|
|
|
// reset header line-heights for panels
|
|
h1,h2,h3,h4,h5,h6 {
|
|
line-height: 1; margin-bottom: em-calc(20) / 2;
|
|
&.subheader { line-height: 1.4; }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Only include these classes if the option exists
|
|
@if $include-html-panel-classes != false {
|
|
|
|
/* Panels */
|
|
.panel { @include panel;
|
|
|
|
&.callout {
|
|
@include panel($primary-color);
|
|
@include inset-shadow($active:false);
|
|
a {
|
|
color: $callout-panel-link-color;
|
|
}
|
|
}
|
|
|
|
&.radius {
|
|
@include panel($bg:false);
|
|
@include radius;
|
|
}
|
|
|
|
}
|
|
|
|
} |