2024-06-14 15:31:35 +00:00
|
|
|
/*
|
|
|
|
* 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";
|
2024-06-16 17:48:02 +00:00
|
|
|
@use "../mixins/buttons";
|
|
|
|
@use "../mixins/tables";
|
2024-06-14 15:31:35 +00:00
|
|
|
|
|
|
|
livechat-dynamic-table-form {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 3rem;
|
|
|
|
|
|
|
|
table {
|
2024-06-16 17:48:02 +00:00
|
|
|
@include tables.data-table;
|
2024-06-14 15:31:35 +00:00
|
|
|
|
|
|
|
.livechat-dynamic-table-form-description-header {
|
|
|
|
font-size: small;
|
|
|
|
font-weight: lighter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.dynamic-table-add-row-cell {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dynamic-table-add-row {
|
2024-06-16 17:48:02 +00:00
|
|
|
@include buttons.button-row-add;
|
2024-06-14 15:31:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.dynamic-table-remove-row {
|
2024-06-16 17:48:02 +00:00
|
|
|
@include buttons.button-row-remove;
|
2024-06-14 15:31:35 +00:00
|
|
|
}
|
|
|
|
}
|