More styles

This commit is contained in:
Vincent 2020-02-14 14:25:36 +11:00
parent 513e5e34df
commit 01389aa802
3 changed files with 13 additions and 6 deletions

View File

@ -199,9 +199,11 @@ $session-conversation-header-height: 60px;
* {
user-select: none;
.text-selectable, input, textarea {
.text-selectable,
input,
textarea {
user-select: text;
&::selection {
background: rgba($session-color-green, 0.6);
}

View File

@ -407,7 +407,6 @@ $session-compose-margin: 20px;
position: absolute;
bottom: 2px;
width: 100%;
@at-root .light-theme #{&} {
background-color: $session-color-white;
@ -540,7 +539,7 @@ $session-compose-margin: 20px;
&-bottom-buttons {
@include bottom-buttons();
.session-button {
height: 57px;
}

View File

@ -399,8 +399,14 @@ export class ConversationHeader extends React.Component<Props> {
</div>
</div>
{this.renderExpirationLength()}
{this.renderSearch()}
{this.renderAvatar()}
{!this.props.isRss && (
<>
{this.renderSearch()}
{this.renderAvatar()}
</>
)}
{this.renderMenu(triggerId)}
</div>
</>