app/assets/stylesheets/admin/partials/_avatars.scss in trusty-cms-3.5.0 vs app/assets/stylesheets/admin/partials/_avatars.scss in trusty-cms-3.5.1
- old
+ new
@@ -1,12 +1,12 @@
img.avatar {
background: white;
border: none;
padding: 4px;
- @include border-radius(3px);
- @include single-box-shadow(rgba(0, 0, 0, 0.25), 1px, 1px, 3px);
+ border-radius: 3px;
+ box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
&.avatar_32x32 {
padding: 2px;
- @include border-radius(2px);
- @include single-box-shadow(rgba(0, 0, 0, 0.3), 1px, 1px, 2px);
+ border-radius: 2px;
+ box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
}