Sha256: 3d77294d6a21b025d2b20fc0ffcfabfb7fb1631976e860445d83a57ec3aae50a

Contents?: true

Size: 1.34 KB

Versions: 35

Compression:

Stored size: 1.34 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

35 entries across 35 versions & 6 rubygems

Version Path
yousty-activeadmin-1.0.17.pre app/assets/stylesheets/active_admin/mixins/_rounded.scss
yousty-activeadmin-1.0.16.pre app/assets/stylesheets/active_admin/mixins/_rounded.scss
yousty-activeadmin-1.0.15.pre app/assets/stylesheets/active_admin/mixins/_rounded.scss
yousty-activeadmin-1.0.14.pre app/assets/stylesheets/active_admin/mixins/_rounded.scss
yousty-activeadmin-1.0.13.pre app/assets/stylesheets/active_admin/mixins/_rounded.scss
yousty-activeadmin-1.0.12.pre app/assets/stylesheets/active_admin/mixins/_rounded.scss
yousty-activeadmin-1.0.11.pre app/assets/stylesheets/active_admin/mixins/_rounded.scss
yousty-activeadmin-1.0.10.pre app/assets/stylesheets/active_admin/mixins/_rounded.scss
yousty-activeadmin-1.0.9.pre app/assets/stylesheets/active_admin/mixins/_rounded.scss
yousty-activeadmin-1.0.8.pre app/assets/stylesheets/active_admin/mixins/_rounded.scss
flattened_active_admin-0.0.7 app/assets/stylesheets/flattened_active_admin/mixins/_rounded.scss
flattened_active_admin-0.0.6 app/assets/stylesheets/flattened_active_admin/mixins/_rounded.css.scss
yousty-activeadmin-1.0.7.pre app/assets/stylesheets/active_admin/mixins/_rounded.scss
yousty-activeadmin-1.0.6.pre app/assets/stylesheets/active_admin/mixins/_rounded.scss
yousty-activeadmin-1.0.5.pre app/assets/stylesheets/active_admin/mixins/_rounded.scss
activeadmin-0.6.6 app/assets/stylesheets/active_admin/mixins/_rounded.css.scss
activeadmin-0.6.5 app/assets/stylesheets/active_admin/mixins/_rounded.css.scss
activeadmin-0.6.4 app/assets/stylesheets/active_admin/mixins/_rounded.css.scss
flattened_active_admin-0.0.5 app/assets/stylesheets/flattened_active_admin/mixins/_rounded.css.scss
flattened_active_admin-0.0.3 app/assets/stylesheets/flattened_active_admin/mixins/_rounded.css.scss