90afdafbd9
You can now generate links to join chatrooms with your current user. This can be used to create Docks in OBS for example. This could also be used to generate authentication token to join the chat from 3rd party tools.
41 lines
895 B
SCSS
41 lines
895 B
SCSS
/*
|
|
* SPDX-FileCopyrightText: 2024 Mehdi Benadel <https://mehdibenadel.com>
|
|
* SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
/* We are disabling stylelint-disable custom-property-pattern so we can use Peertube var without warnings. */
|
|
/* stylelint-disable custom-property-pattern */
|
|
|
|
@use "sass:color";
|
|
@use "../variables";
|
|
@use "../mixins/buttons";
|
|
@use "../mixins/tables";
|
|
|
|
livechat-dynamic-table-form {
|
|
display: block;
|
|
margin-bottom: 3rem;
|
|
|
|
table {
|
|
@include tables.data-table;
|
|
|
|
.livechat-dynamic-table-form-description-header {
|
|
font-size: small;
|
|
font-weight: lighter;
|
|
}
|
|
}
|
|
|
|
.dynamic-table-add-row-cell {
|
|
text-align: left;
|
|
}
|
|
|
|
.dynamic-table-add-row {
|
|
@include buttons.button-row-add;
|
|
}
|
|
|
|
.dynamic-table-remove-row {
|
|
@include buttons.button-row-remove;
|
|
}
|
|
}
|