Make call window title unselectable

This commit is contained in:
Pierre HUBERT 2020-04-13 14:55:22 +02:00
parent 34be87c096
commit d4260ee4c2
2 changed files with 5 additions and 1 deletions

View File

@ -56,6 +56,10 @@
vertical-align: middle;
}
.call-window .head .title {
cursor: default;
}
.call-window .head a {
color: inherit;
}

View File

@ -59,7 +59,7 @@ class CallWindow extends CustomEvents {
type: "div",
class: "head",
innerHTML: "<i class='fa fa-phone'></i>" +
await getConvName(conv) +
"<span class='title'>"+ await getConvName(conv) + "</span>" +
" <span class='pull-right'></span>"
})