]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-edit/shared/video-edit.component.scss
Cleanup subtitle edition PR
[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
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 54.captions-header {
27bc9586 55 text-align: end;
ce4b4495
C
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 79 .caption-entry-label {
27bc9586
C
80 @include margin-right(20px);
81
ce4b4495
C
82 font-size: 15px;
83 font-weight: bold;
ce4b4495
C
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
57d74ec8 99 .caption-entry-edit {
100 @include peertube-button;
101 }
102
ce4b4495
C
103 .caption-entry-delete {
104 @include peertube-button;
105 @include grey-button;
40e87e9e
C
106 }
107}
108
ce4b4495
C
109.no-caption {
110 text-align: center;
111 font-size: 15px;
112}
113
4cc66133 114.submit-container {
27bc9586 115 text-align: end;
4cc66133 116
cadb46d8 117 .message-submit {
27bc9586 118 @include margin-right(25px);
cadb46d8 119
27bc9586 120 display: inline-block;
e66883b3 121 color: pvar(--greyForegroundColor);
cadb46d8
C
122 font-size: 15px;
123 }
4cc66133
C
124}
125
bbe0f064
C
126p-calendar {
127 display: block;
128
03652b31 129 ::ng-deep {
4f926722 130 .p-calendar {
bbe0f064
C
131 width: 100%;
132 }
133
4f926722 134 .p-inputtext {
bbe0f064
C
135 @include peertube-input-text(100%);
136 color: #000;
137 }
138 }
139}
140
ce4b4495
C
141.form-columns {
142 display: grid;
6f02515e 143
ce4b4495
C
144 grid-template-columns: 66% 1fr;
145 grid-gap: 30px;
6f02515e
RK
146}
147
ce4b4495
C
148@include on-small-main-col {
149 .form-columns {
150 grid-template-columns: 1fr;
6f02515e
RK
151 }
152}