Sha256: b300596280c854aa142ed812d4af1af41e26df7851280b0fe1e12e6ceb4e2e37

Contents?: true

Size: 1.35 KB

Versions: 18

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

18 entries across 18 versions & 2 rubygems

Version Path
face_of_active_admin-0.0.16 app/assets/stylesheets/face_of_active_admin/mixins/_rounded.scss
face_of_active_admin-0.0.15 app/assets/stylesheets/face_of_active_admin/mixins/_rounded.scss
face_of_active_admin-0.0.14 app/assets/stylesheets/face_of_active_admin/mixins/_rounded.scss
face_of_active_admin-0.0.13 app/assets/stylesheets/face_of_active_admin/mixins/_rounded.scss
face_of_active_admin-0.0.12 app/assets/stylesheets/face_of_active_admin/mixins/_rounded.scss
face_of_active_admin-0.0.11 app/assets/stylesheets/face_of_active_admin/mixins/_rounded.scss
face_of_active_admin-0.0.10 app/assets/stylesheets/face_of_active_admin/mixins/_rounded.scss
face_of_active_admin-0.0.9 app/assets/stylesheets/face_of_active_admin/mixins/_rounded.scss
face_of_active_admin-0.0.8 app/assets/stylesheets/face_of_active_admin/mixins/_rounded.scss
face_of_active_admin-0.0.7 app/assets/stylesheets/face_of_active_admin/mixins/_rounded.scss
face_of_active_admin-0.0.6 app/assets/stylesheets/face_of_active_admin/mixins/_rounded.scss
face_of_active_admin-0.0.5 app/assets/stylesheets/face_of_active_admin/mixins/_rounded.scss
face_of_active_admin-0.0.4 app/assets/stylesheets/face_of_active_admin/mixins/_rounded.scss
face_of_active_admin-0.0.3 app/assets/stylesheets/face_of_active_admin/mixins/_rounded.scss
face_of_active_admin-0.0.2 app/assets/stylesheets/face_of_active_admin/mixins/_rounded.scss
face_of_active_admin-0.0.1 app/assets/stylesheets/face_of_active_admin/mixins/_rounded.scss
active_admin_face-0.1.0 app/assets/stylesheets/active_admin_face/mixins/_rounded.scss
active_admin_face-0.0.9 app/assets/stylesheets/active_admin_face/mixins/_rounded.scss