Merge pull request #4340 from itsjohncs/long-channel-names

Improve responsiveness of channel name and topic.
This commit is contained in:
Max Leiter 2021-11-02 13:18:39 -07:00 committed by GitHub
commit 3cab39c59b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 2 deletions

View file

@ -35,7 +35,11 @@
<span type="button" aria-label="Save topic"></span> <span type="button" aria-label="Save topic"></span>
</span> </span>
</div> </div>
<span v-else :title="channel.topic" class="topic" @dblclick="editTopic" <span
v-else
:title="channel.topic"
:class="{topic: true, empty: !channel.topic}"
@dblclick="editTopic"
><ParsedMessage ><ParsedMessage
v-if="channel.topic" v-if="channel.topic"
:network="network" :network="network"

View file

@ -1052,7 +1052,10 @@ textarea.input {
.header .title { .header .title {
font-size: 15px; font-size: 15px;
padding-left: 6px; padding-left: 6px;
flex-shrink: 0; flex-shrink: 1;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} }
.topic-container { .topic-container {
@ -1068,6 +1071,12 @@ textarea.input {
flex-grow: 1; flex-grow: 1;
overflow: hidden; overflow: hidden;
font-size: 14px; font-size: 14px;
flex-shrink: 99999999;
min-width: 25px;
}
.header .topic.empty {
min-width: 0;
} }
.header .topic-input { .header .topic-input {