]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+videos/+video-edit/shared/video-edit.component.scss
Rename input toggle hidden to input text
[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 35
4cc66133
C
36 input {
37 @include peertube-input-text(100%);
38 display: block;
4cc66133
C
39 }
40
cb9244de
C
41 .label-tags + span {
42 font-size: 15px;
43 }
4cc66133
C
44}
45
ce4b4495 46.captions-header {
27bc9586 47 text-align: end;
ce4b4495
C
48 margin-bottom: 1rem;
49}
40e87e9e 50
ce4b4495
C
51.create-caption {
52 @include create-button;
53}
40e87e9e 54
ce4b4495
C
55.caption-entry {
56 display: flex;
57 height: 40px;
58 align-items: center;
40e87e9e 59
ce4b4495
C
60 a.caption-entry-label {
61 @include disable-default-a-behaviour;
772d5642 62
ce4b4495
C
63 flex-grow: 1;
64 color: #000;
772d5642 65
ce4b4495
C
66 &:hover {
67 opacity: 0.8;
772d5642 68 }
ce4b4495 69 }
772d5642 70
ce4b4495 71 .caption-entry-label {
27bc9586
C
72 @include margin-right(20px);
73
ce4b4495
C
74 font-size: 15px;
75 font-weight: bold;
ce4b4495
C
76 width: 150px;
77 }
772d5642 78
ce4b4495
C
79 .caption-entry-state {
80 width: 200px;
772d5642 81
ce4b4495
C
82 &.caption-entry-state-create {
83 color: #39CC0B;
40e87e9e
C
84 }
85
ce4b4495
C
86 &.caption-entry-state-delete {
87 color: #FF0000;
40e87e9e
C
88 }
89 }
90
57d74ec8 91 .caption-entry-edit {
92 @include peertube-button;
93 }
94
ce4b4495
C
95 .caption-entry-delete {
96 @include peertube-button;
97 @include grey-button;
40e87e9e
C
98 }
99}
100
ce4b4495
C
101.no-caption {
102 text-align: center;
103 font-size: 15px;
104}
105
4cc66133 106.submit-container {
27bc9586 107 text-align: end;
4cc66133 108
cadb46d8 109 .message-submit {
27bc9586 110 @include margin-right(25px);
cadb46d8 111
27bc9586 112 display: inline-block;
e66883b3 113 color: pvar(--greyForegroundColor);
cadb46d8
C
114 font-size: 15px;
115 }
4cc66133
C
116}
117
bbe0f064
C
118p-calendar {
119 display: block;
120
03652b31 121 ::ng-deep {
4f926722 122 .p-calendar {
bbe0f064
C
123 width: 100%;
124 }
125
4f926722 126 .p-inputtext {
bbe0f064
C
127 @include peertube-input-text(100%);
128 color: #000;
129 }
130 }
131}
132
ce4b4495
C
133.form-columns {
134 display: grid;
6f02515e 135
ce4b4495
C
136 grid-template-columns: 66% 1fr;
137 grid-gap: 30px;
6f02515e
RK
138}
139
ce4b4495
C
140@include on-small-main-col {
141 .form-columns {
142 grid-template-columns: 1fr;
6f02515e
RK
143 }
144}