2021-05-27 18:25:00 +02:00
|
|
|
@use '_variables' as *;
|
|
|
|
@use '_mixins' as *;
|
2017-12-11 17:36:46 +01:00
|
|
|
|
2017-12-20 14:29:55 +01:00
|
|
|
.peertube-select-container {
|
|
|
|
@include peertube-select-container(auto);
|
|
|
|
}
|
|
|
|
|
2018-10-10 14:35:55 +02:00
|
|
|
my-peertube-checkbox {
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
2020-04-01 16:52:59 +02:00
|
|
|
.nav-tabs {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
2017-12-07 14:48:47 +01:00
|
|
|
.video-edit {
|
|
|
|
height: 100%;
|
2018-07-12 19:02:00 +02:00
|
|
|
min-height: 300px;
|
2017-12-07 14:48:47 +01:00
|
|
|
|
|
|
|
input {
|
|
|
|
@include peertube-input-text(100%);
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-07 14:08:35 +02:00
|
|
|
.captions-header {
|
2021-06-07 17:38:31 +02:00
|
|
|
text-align: end;
|
2021-05-07 14:08:35 +02:00
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
2018-07-12 19:02:00 +02:00
|
|
|
|
2021-05-07 14:08:35 +02:00
|
|
|
.caption-entry {
|
|
|
|
display: flex;
|
|
|
|
height: 40px;
|
|
|
|
align-items: center;
|
2018-07-12 19:02:00 +02:00
|
|
|
|
2021-05-07 14:08:35 +02:00
|
|
|
a.caption-entry-label {
|
|
|
|
@include disable-default-a-behaviour;
|
2018-07-25 10:28:43 +02:00
|
|
|
|
2021-05-07 14:08:35 +02:00
|
|
|
color: #000;
|
2018-07-25 10:28:43 +02:00
|
|
|
|
2021-05-07 14:08:35 +02:00
|
|
|
&:hover {
|
|
|
|
opacity: 0.8;
|
2018-07-25 10:28:43 +02:00
|
|
|
}
|
2021-05-07 14:08:35 +02:00
|
|
|
}
|
2018-07-25 10:28:43 +02:00
|
|
|
|
2021-05-07 14:08:35 +02:00
|
|
|
.caption-entry-label {
|
2021-06-07 17:38:31 +02:00
|
|
|
@include margin-right(20px);
|
|
|
|
|
2021-05-07 14:08:35 +02:00
|
|
|
font-weight: bold;
|
2022-07-25 10:45:22 +02:00
|
|
|
min-width: 100px;
|
2021-05-07 14:08:35 +02:00
|
|
|
}
|
2018-07-25 10:28:43 +02:00
|
|
|
|
2021-05-07 14:08:35 +02:00
|
|
|
.caption-entry-state {
|
2022-07-25 10:45:22 +02:00
|
|
|
@include margin-right(15px);
|
|
|
|
|
|
|
|
min-width: 250px;
|
2018-07-25 10:28:43 +02:00
|
|
|
|
2021-05-07 14:08:35 +02:00
|
|
|
&.caption-entry-state-create {
|
|
|
|
color: #39CC0B;
|
2018-07-12 19:02:00 +02:00
|
|
|
}
|
|
|
|
|
2021-05-07 14:08:35 +02:00
|
|
|
&.caption-entry-state-delete {
|
|
|
|
color: #FF0000;
|
2018-07-12 19:02:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-22 18:36:56 +01:00
|
|
|
.caption-entry-edit {
|
|
|
|
@include peertube-button;
|
|
|
|
}
|
|
|
|
|
2021-05-07 14:08:35 +02:00
|
|
|
.caption-entry-delete {
|
|
|
|
@include peertube-button;
|
|
|
|
@include grey-button;
|
2018-07-12 19:02:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-07 14:08:35 +02:00
|
|
|
.no-caption {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2017-12-07 14:48:47 +01:00
|
|
|
.submit-container {
|
2021-06-07 17:38:31 +02:00
|
|
|
text-align: end;
|
2017-12-07 14:48:47 +01:00
|
|
|
|
2017-12-08 08:39:15 +01:00
|
|
|
.message-submit {
|
2021-06-07 17:38:31 +02:00
|
|
|
@include margin-right(25px);
|
2017-12-08 08:39:15 +01:00
|
|
|
|
2021-06-07 17:38:31 +02:00
|
|
|
display: inline-block;
|
2020-06-09 09:33:28 +02:00
|
|
|
color: pvar(--greyForegroundColor);
|
2017-12-08 08:39:15 +01:00
|
|
|
}
|
2017-12-07 14:48:47 +01:00
|
|
|
}
|
|
|
|
|
2018-06-15 16:52:15 +02:00
|
|
|
p-calendar {
|
|
|
|
display: block;
|
|
|
|
|
2019-07-24 16:12:35 +02:00
|
|
|
::ng-deep {
|
2020-11-19 11:12:01 +01:00
|
|
|
.p-calendar {
|
2018-06-15 16:52:15 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2020-11-19 11:12:01 +01:00
|
|
|
.p-inputtext {
|
2018-06-15 16:52:15 +02:00
|
|
|
@include peertube-input-text(100%);
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-07 14:08:35 +02:00
|
|
|
.form-columns {
|
|
|
|
display: grid;
|
2020-04-02 17:55:03 +02:00
|
|
|
|
2021-05-07 14:08:35 +02:00
|
|
|
grid-template-columns: 66% 1fr;
|
|
|
|
grid-gap: 30px;
|
2020-04-02 17:55:03 +02:00
|
|
|
}
|
|
|
|
|
2021-05-07 14:08:35 +02:00
|
|
|
@include on-small-main-col {
|
|
|
|
.form-columns {
|
|
|
|
grid-template-columns: 1fr;
|
2020-04-02 17:55:03 +02:00
|
|
|
}
|
|
|
|
}
|