]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-edit/shared/video-edit.component.scss
Fix lint
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / shared / video-edit.component.scss
CommitLineData
8cbc40b2
C
1@use '_variables' as *;
2@use '_mixins' as *;
63c4db6d 3
15a7387d
C
4.peertube-select-container {
5 @include peertube-select-container(auto);
6}
7
017c3dca
C
8my-peertube-checkbox {
9 display: block;
10 margin-bottom: 1rem;
11}
12
45c6bcf3
C
13.nav-tabs {
14 margin-bottom: 15px;
15}
16
4cc66133
C
17.video-edit {
18 height: 100%;
40e87e9e 19 min-height: 300px;
4cc66133 20
4cc66133
C
21 input {
22 @include peertube-input-text(100%);
23 display: block;
4cc66133 24 }
4cc66133
C
25}
26
ce4b4495 27.captions-header {
27bc9586 28 text-align: end;
ce4b4495
C
29 margin-bottom: 1rem;
30}
40e87e9e 31
ce4b4495
C
32.caption-entry {
33 display: flex;
34 height: 40px;
35 align-items: center;
40e87e9e 36
ce4b4495
C
37 a.caption-entry-label {
38 @include disable-default-a-behaviour;
772d5642 39
ce4b4495 40 color: #000;
772d5642 41
ce4b4495
C
42 &:hover {
43 opacity: 0.8;
772d5642 44 }
ce4b4495 45 }
772d5642 46
ce4b4495 47 .caption-entry-label {
27bc9586
C
48 @include margin-right(20px);
49
ce4b4495 50 font-weight: bold;
4f50475c 51 min-width: 100px;
ce4b4495 52 }
772d5642 53
ce4b4495 54 .caption-entry-state {
4f50475c
C
55 @include margin-right(15px);
56
57 min-width: 250px;
772d5642 58
ce4b4495
C
59 &.caption-entry-state-create {
60 color: #39CC0B;
40e87e9e
C
61 }
62
ce4b4495
C
63 &.caption-entry-state-delete {
64 color: #FF0000;
40e87e9e
C
65 }
66 }
67
57d74ec8 68 .caption-entry-edit {
69 @include peertube-button;
70 }
71
ce4b4495
C
72 .caption-entry-delete {
73 @include peertube-button;
74 @include grey-button;
40e87e9e
C
75 }
76}
77
ce4b4495
C
78.no-caption {
79 text-align: center;
ce4b4495
C
80}
81
4cc66133 82.submit-container {
27bc9586 83 text-align: end;
4cc66133 84
cadb46d8 85 .message-submit {
27bc9586 86 @include margin-right(25px);
cadb46d8 87
27bc9586 88 display: inline-block;
e66883b3 89 color: pvar(--greyForegroundColor);
cadb46d8 90 }
4cc66133
C
91}
92
bbe0f064
C
93p-calendar {
94 display: block;
95
03652b31 96 ::ng-deep {
4f926722 97 .p-calendar {
bbe0f064
C
98 width: 100%;
99 }
100
4f926722 101 .p-inputtext {
bbe0f064
C
102 @include peertube-input-text(100%);
103 color: #000;
104 }
105 }
106}
107
ce4b4495
C
108.form-columns {
109 display: grid;
6f02515e 110
ce4b4495
C
111 grid-template-columns: 66% 1fr;
112 grid-gap: 30px;
6f02515e
RK
113}
114
ce4b4495
C
115@include on-small-main-col {
116 .form-columns {
117 grid-template-columns: 1fr;
6f02515e
RK
118 }
119}