]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-edit/shared/video-edit.component.scss
Remove unnecessary margin
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-edit / shared / video-edit.component.scss
CommitLineData
63c4db6d
C
1@import '_variables';
2@import '_mixins';
3
15a7387d
C
4.peertube-select-container {
5 @include peertube-select-container(auto);
6}
7
2ba5ac33
RK
8.title-page a {
9 color: var(--mainForegroundColor);
10
11 &:hover {
12 text-decoration: none;
13 opacity: .8;
14 }
15}
16
017c3dca
C
17my-peertube-checkbox {
18 display: block;
19 margin-bottom: 1rem;
20}
21
4cc66133
C
22.video-edit {
23 height: 100%;
40e87e9e 24 min-height: 300px;
4cc66133
C
25
26 .form-group {
27 margin-bottom: 25px;
28 }
29
30 input {
31 @include peertube-input-text(100%);
32 display: block;
4cc66133
C
33 }
34
cb9244de
C
35 .label-tags + span {
36 font-size: 15px;
37 }
6de36768 38
07fa4c97
C
39 .advanced-settings .form-group {
40 margin-bottom: 20px;
41 }
4cc66133
C
42}
43
40e87e9e
C
44.captions {
45
46 .captions-header {
47 text-align: right;
48
49 .create-caption {
457bb213 50 @include create-button;
40e87e9e
C
51 }
52 }
53
54 .caption-entry {
55 display: flex;
56 height: 40px;
57 align-items: center;
58
772d5642
C
59 a.caption-entry-label {
60 @include disable-default-a-behaviour;
61
62 color: #000;
63
64 &:hover {
65 opacity: 0.8;
66 }
67 }
68
40e87e9e
C
69 .caption-entry-label {
70 font-size: 15px;
71 font-weight: bold;
72
73 margin-right: 20px;
772d5642
C
74 width: 150px;
75 }
76
77 .caption-entry-state {
78 width: 200px;
79
80 &.caption-entry-state-create {
81 color: #39CC0B;
82 }
83
84 &.caption-entry-state-delete {
85 color: #FF0000;
86 }
40e87e9e
C
87 }
88
89 .caption-entry-delete {
90 @include peertube-button;
91 @include grey-button;
92 }
93 }
94
95 .no-caption {
96 text-align: center;
97 font-size: 15px;
98 }
99}
100
4cc66133
C
101.submit-container {
102 text-align: right;
4cc66133 103
cadb46d8
C
104 .message-submit {
105 display: inline-block;
106 margin-right: 25px;
107
457bb213 108 color: $grey-foreground-color;
cadb46d8
C
109 font-size: 15px;
110 }
111
4cc66133
C
112 .submit-button {
113 @include peertube-button;
114 @include orange-button;
457bb213 115 @include button-with-icon(20px, 1px);
4cc66133
C
116
117 display: inline-block;
118
119 input {
120 cursor: inherit;
121 background-color: inherit;
122 border: none;
123 padding: 0;
cadb46d8 124 outline: 0;
63347a0f
C
125 color: inherit;
126 font-weight: $font-semibold;
4cc66133 127 }
4cc66133
C
128 }
129}
130
bbe0f064
C
131p-calendar {
132 display: block;
133
03652b31 134 ::ng-deep {
bbe0f064
C
135 input,
136 .ui-calendar {
137 width: 100%;
138 }
139
140 input {
141 @include peertube-input-text(100%);
142 color: #000;
143 }
144 }
145}
146
03652b31 147::ng-deep {
bbe0f064 148 .root-tabset > .nav {
bbe0f064 149 margin-bottom: 15px;
bbe0f064
C
150 }
151
4cc66133
C
152 .ng2-tag-input {
153 border: none !important;
154 }
155
156 .ng2-tags-container {
157 display: flex;
158 align-items: center;
159 border: 1px solid #C6C6C6;
160 border-radius: 3px;
161 padding: 5px !important;
25266908 162 height: max-content;
cb9244de
C
163 }
164
165 tag-input-form {
166 input {
167 height: 30px !important;
25266908 168 font-size: 12px !important;
1fd3ef3f
RK
169
170 background-color: var(--mainBackgroundColor) !important;
171 color: var(--mainForegroundColor) !important;
cb9244de 172 }
4cc66133
C
173 }
174
175 tag {
17bb716b
C
176 background-color: $grey-background-color !important;
177 color: #000 !important;
4cc66133 178 border-radius: 3px !important;
25266908 179 font-size: 12px !important;
4cc66133
C
180 height: 30px !important;
181 line-height: 30px !important;
182 margin: 0 5px 0 0 !important;
183 cursor: default !important;
184 padding: 0 8px 0 10px !important;
185
186 div {
187 height: 100% !important;
188 }
189 }
190
191 delete-icon {
192 cursor: pointer !important;
193 height: auto !important;
194 vertical-align: middle !important;
195 padding-left: 6px !important;
196
197 svg {
cb9244de
C
198 position: relative;
199 top: -1px;
4cc66133
C
200 height: auto !important;
201 vertical-align: middle !important;
17bb716b
C
202
203 path {
204 fill: $grey-foreground-color !important;
205 }
4cc66133
C
206 }
207
208 &:hover {
209 transform: none !important;
210 }
211 }
212}