aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-forms
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-03-15 14:12:37 +0100
committerChocobozzz <me@florianbigard.com>2022-03-15 14:12:37 +0100
commitb788e69131dccc1be147244e5b4d9e64deb2dc76 (patch)
tree3f09cb25b38f159b2ef24a574261c81140845acd /client/src/app/shared/shared-forms
parent74220dba9db6a1dc5c0b504b0230de26ef9c9dd5 (diff)
downloadPeerTube-b788e69131dccc1be147244e5b4d9e64deb2dc76.tar.gz
PeerTube-b788e69131dccc1be147244e5b4d9e64deb2dc76.tar.zst
PeerTube-b788e69131dccc1be147244e5b4d9e64deb2dc76.zip
Some fixes for themes
Diffstat (limited to 'client/src/app/shared/shared-forms')
-rw-r--r--client/src/app/shared/shared-forms/peertube-checkbox.component.html2
-rw-r--r--client/src/app/shared/shared-forms/select/select-options.component.html2
-rw-r--r--client/src/app/shared/shared-forms/select/select-shared.component.scss2
3 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/shared/shared-forms/peertube-checkbox.component.html b/client/src/app/shared/shared-forms/peertube-checkbox.component.html
index 9d0402224..c679e1403 100644
--- a/client/src/app/shared/shared-forms/peertube-checkbox.component.html
+++ b/client/src/app/shared/shared-forms/peertube-checkbox.component.html
@@ -34,7 +34,7 @@
34 </div> 34 </div>
35 35
36 <div class="ml-4 d-flex flex-column"> 36 <div class="ml-4 d-flex flex-column">
37 <small class="wrapper mt-2 text-muted"> 37 <small class="wrapper mt-2 muted">
38 <ng-content select="description"></ng-content> 38 <ng-content select="description"></ng-content>
39 </small> 39 </small>
40 40
diff --git a/client/src/app/shared/shared-forms/select/select-options.component.html b/client/src/app/shared/shared-forms/select/select-options.component.html
index 83c7de9f5..0ccc23717 100644
--- a/client/src/app/shared/shared-forms/select/select-options.component.html
+++ b/client/src/app/shared/shared-forms/select/select-options.component.html
@@ -16,7 +16,7 @@
16 {{ item.label }} 16 {{ item.label }}
17 <ng-container *ngIf="item.description"> 17 <ng-container *ngIf="item.description">
18 <br> 18 <br>
19 <span [title]="item.description" class="text-muted">{{ item.description }}</span> 19 <span [title]="item.description" class="muted">{{ item.description }}</span>
20 </ng-container> 20 </ng-container>
21 </ng-template> 21 </ng-template>
22</ng-select> 22</ng-select>
diff --git a/client/src/app/shared/shared-forms/select/select-shared.component.scss b/client/src/app/shared/shared-forms/select/select-shared.component.scss
index f7b001fe8..4de43077c 100644
--- a/client/src/app/shared/shared-forms/select/select-shared.component.scss
+++ b/client/src/app/shared/shared-forms/select/select-shared.component.scss
@@ -3,7 +3,7 @@
3 3
4$form-base-input-width: auto; 4$form-base-input-width: auto;
5 5
6.text-muted { 6.muted {
7 font-size: 90%; 7 font-size: 90%;
8} 8}
9 9