Current Directory: /home/astoriaah/www/templates/yootheme/vendor/assets/uikit/src/scss/components
Viewing File: /home/astoriaah/www/templates/yootheme/vendor/assets/uikit/src/scss/components/placeholder.scss
// Name: Placeholder
// Description: Component to create placeholder boxes
//
// Component: `uk-placeholder`
//
// ========================================================================
// Variables
// ========================================================================
$placeholder-margin-vertical: $global-margin !default;
$placeholder-padding-vertical: $global-gutter !default;
$placeholder-padding-horizontal: $global-gutter !default;
$placeholder-background: $global-muted-background !default;
/* ========================================================================
Component: Placeholder
========================================================================== */
.uk-placeholder {
margin-bottom: $placeholder-margin-vertical;
padding: $placeholder-padding-vertical $placeholder-padding-horizontal;
background: $placeholder-background;
@if(mixin-exists(hook-placeholder)) {@include hook-placeholder();}
}
/* Add margin if adjacent element */
* + .uk-placeholder { margin-top: $placeholder-margin-vertical; }
/*
* Remove margin from the last-child
*/
.uk-placeholder > :last-child { margin-bottom: 0; }
// Hooks
// ========================================================================
@if(mixin-exists(hook-placeholder-misc)) {@include hook-placeholder-misc();}
// @mixin hook-placeholder(){}
// @mixin hook-placeholder-misc(){}