]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/videos/+video-edit/shared/video-edit.component.scss
Remove deprecated NgbTabsetModule module
[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
45c6bcf3
C
22.nav-tabs {
23 margin-bottom: 15px;
24}
25
4cc66133
C
26.video-edit {
27 height: 100%;
40e87e9e 28 min-height: 300px;
4cc66133
C
29
30 .form-group {
31 margin-bottom: 25px;
32 }
33
34 input {
35 @include peertube-input-text(100%);
36 display: block;
4cc66133
C
37 }
38
cb9244de
C
39 .label-tags + span {
40 font-size: 15px;
41 }
6de36768 42
07fa4c97
C
43 .advanced-settings .form-group {
44 margin-bottom: 20px;
45 }
4cc66133
C
46}
47
40e87e9e
C
48.captions {
49
50 .captions-header {
51 text-align: right;
52
53 .create-caption {
457bb213 54 @include create-button;
40e87e9e
C
55 }
56 }
57
58 .caption-entry {
59 display: flex;
60 height: 40px;
61 align-items: center;
62
772d5642
C
63 a.caption-entry-label {
64 @include disable-default-a-behaviour;
65
66 color: #000;
67
68 &:hover {
69 opacity: 0.8;
70 }
71 }
72
40e87e9e
C
73 .caption-entry-label {
74 font-size: 15px;
75 font-weight: bold;
76
77 margin-right: 20px;
772d5642
C
78 width: 150px;
79 }
80
81 .caption-entry-state {
82 width: 200px;
83
84 &.caption-entry-state-create {
85 color: #39CC0B;
86 }
87
88 &.caption-entry-state-delete {
89 color: #FF0000;
90 }
40e87e9e
C
91 }
92
93 .caption-entry-delete {
94 @include peertube-button;
95 @include grey-button;
96 }
97 }
98
99 .no-caption {
100 text-align: center;
101 font-size: 15px;
102 }
103}
104
4cc66133
C
105.submit-container {
106 text-align: right;
4cc66133 107
cadb46d8
C
108 .message-submit {
109 display: inline-block;
110 margin-right: 25px;
111
457bb213 112 color: $grey-foreground-color;
cadb46d8
C
113 font-size: 15px;
114 }
115
4cc66133
C
116 .submit-button {
117 @include peertube-button;
118 @include orange-button;
457bb213 119 @include button-with-icon(20px, 1px);
4cc66133
C
120
121 display: inline-block;
122
123 input {
124 cursor: inherit;
125 background-color: inherit;
126 border: none;
127 padding: 0;
cadb46d8 128 outline: 0;
63347a0f
C
129 color: inherit;
130 font-weight: $font-semibold;
4cc66133 131 }
4cc66133
C
132 }
133}
134
bbe0f064
C
135p-calendar {
136 display: block;
137
03652b31 138 ::ng-deep {
bbe0f064
C
139 input,
140 .ui-calendar {
141 width: 100%;
142 }
143
144 input {
145 @include peertube-input-text(100%);
146 color: #000;
147 }
148 }
149}
150
03652b31 151::ng-deep {
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}