@import “compass/css3/shared”;

// To get full firefox support, you must install the ellipsis pattern: // // compass install compass/ellipsis $use-mozilla-ellipsis-binding: false !default;

// This technique, by [Justin Maxwell](code404.com/), was originally // published [here](mattsnider.com/css/css-string-truncation-with-ellipsis/). // Firefox implementation by [Rikkert Koppes](www.rikkertkoppes.com/thoughts/2008/6/). @mixin ellipsis($no-wrap: true) {

@if $no-wrap { white-space: nowrap; }
overflow: hidden;
@include experimental(text-overflow, ellipsis,
  not -moz,
  not -webkit,
  -o,
  -ms,
  not -khtml,
  official
);
@if $experimental-support-for-mozilla and $use-mozilla-ellipsis-binding {
  -moz-binding: stylesheet-url(unquote("xml/ellipsis.xml#ellipsis"));    
}

}