]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-edit/shared/video-edit.component.scss
Merge branch 'release/3.2.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / +videos / +video-edit / shared / video-edit.component.scss
CommitLineData
6f02515e
RK
1@import 'variables';
2@import 'mixins';
63c4db6d 3
7294aab0
C
4label,
5my-dynamic-form-field ::ng-deep label {
a6d5ff76
RK
6 font-weight: $font-regular;
7 font-size: 100%;
8}
9
15a7387d
C
10.peertube-select-container {
11 @include peertube-select-container(auto);
12}
13
2ba5ac33 14.title-page a {
e66883b3 15 color: pvar(--mainForegroundColor);
2ba5ac33
RK
16
17 &:hover {
18 text-decoration: none;
19 opacity: .8;
20 }
21}
22
017c3dca
C
23my-peertube-checkbox {
24 display: block;
25 margin-bottom: 1rem;
26}
27
45c6bcf3
C
28.nav-tabs {
29 margin-bottom: 15px;
30}
31
4cc66133
C
32.video-edit {
33 height: 100%;
40e87e9e 34 min-height: 300px;
4cc66133
C
35
36 .form-group {
37 margin-bottom: 25px;
38 }
39
40 input {
41 @include peertube-input-text(100%);
42 display: block;
4cc66133
C
43 }
44
cb9244de
C
45 .label-tags + span {
46 font-size: 15px;
47 }
6de36768 48
07fa4c97
C
49 .advanced-settings .form-group {
50 margin-bottom: 20px;
51 }
4cc66133
C
52}
53
ce4b4495
C
54.captions-header {
55 text-align: right;
56 margin-bottom: 1rem;
57}
40e87e9e 58
ce4b4495
C
59.create-caption {
60 @include create-button;
61}
40e87e9e 62
ce4b4495
C
63.caption-entry {
64 display: flex;
65 height: 40px;
66 align-items: center;
40e87e9e 67
ce4b4495
C
68 a.caption-entry-label {
69 @include disable-default-a-behaviour;
772d5642 70
ce4b4495
C
71 flex-grow: 1;
72 color: #000;
772d5642 73
ce4b4495
C
74 &:hover {
75 opacity: 0.8;
772d5642 76 }
ce4b4495 77 }
772d5642 78
ce4b4495
C
79 .caption-entry-label {
80 font-size: 15px;
81 font-weight: bold;
772d5642 82
ce4b4495
C
83 margin-right: 20px;
84 width: 150px;
85 }
772d5642 86
ce4b4495
C
87 .caption-entry-state {
88 width: 200px;
772d5642 89
ce4b4495
C
90 &.caption-entry-state-create {
91 color: #39CC0B;
40e87e9e
C
92 }
93
ce4b4495
C
94 &.caption-entry-state-delete {
95 color: #FF0000;
40e87e9e
C
96 }
97 }
98
ce4b4495
C
99 .caption-entry-delete {
100 @include peertube-button;
101 @include grey-button;
40e87e9e
C
102 }
103}
104
ce4b4495
C
105.no-caption {
106 text-align: center;
107 font-size: 15px;
108}
109
4cc66133
C
110.submit-container {
111 text-align: right;
4cc66133 112
cadb46d8
C
113 .message-submit {
114 display: inline-block;
115 margin-right: 25px;
116
e66883b3 117 color: pvar(--greyForegroundColor);
cadb46d8
C
118 font-size: 15px;
119 }
4cc66133
C
120}
121
bbe0f064
C
122p-calendar {
123 display: block;
124
03652b31 125 ::ng-deep {
4f926722 126 .p-calendar {
bbe0f064
C
127 width: 100%;
128 }
129
4f926722 130 .p-inputtext {
bbe0f064
C
131 @include peertube-input-text(100%);
132 color: #000;
133 }
134 }
135}
136
ce4b4495
C
137.form-columns {
138 display: grid;
6f02515e 139
ce4b4495
C
140 grid-template-columns: 66% 1fr;
141 grid-gap: 30px;
6f02515e
RK
142}
143
ce4b4495
C
144@include on-small-main-col {
145 .form-columns {
146 grid-template-columns: 1fr;
6f02515e
RK
147 }
148}