diff options
author | Chocobozzz <me@florianbigard.com> | 2022-06-28 11:29:54 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-06-28 11:29:54 +0200 |
commit | a334597283a3384fa4df7b6b25fd2a9ff9221467 (patch) | |
tree | 1125357d4486d8b9a52750f44697cae607e217da /client/src/app | |
parent | 4c8a099198cd3af049847df91140735354b85a92 (diff) | |
download | PeerTube-a334597283a3384fa4df7b6b25fd2a9ff9221467.tar.gz PeerTube-a334597283a3384fa4df7b6b25fd2a9ff9221467.tar.zst PeerTube-a334597283a3384fa4df7b6b25fd2a9ff9221467.zip |
Theme fixes
Diffstat (limited to 'client/src/app')
4 files changed, 10 insertions, 10 deletions
diff --git a/client/src/app/+signup/+register/steps/register-step-user.component.html b/client/src/app/+signup/+register/steps/register-step-user.component.html index 3e0d35006..e978caea8 100644 --- a/client/src/app/+signup/+register/steps/register-step-user.component.html +++ b/client/src/app/+signup/+register/steps/register-step-user.component.html | |||
@@ -15,7 +15,7 @@ | |||
15 | <div class="input-group"> | 15 | <div class="input-group"> |
16 | <input | 16 | <input |
17 | type="text" id="displayName" i18n-placeholder placeholder="Example: John Doe" | 17 | type="text" id="displayName" i18n-placeholder placeholder="Example: John Doe" |
18 | formControlName="displayName" [ngClass]="{ 'input-error': formErrors['displayName'] }" | 18 | formControlName="displayName" class="form-control" [ngClass]="{ 'input-error': formErrors['displayName'] }" |
19 | > | 19 | > |
20 | </div> | 20 | </div> |
21 | 21 | ||
diff --git a/client/src/app/+videos/+video-edit/video-add-components/video-send.scss b/client/src/app/+videos/+video-edit/video-add-components/video-send.scss index 594999d66..ed46fefb0 100644 --- a/client/src/app/+videos/+video-edit/video-add-components/video-send.scss +++ b/client/src/app/+videos/+video-edit/video-add-components/video-send.scss | |||
@@ -17,7 +17,7 @@ $width-size: 250px; | |||
17 | align-items: center; | 17 | align-items: center; |
18 | 18 | ||
19 | .upload-icon { | 19 | .upload-icon { |
20 | @include apply-svg-color($input-border-color); | 20 | @include apply-svg-color(pvar(--inputBorderColor)); |
21 | 21 | ||
22 | width: 90px; | 22 | width: 90px; |
23 | margin-bottom: 25px; | 23 | margin-bottom: 25px; |
diff --git a/client/src/app/+videos/+video-watch/shared/comment/video-comment-add.component.scss b/client/src/app/+videos/+video-watch/shared/comment/video-comment-add.component.scss index 023d625e9..ac228bafa 100644 --- a/client/src/app/+videos/+video-watch/shared/comment/video-comment-add.component.scss +++ b/client/src/app/+videos/+video-watch/shared/comment/video-comment-add.component.scss | |||
@@ -56,8 +56,8 @@ form { | |||
56 | width: $markdown-icon-width; | 56 | width: $markdown-icon-width; |
57 | 57 | ||
58 | svg { | 58 | svg { |
59 | color: $input-border-color; | 59 | color: pvar(--inputBorderColor); |
60 | fill: $input-border-color; | 60 | fill: pvar(--inputBorderColor); |
61 | border-radius: 3px; | 61 | border-radius: 3px; |
62 | } | 62 | } |
63 | } | 63 | } |
@@ -66,7 +66,7 @@ form { | |||
66 | &:active, | 66 | &:active, |
67 | &:hover { | 67 | &:hover { |
68 | my-global-icon svg { | 68 | my-global-icon svg { |
69 | background-color: $input-border-color; | 69 | background-color: pvar(--inputBorderColor); |
70 | color: pvar(--mainBackgroundColor); | 70 | color: pvar(--mainBackgroundColor); |
71 | fill: pvar(--mainBackgroundColor); | 71 | fill: pvar(--mainBackgroundColor); |
72 | } | 72 | } |
diff --git a/client/src/app/shared/shared-forms/markdown-textarea.component.scss b/client/src/app/shared/shared-forms/markdown-textarea.component.scss index c68c2c241..bbb266448 100644 --- a/client/src/app/shared/shared-forms/markdown-textarea.component.scss +++ b/client/src/app/shared/shared-forms/markdown-textarea.component.scss | |||
@@ -25,8 +25,8 @@ $input-border-radius: 3px; | |||
25 | .nav-preview { | 25 | .nav-preview { |
26 | padding: 10px; | 26 | padding: 10px; |
27 | 27 | ||
28 | border: 1px solid $input-border-color; | 28 | border: 1px solid pvar(--inputBorderColor); |
29 | border-top: 1px dashed $input-border-color; | 29 | border-top: 1px dashed pvar(--inputBorderColor); |
30 | 30 | ||
31 | border-bottom-right-radius: $input-border-radius; | 31 | border-bottom-right-radius: $input-border-radius; |
32 | border-bottom-left-radius: $input-border-radius; | 32 | border-bottom-left-radius: $input-border-radius; |
@@ -72,7 +72,7 @@ $input-border-radius: 3px; | |||
72 | overflow-y: auto; | 72 | overflow-y: auto; |
73 | word-wrap: break-word; | 73 | word-wrap: break-word; |
74 | 74 | ||
75 | border: 1px solid $input-border-color; | 75 | border: 1px solid pvar(--inputBorderColor); |
76 | border-top: 0; | 76 | border-top: 0; |
77 | 77 | ||
78 | border-bottom-left-radius: $input-border-radius; | 78 | border-bottom-left-radius: $input-border-radius; |
@@ -115,7 +115,7 @@ $input-border-radius: 3px; | |||
115 | grid-column: 1; | 115 | grid-column: 1; |
116 | 116 | ||
117 | border: 0; | 117 | border: 0; |
118 | border-right: 1px dashed $input-border-color; | 118 | border-right: 1px dashed pvar(--inputBorderColor); |
119 | 119 | ||
120 | resize: none; | 120 | resize: none; |
121 | } | 121 | } |
@@ -155,7 +155,7 @@ $input-border-radius: 3px; | |||
155 | grid-row: 2; | 155 | grid-row: 2; |
156 | grid-column: 1; | 156 | grid-column: 1; |
157 | border: 0; | 157 | border: 0; |
158 | border-bottom: 1px dashed $input-border-color;; | 158 | border-bottom: 1px dashed pvar(--inputBorderColor);; |
159 | } | 159 | } |
160 | 160 | ||
161 | ::ng-deep .tab-content { | 161 | ::ng-deep .tab-content { |