Move record label

This commit is contained in:
Pierre HUBERT 2020-04-14 08:29:11 +02:00
parent 1de48a20a1
commit d4c2152ecd
2 changed files with 6 additions and 4 deletions

View File

@ -64,15 +64,17 @@
color: inherit; color: inherit;
} }
.call-window .head .record-label { .call-window .record-label {
color: red; color: red;
margin-left: 10px; margin-left: 10px;
text-align: center;
} }
.call-window .head .record-label a { .call-window .record-label a {
margin-left: 5px; margin-left: 5px;
background-color: darkred !important; background-color: darkred !important;
font-weight: bold; font-weight: bold;
color: white;
} }
.call-window .members-area { .call-window .members-area {

View File

@ -941,8 +941,8 @@ class CallWindow extends CustomEvents {
// Add notice // Add notice
this.recordLabel = createElem2({ this.recordLabel = createElem2({
appendTo: this.windowHead, insertBefore: this.videosArea,
type: "span", type: "div",
class: "record-label", class: "record-label",
innerHTML: "Recording" innerHTML: "Recording"
}); });