mirror of
https://github.com/moparisthebest/mail
synced 2024-11-10 11:15:01 -05:00
54 lines
1.5 KiB
SCSS
54 lines
1.5 KiB
SCSS
|
// Clearfix
|
||
|
// Source: http://nicolasgallagher.com/micro-clearfix-hack/
|
||
|
//
|
||
|
// For modern browsers
|
||
|
// 1. The space content is one way to avoid an Opera bug when the
|
||
|
// contenteditable attribute is included anywhere else in the document.
|
||
|
// Otherwise it causes space to appear at the top and bottom of elements
|
||
|
// that are clearfixed.
|
||
|
// 2. The use of `table` rather than `block` is only necessary if using
|
||
|
// `:before` to contain the top-margins of child elements.
|
||
|
@mixin clearfix {
|
||
|
&:before,
|
||
|
&:after {
|
||
|
content: " "; /* 1 */
|
||
|
display: table; /* 2 */
|
||
|
}
|
||
|
&:after {
|
||
|
clear: both;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// CSS image replacement
|
||
|
// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
|
||
|
@mixin hide-text {
|
||
|
font: #{0}/#{0} a;
|
||
|
color: transparent;
|
||
|
text-shadow: none;
|
||
|
background-color: transparent;
|
||
|
border: 0;
|
||
|
}
|
||
|
|
||
|
// Text overflow
|
||
|
// Requires inline-block or block for proper styling
|
||
|
@mixin text-overflow {
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
|
||
|
// retina.sass
|
||
|
// A helper mixin for applying high-resolution background images (http://www.retinajs.com)
|
||
|
// Submitted by Nathan Crank
|
||
|
// nathancrank.com
|
||
|
@mixin at2x($path, $ext: "jpg", $w: auto, $h: auto) {
|
||
|
$at1x_path: "#{$path}.#{$ext}";
|
||
|
$at2x_path: "#{$path}@2x.#{$ext}";
|
||
|
|
||
|
background-image: "url("#{$at1x_path}")";
|
||
|
|
||
|
@include respond-to(retina) {
|
||
|
background-image: "url("#{$at2x_path}")";
|
||
|
background-size: $w $h;
|
||
|
}
|
||
|
}
|