7da54001fe
One user suggested that the loading indicator should not be written ALL CAPS, at first it was thought this change is very minor, but then a few other people asked agreed on the same thing - variant without caps looks better. It may be related that it is harder to read or just looks too "catchy". Moreover, I asked @rf@mastodonsocial.ru community what they think of that and 82% of 22 people agreed on this change. This commit removes all usage of text-transform: uppercase, where the font size specified, it changes the value by one pixel larger, so we still keeping the "designed" size of the labels but without using CAPS.
55 lines
960 B
SCSS
55 lines
960 B
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: 0;
|
|
box-shadow: none;
|
|
font-family: inherit;
|
|
background: $ui-base-color;
|
|
color: $darker-text-color;
|
|
font-size: 14px;
|
|
margin: 0;
|
|
}
|
|
|
|
@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 {
|
|
color: $light-text-color;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
li {
|
|
padding: 4px 0;
|
|
}
|
|
|
|
ul {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
em {
|
|
font-weight: 500;
|
|
color: $inverted-text-color;
|
|
}
|
|
}
|