Sha256: f2190efaae0810b40f25f499df2ebeca0f3688894ce95d65470c4acdc1b20d0f

Contents?: true

Size: 1.35 KB

Versions: 94

Compression:

Stored size: 1.35 KB

Contents

@mixin rounded($radius: 3px) { 
  -webkit-border-radius: $radius; 
  -moz-border-radius: $radius; 
  border-radius: $radius;
}

@mixin rounded-all($top-left:3px, $top-right:3px, $bottom-right:3px, $bottom-left:3px) {
  border-top-right-radius: $top-right;
  -moz-border-radius-topright: $top-right;
  -webkit-border-top-right-radius: $top-right;

  border-top-left-radius: $top-left;
  -moz-border-radius-topleft: $top-left;
  -webkit-border-top-left-radius: $top-left;

  border-bottom-right-radius: $bottom-right;
  -moz-border-radius-bottomright: $bottom-right;
  -webkit-border-bottom-right-radius: $bottom-right;

  border-bottom-left-radius: $bottom-left;
  -moz-border-radius-bottomleft: $bottom-left;
  -webkit-border-bottom-left-radius: $bottom-left;
}

@mixin rounded-top($radius: 3px) {
  @include rounded(0);
  border-top-right-radius: $radius;
  border-top-left-radius: $radius;
  -moz-border-radius-topright: $radius;
  -moz-border-radius-topleft: $radius;
  -webkit-border-top-right-radius: $radius;
  -webkit-border-top-left-radius: $radius;
}

@mixin rounded-bottom($radius: 3px) {
  @include rounded(0);
  border-bottom-right-radius: $radius;
  border-bottom-left-radius: $radius;
  -moz-border-radius-bottomright: $radius;
  -moz-border-radius-bottomleft: $radius;
  -webkit-border-bottom-right-radius: $radius;
  -webkit-border-bottom-left-radius: $radius;
}

Version data entries

94 entries across 94 versions & 7 rubygems

Version Path
ems-0.1.4 app/assets/stylesheets/ems/active_admin/mixins/_rounded.css.scss
ems-0.1.3 app/assets/stylesheets/ems/active_admin/mixins/_rounded.css.scss
ems-0.1.2 app/assets/stylesheets/ems/active_admin/mixins/_rounded.css.scss
ems-0.1.1 app/assets/stylesheets/ems/active_admin/mixins/_rounded.css.scss
ems-0.1.0 app/assets/stylesheets/ems/active_admin/mixins/_rounded.css.scss
ems-0.0.9 app/assets/stylesheets/ems/active_admin/mixins/_rounded.css.scss
ems-0.0.8 app/assets/stylesheets/ems/active_admin/mixins/_rounded.css.scss
ems-0.0.7 app/assets/stylesheets/ems/active_admin/mixins/_rounded.css.scss
ems-0.0.6 app/assets/stylesheets/ems/active_admin/mixins/_rounded.css.scss
ems-0.0.5 app/assets/stylesheets/ems/active_admin/mixins/_rounded.css.scss
ems-0.0.4 app/assets/stylesheets/ems/active_admin/mixins/_rounded.css.scss
ems-0.0.3 app/assets/stylesheets/ems/active_admin/mixins/_rounded.css.scss
ems-0.0.2 app/assets/stylesheets/ems/active_admin/mixins/_rounded.css.scss
activeadmin-0.4.4 app/assets/stylesheets/active_admin/mixins/_rounded.css.scss
activeadmin-0.4.3 app/assets/stylesheets/active_admin/mixins/_rounded.css.scss
activeadmin-0.4.2 app/assets/stylesheets/active_admin/mixins/_rounded.css.scss
activeadmin-0.4.1 app/assets/stylesheets/active_admin/mixins/_rounded.css.scss
activeadmin-0.4.0 app/assets/stylesheets/active_admin/mixins/_rounded.css.scss
andrewroth_activeadmin-0.3.4.4 app/assets/stylesheets/active_admin/mixins/_rounded.css.scss
andrewroth_activeadmin-0.3.4.3 app/assets/stylesheets/active_admin/mixins/_rounded.css.scss