// /** // * Copyright (C) 2013 Crossing Hippos - Babs Gösgens. All rights reserved. // * Licensed under GNU General Public License version 2 or later; see LICENSE.txt // */ @if $trace-imports { @debug 'imported'; } @mixin is-hidden { position: absolute; left: -9999em; } @mixin is-not-hidden { position: static; } @mixin is-visible($display: block) { display: $display; } @mixin is-not-visible { display: none; }