diff options
author | Chocobozzz <me@florianbigard.com> | 2022-03-15 14:12:37 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-03-15 14:12:37 +0100 |
commit | b788e69131dccc1be147244e5b4d9e64deb2dc76 (patch) | |
tree | 3f09cb25b38f159b2ef24a574261c81140845acd /client/src/app/header | |
parent | 74220dba9db6a1dc5c0b504b0230de26ef9c9dd5 (diff) | |
download | PeerTube-b788e69131dccc1be147244e5b4d9e64deb2dc76.tar.gz PeerTube-b788e69131dccc1be147244e5b4d9e64deb2dc76.tar.zst PeerTube-b788e69131dccc1be147244e5b4d9e64deb2dc76.zip |
Some fixes for themes
Diffstat (limited to 'client/src/app/header')
-rw-r--r-- | client/src/app/header/search-typeahead.component.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/client/src/app/header/search-typeahead.component.html b/client/src/app/header/search-typeahead.component.html index 9b21d3f86..7a9b6c51f 100644 --- a/client/src/app/header/search-typeahead.component.html +++ b/client/src/app/header/search-typeahead.component.html | |||
@@ -24,21 +24,21 @@ | |||
24 | <div *ngIf="showSearchGlobalHelp()" id="typeahead-help" class="overflow-hidden"> | 24 | <div *ngIf="showSearchGlobalHelp()" id="typeahead-help" class="overflow-hidden"> |
25 | <div class="d-flex justify-content-between"> | 25 | <div class="d-flex justify-content-between"> |
26 | <label class="small-title" i18n>GLOBAL SEARCH</label> | 26 | <label class="small-title" i18n>GLOBAL SEARCH</label> |
27 | <div class="advanced-search-status text-muted"> | 27 | <div class="advanced-search-status muted"> |
28 | <span *ngIf="serverConfig" class="mr-1" i18n>using {{ serverConfig.search.searchIndex.url }}</span> | 28 | <span *ngIf="serverConfig" class="mr-1" i18n>using {{ serverConfig.search.searchIndex.url }}</span> |
29 | <i class="glyphicon glyphicon-globe"></i> | 29 | <i class="glyphicon glyphicon-globe"></i> |
30 | </div> | 30 | </div> |
31 | </div> | 31 | </div> |
32 | <div class="text-muted" i18n>Results will be augmented with those of a third-party index. Only data necessary to make the query will be sent.</div> | 32 | <div class="muted" i18n>Results will be augmented with those of a third-party index. Only data necessary to make the query will be sent.</div> |
33 | </div> | 33 | </div> |
34 | 34 | ||
35 | <!-- search instructions, when search input is empty --> | 35 | <!-- search instructions, when search input is empty --> |
36 | <div *ngIf="areInstructionsDisplayed()" id="typeahead-instructions" class="overflow-hidden"> | 36 | <div *ngIf="areInstructionsDisplayed()" id="typeahead-instructions" class="overflow-hidden"> |
37 | <span class="text-muted" i18n>Your query will be matched against video names or descriptions, channel names.</span> | 37 | <span class="muted" i18n>Your query will be matched against video names or descriptions, channel names.</span> |
38 | <div class="d-flex justify-content-between mt-3"> | 38 | <div class="d-flex justify-content-between mt-3"> |
39 | <label class="small-title" i18n>ADVANCED SEARCH</label> | 39 | <label class="small-title" i18n>ADVANCED SEARCH</label> |
40 | <div class="advanced-search-status c-help"> | 40 | <div class="advanced-search-status c-help"> |
41 | <span [ngClass]="canSearchAnyURI ? 'text-success' : 'text-muted'" i18n-title title="Determines whether you can resolve any distant content, or if this instance only allows doing so for instances it follows."> | 41 | <span [ngClass]="canSearchAnyURI ? 'text-success' : 'muted'" i18n-title title="Determines whether you can resolve any distant content, or if this instance only allows doing so for instances it follows."> |
42 | <span *ngIf="canSearchAnyURI()" class="mr-1" i18n>any instance</span> | 42 | <span *ngIf="canSearchAnyURI()" class="mr-1" i18n>any instance</span> |
43 | <span *ngIf="!canSearchAnyURI()" class="mr-1" i18n>only followed instances</span> | 43 | <span *ngIf="!canSearchAnyURI()" class="mr-1" i18n>only followed instances</span> |
44 | <i [ngClass]="canSearchAnyURI() ? 'glyphicon glyphicon-ok-sign' : 'glyphicon glyphicon-exclamation-sign'"></i> | 44 | <i [ngClass]="canSearchAnyURI() ? 'glyphicon glyphicon-ok-sign' : 'glyphicon glyphicon-exclamation-sign'"></i> |
@@ -47,13 +47,13 @@ | |||
47 | </div> | 47 | </div> |
48 | <ul> | 48 | <ul> |
49 | <li> | 49 | <li> |
50 | <em>@channel_id@domain</em> <span class="flex-auto text-muted" i18n>will list the matching channel</span> | 50 | <em>@channel_id@domain</em> <span class="flex-auto muted" i18n>will list the matching channel</span> |
51 | </li> | 51 | </li> |
52 | <li> | 52 | <li> |
53 | <em>URL</em> <span class="text-muted" i18n>will list the matching channel</span> | 53 | <em>URL</em> <span class="muted" i18n>will list the matching channel</span> |
54 | </li> | 54 | </li> |
55 | <li> | 55 | <li> |
56 | <em>UUID</em> <span class="text-muted" i18n>will list the matching video</span> | 56 | <em>UUID</em> <span class="muted" i18n>will list the matching video</span> |
57 | </li> | 57 | </li> |
58 | </ul> | 58 | </ul> |
59 | </div> | 59 | </div> |