56 lines
1.1 KiB
CSS
Raw Normal View History

#peertube-plugin-livechat-container {
display: flex;
flex-direction: column;
}
2021-05-26 14:15:01 +02:00
#plugin-placeholder-player-next #peertube-plugin-livechat-container {
height: 100%;
}
.peertube-plugin-livechat-buttons {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-end;
}
.peertube-plugin-livechat-button {
border: 1px solid black;
background-color: var(--mainBackgroundColor);
2021-03-08 12:01:56 +01:00
margin: 5px;
2021-03-08 12:49:44 +01:00
min-height: 36px;
min-width: 36px;
padding: 2px;
}
.peertube-plugin-livechat-button-icon {
background-size: 32px 32px;
background-repeat: no-repeat;
background-color: transparent;
background-position: center center;
display: inline-block;
height: 100%;
width: 100%;
}
[peertube-plugin-livechat-state="initializing"] {
display: none;
}
[peertube-plugin-livechat-state="open"] .peertube-plugin-livechat-button-open {
display: none;
}
[peertube-plugin-livechat-state="closed"] .peertube-plugin-livechat-button-close {
display: none;
}
#peertube-plugin-livechat-container iframe {
2021-02-19 15:19:20 +01:00
border: 1px solid black;
min-height: 30vh;
height: 100%;
2021-02-18 18:31:12 +01:00
}
.peertube-plugin-livechat-warning {
color: orange;
}