fix minor bugs

This commit is contained in:
Rintan 2021-05-23 02:26:52 +09:00
parent a865832ab0
commit 7d25a9e030
4 changed files with 28 additions and 5 deletions

View File

@ -131,7 +131,6 @@ $tab-bg-color: $top-bar-color;
$tab-bg-hover-color: transparentize($tab-item-active-color, 0.9);
$tab-bg-focus-color: transparentize($tab-item-active-color, 0.8);
// Media indicator color
$media-page-indicator-color: #9e9e9e;
$media-page-indicator-active-color: #e6e6e6;

View File

@ -9,12 +9,14 @@
i { margin: 0 }
}
.tabs-bar__link span { margin-left: 0 }
.tabs-bar.bottom-bar {
@include shadow-4dp;
.tabs-bar {
&__link,
&__link.active { border-bottom: none }
&__link.active { border-bottom: 4px solid transparent }
}
&__link span { margin-left: 0 }

View File

@ -1,13 +1,26 @@
.quote-indicator {
.quote-indicator,
.reply-indicator {
@include card-elevation(false);
margin-bottom: 16px;
padding: 16px;
&__header { margin-bottom: 4px }
&__display-avatar { margin-right: 8px }
&__display-avatar {
margin-right: 8px;
&__content { padding-top: 0 }
.account__avatar {
width: 32px !important;
height: 32px !important;
background-size: 32px !important;
}
}
&__content {
padding-top: 0;
padding-left: 32px;
color: $primary-text-color;
}
}
.quote-status {
@ -28,5 +41,12 @@
}
}
.detailed-status__display-name {
span,
strong { @include separate-address-line }
}
.display-name { padding-left: 40px }
&>.unlisted-quote>button { color: $ui-text-color }
}

View File

@ -16,4 +16,6 @@
border: none;
padding: 4px;
border-radius: 50%;
width: 16px;
height: 16px;
}