Merge branch 'next' into 'next'
next See merge request soapbox-pub/soapbox-fe!1268
This commit is contained in:
commit
992a846011
|
@ -632,7 +632,11 @@ class StatusActionBar extends ImmutablePureComponent<IStatusActionBar, IStatusAc
|
||||||
/>
|
/>
|
||||||
|
|
||||||
{features.quotePosts && me ? (
|
{features.quotePosts && me ? (
|
||||||
<DropdownMenuContainer items={reblogMenu} onShiftClick={this.handleReblogClick}>
|
<DropdownMenuContainer
|
||||||
|
items={reblogMenu}
|
||||||
|
disabled={!publicStatus}
|
||||||
|
onShiftClick={this.handleReblogClick}
|
||||||
|
>
|
||||||
{reblogButton}
|
{reblogButton}
|
||||||
</DropdownMenuContainer>
|
</DropdownMenuContainer>
|
||||||
) : (
|
) : (
|
||||||
|
|
|
@ -2,11 +2,7 @@
|
||||||
@apply text-gray-500 dark:text-gray-400 mb-1 text-sm;
|
@apply text-gray-500 dark:text-gray-400 mb-1 text-sm;
|
||||||
|
|
||||||
&__account {
|
&__account {
|
||||||
@apply text-primary-600 no-underline;
|
@apply text-primary-600 dark:text-primary-400 hover:text-primary-800 dark:hover:text-primary-300 no-underline hover:underline;
|
||||||
|
|
||||||
&:hover {
|
|
||||||
@apply underline text-primary-800;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -338,6 +338,7 @@ code {
|
||||||
input[type=password],
|
input[type=password],
|
||||||
textarea,
|
textarea,
|
||||||
.rfipbtn {
|
.rfipbtn {
|
||||||
|
@apply border border-gray-300 dark:border-gray-600 bg-white dark:bg-slate-800 text-black dark:text-white;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
color: var(--primary-text-color);
|
color: var(--primary-text-color);
|
||||||
|
@ -643,6 +644,7 @@ code {
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon-button {
|
.icon-button {
|
||||||
|
@apply text-black dark:text-white;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
|
@ -651,7 +653,6 @@ code {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
color: var(--primary-text-color);
|
|
||||||
|
|
||||||
.svg-icon {
|
.svg-icon {
|
||||||
height: 20px;
|
height: 20px;
|
||||||
|
|
Loading…
Reference in New Issue