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-1.1.0 app/assets/stylesheets/thredded/base/_grid.scss
thredded-1.0.1 app/assets/stylesheets/thredded/base/_grid.scss
thredded-1.0.0 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.16.16 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.16.15 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.16.14 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.16.13 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.16.12 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.16.11 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.16.10 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.16.9 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.16.8 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.16.7 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.16.6 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.16.5 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.16.4 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.16.3 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.16.1 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.16.0 app/assets/stylesheets/thredded/base/_grid.scss
thredded-0.15.5 app/assets/stylesheets/thredded/base/_grid.scss