peertube-plugin-livechat/assets/style.scss

149 lines
3.0 KiB
SCSS
Raw Normal View History

#peertube-plugin-livechat-container {
display: flex;
flex-direction: column;
}
2021-05-26 12:15:01 +00:00
#plugin-placeholder-player-next #peertube-plugin-livechat-container {
height: 100%;
}
.peertube-plugin-livechat-buttons {
2021-11-25 15:56:32 +00:00
align-items: center;
display: flex;
2021-11-25 15:56:32 +00:00
flex-flow: row nowrap;
justify-content: flex-end;
}
.peertube-plugin-livechat-button {
2021-11-25 16:35:55 +00:00
align-items: center;
display: flex;
flex-direction: row;
2021-11-25 15:56:32 +00:00
height: 36px !important;
margin: 5px !important;
padding: 2px !important;
2021-11-25 15:56:32 +00:00
svg {
2021-11-25 16:35:55 +00:00
height: auto; // override .peertube-button-link
2021-11-25 15:56:32 +00:00
}
}
2021-11-25 15:56:32 +00:00
.peertube-plugin-livechat-buttons-open .peertube-plugin-livechat-button {
height: 18px !important;
margin: 2px !important;
padding: 1px !important;
}
[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;
}
2021-11-25 15:56:32 +00:00
[peertube-plugin-livechat-state]:not([peertube-plugin-livechat-state="open"]) {
.peertube-plugin-livechat-multi-button-main {
border-top-right-radius: 0 !important;
border-bottom-right-radius: 0 !important;
margin-right: 0 !important;
}
.peertube-plugin-livechat-multi-button-secondary {
border-radius: 0 !important;
margin-right: 0 !important;
margin-left: 0 !important;
border-left: 1px solid currentColor;
}
.peertube-plugin-livechat-multi-button-last-secondary {
2021-11-25 15:56:32 +00:00
border-top-left-radius: 0 !important;
border-bottom-left-radius: 0 !important;
margin-left: 0 !important;
border-left: 1px solid currentColor;
}
}
#peertube-plugin-livechat-container iframe {
2021-02-19 14:19:20 +00:00
border: 1px solid black;
min-height: 30vh;
height: 100%;
2021-02-18 17:31:12 +00:00
}
.peertube-plugin-livechat-warning {
color: orange;
2021-06-11 23:16:57 +00:00
}
.peertube-plugin-livechat-error {
color: red;
}
2021-06-12 01:52:45 +00:00
table.peertube-plugin-livechat-prosody-list-rooms {
border: 1px solid black;
2021-11-18 14:59:47 +00:00
margin: 5px 0;
2021-07-19 23:18:01 +00:00
}
table.peertube-plugin-livechat-prosody-list-rooms tr:nth-child(odd) {
background-color: #eee;
}
table.peertube-plugin-livechat-prosody-list-rooms tr:nth-child(even) {
background-color: #fff;
}
table.peertube-plugin-livechat-prosody-list-rooms th {
background-color: var(--mainHoverColor);
border: 1px solid black;
color: var(--mainBackgroundColor);
padding: 4px 5px;
}
table.peertube-plugin-livechat-prosody-list-rooms td {
border: 1px solid #555;
color: black;
padding: 4px 5px;
2021-06-12 01:52:45 +00:00
}
2021-12-21 16:14:02 +00:00
.peertube-plugin-livechat-shareurl-modal {
& > * {
margin-top: 30px;
}
.livechat-shareurl-copy {
display: flex;
flex-wrap: wrap;
button {
white-space: nowrap;
}
input {
flex-grow: 2;
width: auto !important; // must cancel the width: 100% of form-control
}
}
.livechat-shareurl-custom {
input[type="checkbox"] {
margin-right: 20px;
}
2021-12-21 17:12:18 +00:00
label {
display: block;
}
.livechat-shareurl-custom-readonly {
display: flex;
flex-flow: wrap;
flex-direction: row;
label:not(:first-child) {
margin-left: 40px;
}
}
2021-12-21 16:14:02 +00:00
}
}