]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/sass/bootstrap.scss
Fix lint
[github/Chocobozzz/PeerTube.git] / client / src / sass / bootstrap.scss
CommitLineData
2f4c784a 1$icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/';
2f4c784a 2
8cbc40b2
C
3@use '_variables' as *;
4@use '_mixins' as *;
5
6@import './_bootstrap-variables';
7
8@import '~bootstrap/scss/functions';
9@import '~bootstrap/scss/variables';
10
11@import '~bootstrap/scss/mixins';
12@import '~bootstrap/scss/root';
13@import '~bootstrap/scss/reboot';
14@import '~bootstrap/scss/type';
15@import '~bootstrap/scss/grid';
16@import '~bootstrap/scss/tables';
17@import '~bootstrap/scss/forms';
18@import '~bootstrap/scss/buttons';
19@import '~bootstrap/scss/dropdown';
20@import '~bootstrap/scss/button-group';
21@import '~bootstrap/scss/input-group';
22@import '~bootstrap/scss/nav';
23@import '~bootstrap/scss/card';
24@import '~bootstrap/scss/badge';
25@import '~bootstrap/scss/alert';
26@import '~bootstrap/scss/close';
27@import '~bootstrap/scss/modal';
28@import '~bootstrap/scss/tooltip';
29@import '~bootstrap/scss/popover';
30@import '~bootstrap/scss/utilities';
31
32@import '~@neos21/bootstrap3-glyphicons/assets/stylesheets/bootstrap3-glyphicons';
2f4c784a
C
33
34// Thanks https://gist.github.com/alexandrevicenzi/680147013e902a4eaa5d
35.glyphicon-refresh-animate {
931d3430 36 animation: spin 0.7s infinite linear;
2f4c784a
C
37}
38
6b1ef956 39.glyphicon-duplicate {
40 font-size: 70%;
41}
42
f409f0c3
RK
43.flex-auto {
44 flex: auto;
45}
46
d3217560
RK
47.c-hand {
48 cursor: pointer;
49}
50
2f4c784a 51@keyframes spin {
a3705089
C
52 from {
53 transform: scale(1) rotate(0deg);
54 }
931d3430 55
a3705089
C
56 to {
57 transform: scale(1) rotate(360deg);
58 }
2f4c784a
C
59}
60
757ffdfe 61/* rules for dropdowns excepts when in button group, to avoid impacting the dropdown-toggle */
81d5be91
K
62.dropdown,
63.dropup {
f8cce49c 64 z-index: z(dropdown) !important;
2856af48 65}
26ede95e 66
2856af48
C
67.list-overflow-menu,
68.parent-entry {
09f7837d 69 z-index: z(menu) - 1 !important;
eb7c7a51
RK
70}
71
2856af48
C
72.btn-group,
73.dropdown-root,
74.action-dropdown,
75.input-group-prepend,
76.column-toggle {
77 z-index: inherit !important;
78}
79
d4132d3f
RK
80.btn-group > .btn:not(:first-child) {
81 border-top-left-radius: 0 !important;
82 border-bottom-left-radius: 0 !important;
83}
84
2f4c784a 85.dropdown-menu {
e0433a5f
C
86 z-index: z(dropdown) + 1 !important;
87
2f4c784a 88 border-radius: 3px;
6f6e89db 89 box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
2f4c784a
C
90 font-size: 15px;
91
0d3a2982 92 .dropdown-header {
27bc9586 93 @include padding-left(1rem);
0d3a2982
RK
94 }
95
2f4c784a
C
96 .dropdown-item {
97 padding: 3px 15px;
98
24e7916c 99 &.active {
e66883b3
RK
100 color: pvar(--mainBackgroundColor) !important;
101 background-color: pvar(--mainHoverColor);
931d3430 102 opacity: 0.9;
2f4c784a 103 }
45c6bcf3 104
0aa52e17
C
105 &:active {
106 color: pvar(--mainForegroundColor) !important;
107 }
108
d3217560
RK
109 &::after {
110 display: none;
111 }
2f4c784a
C
112 }
113
114 button {
115 @include disable-default-a-behaviour;
116 }
117
118 a {
119 @include disable-default-a-behaviour;
120 color: #000 !important;
121 }
122}
123
26171379
C
124.badge {
125 line-height: 1.1;
126}
3921166d 127
165ee292 128@media screen and (min-width: #{breakpoint(md)}) {
931d3430 129 .modal::before {
3921166d 130 vertical-align: middle;
931d3430 131 content: ' ';
3921166d
RK
132 height: 100%;
133 }
134
135 .modal-dialog {
27bc9586 136 text-align: start;
2bc9bd08
RK
137
138 &:not(.modal-lg):not(.modal-xl) {
139 min-width: 500px;
140 width: 40vw;
141 max-width: 900px;
142 }
3921166d
RK
143 }
144}
145
2f4c784a 146.modal {
3921166d
RK
147 text-align: center;
148
2f4c784a 149 .modal-content {
e66883b3 150 background-color: pvar(--mainBackgroundColor);
681276a6 151 word-break: break-word;
2f4c784a
C
152 }
153
154 .modal-header {
931d3430 155 border-bottom: 0;
2f4c784a
C
156 margin-bottom: 5px;
157
158 .modal-title {
159 font-size: 20px;
160 font-weight: $font-semibold;
161 }
162
163 my-global-icon {
54e78847 164 @include icon(22px);
2f4c784a
C
165
166 position: relative;
54e78847 167 top: 5px;
2f4c784a
C
168 float: right;
169
170 margin: 0;
171 padding: 0;
931d3430 172 opacity: 0.5;
8319d6ae 173
931d3430 174 &[iconName=cross] { /* stylelint-disable-line selector-max-compound-selectors */
8319d6ae 175 @include icon(16px);
931d3430 176
8319d6ae
RK
177 top: -3px;
178 }
2f4c784a
C
179 }
180 }
181
182 .inputs {
183 margin-bottom: 0;
27bc9586 184 text-align: end;
2f4c784a 185
266947e5 186 > .peertube-button:not(:first-child) {
27bc9586 187 @include margin-left(10px);
2f4c784a
C
188 }
189 }
190}
191
8110705d 192
193// On desktop browsers, make the content and header horizontally sticked to right not move when modal open and close
194.modal-open {
195 overflow-y: scroll !important; // Make sure vertical scroll bar is always visible on desktop browsers to get disabled scrollbar effect
17384fd8 196 width: 100vw; // Make sure the content fits all the available width
8110705d 197}
198
245b9d27
K
199// On touchscreen devices, simply overflow: hidden to avoid detached overlay on scroll
200@media (hover: none) and (pointer: coarse) {
931d3430
C
201 .modal-open,
202 .menu-open {
245b9d27
K
203 overflow: hidden !important;
204 }
205
206 // On touchscreen devices display content overlay when opened menu
207 .menu-open {
208 .main-col {
209 &::before {
931d3430 210 background-color: #000;
245b9d27
K
211 width: 100vw;
212 height: 100vh;
213 opacity: 0.75;
214 content: '';
215 display: block;
216 position: fixed;
43599029 217 z-index: z(overlay);
245b9d27
K
218 }
219 }
220 }
221}
222
2f4c784a
C
223// Nav customizations
224.nav .nav-link {
225 display: flex !important;
226 align-items: center;
227 height: 30px !important;
228 padding: 10px 15px !important;
229}
230
231.nav.nav-pills {
232 font-size: 16px !important;
ed5bb517 233 font-weight: $font-semibold !important;
2f4c784a 234
ed5bb517
K
235 .nav-link {
236 opacity: 0.6 !important;
237
931d3430
C
238 &.active,
239 &:hover,
240 &:active,
241 &:focus {
ed5bb517
K
242 opacity: 1 !important;
243 }
2f4c784a
C
244 }
245
246 a {
247 @include disable-default-a-behaviour;
248
e66883b3 249 color: pvar(--mainForegroundColor);
2f4c784a
C
250 }
251}
252
ed5bb517
K
253.nav-tabs .nav-link {
254 @include disable-default-a-behaviour;
2f4c784a 255
ed5bb517
K
256 color: pvar(--mainForegroundColor);
257 font-weight: $font-semibold;
931d3430 258 border: 0;
ed5bb517
K
259 border-bottom: 2px solid transparent;
260 opacity: 0.6;
2f4c784a 261
758f0d19 262 &.active {
ed5bb517 263 color: pvar(--mainForegroundColor);
e66883b3 264 background-color: pvar(--mainBackgroundColor) !important;
ed5bb517 265 border-bottom-color: pvar(--mainColor);
758f0d19 266 }
ed5bb517 267
931d3430
C
268 &.active,
269 &:hover,
270 &:active,
271 &:focus {
ed5bb517 272 opacity: 1;
758f0d19 273 }
2f4c784a
C
274}
275
a4610bc6 276.card {
e66883b3 277 background-color: pvar(--mainBackgroundColor);
a4610bc6
JM
278 border-color: #dee2e6;
279}
280
2f4c784a
C
281.collapse-transition {
282 // Animation when we show/hide the filters
283 transition: max-height 0.3s;
284 display: block !important;
285 overflow: hidden !important;
286 max-height: 0;
287
288 &.show {
289 max-height: 1500px;
dd24f1bb 290 overflow: inherit !important;
2f4c784a
C
291 }
292}
bc584963
RK
293
294.dropdown-divider {
295 margin: 0.3rem 0;
000eb0e4
RK
296}
297
298ngb-modal-backdrop {
36f2981f
RK
299 z-index: z(modal) - 1 !important;
300}
301
302ngb-modal-window {
303 z-index: z(modal) !important;
000eb0e4 304}
aa0f1963 305
757ffdfe
RK
306ngb-popover-window {
307 z-index: z(popover) !important;
308}
309
310ngb-tooltip-window {
311 z-index: z(tooltip) !important;
312}
313
947d0102
RK
314.btn-outline-secondary {
315 border-color: $input-border-color;
316
317 &:focus-within,
318 &:focus,
319 &:hover {
320 color: #fff;
321 background-color: #6c757d;
322 }
323}
324
aa0f1963 325.btn-outline-tertiary {
e66883b3
RK
326 color: pvar(--secondaryColor);
327 border-color: pvar(--secondaryColor);
a3705089 328
947d0102
RK
329 &:focus-within,
330 &:focus,
aa0f1963 331 &:hover {
e66883b3
RK
332 color: pvar(--mainBackgroundColor);
333 background-color: pvar(--secondaryColor);
aa0f1963
RK
334 }
335}
a6d5ff76 336
2accfdd8
C
337.btn-group {
338 font-weight: $font-semibold;
339
340 .active {
341 @include orange-button;
342 }
343
344 :not(.active) {
345 @include grey-button;
346 }
347
348 > * {
349 @include peertube-button-link;
350
351 box-shadow: none !important;
352
353 &:not(:first-child) {
354 border-top-left-radius: 0 !important;
355 border-bottom-left-radius: 0 !important;
356 }
357
358 &:not(:last-child) {
359 border-top-right-radius: 0 !important;
360 border-bottom-right-radius: 0 !important;
361 }
362 }
363}
364
a6d5ff76
RK
365// input box-shadow on focus
366.form-control {
367 font-size: 15px;
e66883b3
RK
368 color: pvar(--mainForegroundColor);
369 background-color: pvar(--inputBackgroundColor);
a6d5ff76
RK
370 outline: none;
371
372 &:focus-within,
373 &:focus {
e66883b3 374 box-shadow: #{$focus-box-shadow-form} pvar(--mainColorLightest);
a6d5ff76
RK
375
376 &.input-error {
6a4c30de 377 box-shadow: #{$focus-box-shadow-form} #{scale-color($red, $alpha: -75%)};
a6d5ff76
RK
378 }
379 }
380}
947d0102 381
0d3a2982 382.input-group {
931d3430 383 > .form-control {
0d3a2982
RK
384 flex: initial;
385 }
931d3430 386
25a42e29
RK
387 input.form-control {
388 width: unset !important;
389 flex-grow: 1;
0d3a2982
RK
390 }
391
392 .input-group-prepend + input {
393 border-top-left-radius: 0 !important;
394 border-bottom-left-radius: 0 !important;
395 }
947d0102 396}
25a42e29
RK
397
398.has-feedback.has-clear {
399 position: relative;
400
401 input {
27bc9586 402 @include padding-right(1.5rem !important);
25a42e29
RK
403 }
404
405 .form-control-clear {
406 color: rgba(0, 0, 0, 0.4);
407 /*
408 * Enable pointer events as they have been disabled since Bootstrap 3.3
409 * See https://github.com/twbs/bootstrap/pull/14104
410 */
411 pointer-events: all;
412 display: flex;
413 justify-content: center;
414 align-items: center;
415 position: absolute;
416 right: .5rem;
417 height: 95%;
4f5d0459 418 font-size: 14px;
25a42e29
RK
419
420 &:hover {
421 color: rgba(0, 0, 0, 0.7);
422 cursor: pointer;
423 }
424 }
425
426 input:placeholder-shown + .form-control-clear {
427 display: none;
428 }
429}
ea5cdc11
RK
430
431.callout {
728a1236
RK
432 padding: 1.25rem;
433 border: 1px solid #eee;
ea5cdc11
RK
434 border-radius: .25rem;
435
931d3430 436 > label {
ea5cdc11
RK
437 position: relative;
438 top: -5px;
439 left: -10px;
440 color: #6c757d !important;
441 }
442
443 &:not(.callout-light) {
444 border-left-width: .25rem;
445 }
26171379 446
ea5cdc11
RK
447 &.callout-info {
448 border-color: pvar(--mainColorLightest);
449 border-left-color: pvar(--mainColor);
450 }
451}
27bc9586
C
452
453// Override these properties for Bidi support
454@each $size, $length in $spacers {
455 .ml-#{$size} {
456 @include margin-left($length);
457 }
458
459 .mr-#{$size} {
460 @include margin-right($length);
461 }
462
463 .pl-#{$size} {
464 @include padding-left($length);
465 }
466
467 .pr-#{$size} {
468 @include padding-right($length);
469 }
470}