More styles

pull/851/head
Vincent 5 years ago
parent 513e5e34df
commit 01389aa802

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

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

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

Loading…
Cancel
Save