mirror of
https://github.com/mastodon/mastodon.git
synced 2024-12-22 23:20:44 +01:00
Fix CSS warnings (#32266)
This commit is contained in:
parent
d0753ec276
commit
9ebed5d410
2 changed files with 5 additions and 23 deletions
|
@ -6154,13 +6154,6 @@ a.status-card {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.onboard-sliders {
|
|
||||||
display: inline-block;
|
|
||||||
max-width: 30px;
|
|
||||||
max-height: auto;
|
|
||||||
margin-inline-start: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.safety-action-modal {
|
.safety-action-modal {
|
||||||
width: 600px;
|
width: 600px;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
@ -8739,6 +8732,7 @@ noscript {
|
||||||
&__item {
|
&__item {
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
background: lighten($ui-base-color, 12%);
|
background: lighten($ui-base-color, 12%);
|
||||||
|
color: $darker-text-color;
|
||||||
border: 0;
|
border: 0;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
margin: 2px;
|
margin: 2px;
|
||||||
|
@ -8775,7 +8769,6 @@ noscript {
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-inline-start: 6px;
|
margin-inline-start: 6px;
|
||||||
color: $darker-text-color;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover,
|
&:hover,
|
||||||
|
@ -8784,11 +8777,8 @@ noscript {
|
||||||
background: lighten($ui-base-color, 16%);
|
background: lighten($ui-base-color, 16%);
|
||||||
transition: all 200ms ease-out;
|
transition: all 200ms ease-out;
|
||||||
transition-property: background-color, color;
|
transition-property: background-color, color;
|
||||||
|
|
||||||
&__count {
|
|
||||||
color: lighten($darker-text-color, 4%);
|
color: lighten($darker-text-color, 4%);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
transition: all 100ms ease-in;
|
transition: all 100ms ease-in;
|
||||||
|
@ -8798,12 +8788,9 @@ noscript {
|
||||||
$ui-highlight-color,
|
$ui-highlight-color,
|
||||||
80%
|
80%
|
||||||
);
|
);
|
||||||
|
|
||||||
.reactions-bar__item__count {
|
|
||||||
color: lighten($highlight-text-color, 8%);
|
color: lighten($highlight-text-color, 8%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.emoji-picker-dropdown {
|
.emoji-picker-dropdown {
|
||||||
margin: 2px;
|
margin: 2px;
|
||||||
|
@ -10416,7 +10403,7 @@ noscript {
|
||||||
|
|
||||||
&__text {
|
&__text {
|
||||||
flex: 1 1 auto;
|
flex: 1 1 auto;
|
||||||
font-style: 14px;
|
font-size: 14px;
|
||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
|
|
||||||
strong {
|
strong {
|
||||||
|
@ -10474,7 +10461,7 @@ noscript {
|
||||||
&__name {
|
&__name {
|
||||||
flex: 1 1 auto;
|
flex: 1 1 auto;
|
||||||
color: $darker-text-color;
|
color: $darker-text-color;
|
||||||
font-style: 14px;
|
font-size: 14px;
|
||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
|
|
@ -38,11 +38,6 @@
|
||||||
background: darken($ui-primary-color, 5%);
|
background: darken($ui-primary-color, 5%);
|
||||||
}
|
}
|
||||||
|
|
||||||
&::-ms-fill {
|
|
||||||
border-radius: 4px;
|
|
||||||
background: darken($ui-primary-color, 5%);
|
|
||||||
}
|
|
||||||
|
|
||||||
&::-webkit-progress-value {
|
&::-webkit-progress-value {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
background: darken($ui-primary-color, 5%);
|
background: darken($ui-primary-color, 5%);
|
||||||
|
|
Loading…
Reference in a new issue