File: /home/nexper/public_html/sites/all/themes/zen/STARTERKIT/sass/_custom.scss
//
// Custom sass mixins
//
// To use a mixin in this file, add this line to the top of your .scss file:
// @import "base";
// Then to use a mixin for a particular rule, add this inside the ruleset's
// curly brackets:
// @include mix-in-name;
// element-invisible as defined by http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
@mixin element-invisible {
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
@if $legacy-support-for-ie6 or $legacy-support-for-ie7 {
clip: rect(1px 1px 1px 1px); // IE6 and IE7 use the wrong syntax.
}
clip: rect(1px, 1px, 1px, 1px);
}
// Turns off the element-invisible effect.
@mixin element-invisible-off {
position: static !important;
clip: auto;
height: auto;
width: auto;
overflow: auto;
}
@mixin element-focusable {
@include element-invisible;
&:active,
&:focus {
@include element-invisible-off;
}
}
// The word "Unpublished" displayed underneath unpublished nodes and comments.
@mixin unpublished-div {
height: 0;
overflow: visible;
color: #d8d8d8;
font-size: 75px;
line-height: 1;
font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
font-weight: bold;
text-transform: uppercase;
text-align: center;
word-wrap: break-word; // A very nice CSS3 property
@if $legacy-support-for-ie6 or $legacy-support-for-ie7 {
.lt-ie8 &>* {
position: relative; // Otherwise these elements will appear below the "Unpublished" text.
}
}
}