Sha256: d3f6bec1e3ddbe233b4079ecfc1299022b1c80ac713f2d7f92d2a0bb5e2dbce8

Contents?: true

Size: 1.33 KB

Versions: 46

Compression:

Stored size: 1.33 KB

Contents

@mixin thredded-media-mobile {
  @media (max-width: map-get($thredded-grid-breakpoint-max-widths, mobile)) {
    @content;
  }
}

@mixin thredded-media-tablet-and-down {
  @media (max-width: map-get($thredded-grid-breakpoint-max-widths, tablet)) {
    @content;
  }
}

@mixin thredded-media-tablet-and-up {
  @media (min-width: map-get($thredded-grid-breakpoint-max-widths, mobile) + 0.00001rem) {
    @content;
  }
}

@mixin thredded-media-tablet {
  @include thredded-media-tablet-and-up {
    @include thredded-media-tablet-and-down {
      @content;
    }
  }
}

@mixin thredded-media-desktop-and-up {
  @media (min-width: map-get($thredded-grid-breakpoint-max-widths, tablet) + 0.00001rem) {
    @content;
  }
}

@mixin thredded-media-content-breakout {
  @media (min-width: $thredded-grid-container-max-width + $thredded-content-breakout-min-width + 0.00001rem) {
    @content;
  }
}

@mixin thredded-media-content-no-breakout {
  @media (max-width: $thredded-grid-container-max-width + $thredded-content-breakout-min-width) {
    @content;
  }
}

@mixin thredded-media-avatar-breakout {
  @warn "thredded-media-avatar-breakout is deprecated, use thredded-media-content-breakout instead";
  @include thredded-media-content-breakout {
    @content;
  }
}

@mixin thredded--clearfix {
  &::after {
    clear: both;
    content: "";
    display: block;
  }
}

Version data entries

46 entries across 46 versions & 2 rubygems

Version Path
thredded-0.15.4 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.15.3 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.15.2 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.15.1 app/assets/stylesheets/thredded/base/_grid.scss
threddedDANIEL-0.14.5 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.14.4 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.14.3 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.14.2 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.14.1 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.14.0 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.13.8 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.13.7 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.13.6 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.13.5 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.13.4 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.13.3 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.13.2 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.13.1 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.13.0 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.12.4 app/assets/stylesheets/thredded/base/_grid.scss