mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
4be7313298
Port 4c03e05a4e
to glitch-soc
This introduces new requirements in the API:
`/api/v1/timelines/tag/:tag` now accepts new params: `any`, `all` and `none`
It now returns status matching tag :tag or any of the :any, provided that
they also include all tags in `all` and none of `none`.
85 lines
1.4 KiB
SCSS
85 lines
1.4 KiB
SCSS
@mixin avatar-radius() {
|
|
border-radius: $ui-avatar-border-size;
|
|
background: transparent no-repeat;
|
|
background-position: 50%;
|
|
background-clip: padding-box;
|
|
}
|
|
|
|
@mixin avatar-size($size:48px) {
|
|
width: $size;
|
|
height: $size;
|
|
background-size: $size $size;
|
|
}
|
|
|
|
@mixin single-column($media, $parent: '&') {
|
|
.auto-columns #{$parent} {
|
|
@media #{$media} {
|
|
@content;
|
|
}
|
|
}
|
|
.single-column #{$parent} {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
@mixin limited-single-column($media, $parent: '&') {
|
|
.auto-columns #{$parent}, .single-column #{$parent} {
|
|
@media #{$media} {
|
|
@content;
|
|
}
|
|
}
|
|
}
|
|
|
|
@mixin multi-columns($media, $parent: '&') {
|
|
.auto-columns #{$parent} {
|
|
@media #{$media} {
|
|
@content;
|
|
}
|
|
}
|
|
.multi-columns #{$parent} {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
@mixin fullwidth-gallery {
|
|
&.full-width {
|
|
margin-left: -14px;
|
|
margin-right: -14px;
|
|
width: inherit;
|
|
max-width: none;
|
|
height: 250px;
|
|
border-radius: 0px;
|
|
}
|
|
}
|
|
|
|
@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;
|
|
}
|
|
}
|