2017-05-03 05:43:37 -04:00
|
|
|
@mixin avatar-radius() {
|
2017-06-18 18:09:03 -04:00
|
|
|
border-radius: $ui-avatar-border-size;
|
2017-05-03 05:43:37 -04:00
|
|
|
background: transparent no-repeat;
|
|
|
|
background-position: 50%;
|
|
|
|
background-clip: padding-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin avatar-size($size:48px) {
|
|
|
|
width: $size;
|
|
|
|
height: $size;
|
|
|
|
background-size: $size $size;
|
|
|
|
}
|
2017-06-24 14:18:54 -04:00
|
|
|
|
|
|
|
@mixin single-column($media, $parent: '&') {
|
|
|
|
.auto-columns #{$parent} {
|
|
|
|
@media #{$media} {
|
|
|
|
@content;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.single-column #{$parent} {
|
|
|
|
@content;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-24 23:32:03 -04:00
|
|
|
@mixin limited-single-column($media, $parent: '&') {
|
|
|
|
.auto-columns #{$parent}, .single-column #{$parent} {
|
|
|
|
@media #{$media} {
|
|
|
|
@content;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-24 14:18:54 -04:00
|
|
|
@mixin multi-columns($media, $parent: '&') {
|
|
|
|
.auto-columns #{$parent} {
|
|
|
|
@media #{$media} {
|
|
|
|
@content;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.multi-columns #{$parent} {
|
|
|
|
@content;
|
|
|
|
}
|
2017-06-24 23:14:58 -04:00
|
|
|
}
|
2017-11-18 14:05:23 -05:00
|
|
|
|
|
|
|
@mixin fullwidth-gallery {
|
|
|
|
&.full-width {
|
2018-09-03 15:25:41 -04:00
|
|
|
margin-left: -14px;
|
|
|
|
margin-right: -14px;
|
2017-11-18 14:05:23 -05:00
|
|
|
width: inherit;
|
2017-11-21 22:00:07 -05:00
|
|
|
max-width: none;
|
2017-11-18 14:05:23 -05:00
|
|
|
height: 250px;
|
2018-09-03 14:46:00 -04:00
|
|
|
border-radius: 0px;
|
2017-11-18 14:05:23 -05:00
|
|
|
}
|
|
|
|
}
|
2018-12-18 11:56:08 -05:00
|
|
|
|
|
|
|
@mixin search-input() {
|
|
|
|
outline: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
border: none;
|
|
|
|
box-shadow: none;
|
|
|
|
font-family: inherit;
|
|
|
|
background: $ui-base-color;
|
|
|
|
color: $darker-text-color;
|
|
|
|
font-size: 14px;
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
&::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-focus-inner,
|
|
|
|
&:focus,
|
|
|
|
&:active {
|
|
|
|
outline: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
background: lighten($ui-base-color, 4%);
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
}
|