]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/shared/shared-forms/timestamp-input.component.scss
Merge branch 'release/4.2.0' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / shared-forms / timestamp-input.component.scss
CommitLineData
8cbc40b2 1@use '_variables' as *;
c729caf6 2@use '_mixins' as *;
2bc9bd08 3
f0a39880 4p-inputmask {
03652b31 5 ::ng-deep input {
f0a39880
C
6 width: 80px;
7 font-size: 15px;
2bc9bd08
RK
8
9 &:focus-within,
10 &:focus {
e66883b3 11 box-shadow: #{$focus-box-shadow-form} pvar(--mainColorLightest);
2bc9bd08 12 }
4f926722
C
13
14 &:disabled {
15 background: pvar(--mainBackgroundColor);
16 opacity: 0.5;
17 }
f0a39880 18 }
c729caf6
C
19
20 &.border-disabled {
21 ::ng-deep input {
22 border: 0;
23 }
24 }
25
26 &:not(.border-disabled) {
27 ::ng-deep input {
28 @include peertube-input-text(80px);
29 }
30 }
f0a39880 31}