mastodon/app/javascript/styles/mastodon/_mixins.scss
Eugen Rochko d3519bc08b WIP
2024-01-17 12:14:46 +01:00

63 lines
1.1 KiB
SCSS

@mixin avatar-radius {
border-radius: 4px;
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 search-input {
outline: 0;
box-sizing: border-box;
width: 100%;
border: 1px solid var(--surface-outline);
box-shadow: none;
font-family: inherit;
background: var(--surface);
color: var(--on-surface);
border-radius: 4px;
font-size: 14px;
margin: 0;
&::placeholder {
color: var(--on-surface-muted);
opacity: 1;
}
}
@mixin search-popout {
background: $simple-background-color;
border-radius: 4px;
padding: 10px 14px;
padding-bottom: 14px;
margin-top: 10px;
color: $light-text-color;
box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
h4 {
text-transform: uppercase;
color: $light-text-color;
font-size: 13px;
font-weight: 500;
margin-bottom: 10px;
}
li {
padding: 4px 0;
}
ul {
margin-bottom: 10px;
}
em {
font-weight: 500;
color: $inverted-text-color;
}
}