Skip to content

Commit 98fde1d

Browse files
committed
replace some text-muted with text-secondary
1 parent ef8af71 commit 98fde1d

File tree

9 files changed

+84
-84
lines changed

9 files changed

+84
-84
lines changed

templates/category.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<h1 class="tracking-tight fs-2 fw-semibold mb-0 text-center">{./name}</h1>
1010
</div>
1111
{{{ if ./descriptionParsed }}}
12-
<div class="description text-muted text-sm w-100 {{{ if config.theme.centerHeaderElements }}}text-center{{{ end }}}">
12+
<div class="description text-secondary text-sm w-100 {{{ if config.theme.centerHeaderElements }}}text-center{{{ end }}}">
1313
{./descriptionParsed}
1414
</div>
1515
{{{ end }}}

templates/partials/category/sort.tpl

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,31 +8,31 @@
88
<li>
99
<a class="dropdown-item rounded-1 d-flex align-items-center gap-2" href="#" data-sort="newest_to_oldest" role="menuitem">
1010
<span class="flex-grow-1">[[topic:newest-to-oldest]]</span>
11-
<i class="flex-shrink-0 fa fa-fw text-muted"></i>
11+
<i class="flex-shrink-0 fa fa-fw text-secondary"></i>
1212
</a>
1313
</li>
1414
<li>
1515
<a class="dropdown-item rounded-1 d-flex align-items-center gap-2" href="#" data-sort="oldest_to_newest" role="menuitem">
1616
<span class="flex-grow-1">[[topic:oldest-to-newest]]</span>
17-
<i class="flex-shrink-0 fa fa-fw text-muted"></i>
17+
<i class="flex-shrink-0 fa fa-fw text-secondary"></i>
1818
</a>
1919
</li>
2020
<li>
2121
<a class="dropdown-item rounded-1 d-flex align-items-center gap-2" href="#" data-sort="most_posts" role="menuitem">
2222
<span class="flex-grow-1">[[topic:most-posts]]</span>
23-
<i class="flex-shrink-0 fa fa-fw text-muted"></i>
23+
<i class="flex-shrink-0 fa fa-fw text-secondary"></i>
2424
</a>
2525
</li>
2626
<li>
2727
<a class="dropdown-item rounded-1 d-flex align-items-center gap-2" href="#" data-sort="most_votes" role="menuitem">
2828
<span class="flex-grow-1">[[topic:most-votes]]</span>
29-
<i class="flex-shrink-0 fa fa-fw text-muted"></i>
29+
<i class="flex-shrink-0 fa fa-fw text-secondary"></i>
3030
</a>
3131
</li>
3232
<li>
3333
<a class="dropdown-item rounded-1 d-flex align-items-center gap-2" href="#" data-sort="most_views" role="menuitem">
3434
<span class="flex-grow-1">[[topic:most-views]]</span>
35-
<i class="flex-shrink-0 fa fa-fw text-muted"></i>
35+
<i class="flex-shrink-0 fa fa-fw text-secondary"></i>
3636
</a>
3737
</li>
3838
</ul>

templates/partials/category/tools.tpl

+13-13
Original file line numberDiff line numberDiff line change
@@ -8,79 +8,79 @@
88
<ul class="dropdown-menu p-1 text-sm" role="menu">
99
<li>
1010
<a component="topic/mark-unread-for-all" href="#" class="dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem">
11-
<i class="fa fa-fw text-muted fa-inbox"></i> [[topic:thread-tools.markAsUnreadForAll]]
11+
<i class="fa fa-fw fa-inbox text-secondary"></i> [[topic:thread-tools.markAsUnreadForAll]]
1212
</a>
1313
</li>
1414
<li>
1515
<a component="topic/pin" href="#" class="dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem">
16-
<i class="fa fa-fw text-muted fa-thumb-tack"></i> [[topic:thread-tools.pin]]
16+
<i class="fa fa-fw fa-thumb-tack text-secondary"></i> [[topic:thread-tools.pin]]
1717
</a>
1818
</li>
1919
<li>
2020
<a component="topic/unpin" href="#" class="hidden dropdown-item rounded-1" role="menuitem">
21-
<i class="fa fa-fw text-muted fa-thumb-tack fa-rotate-90"></i> [[topic:thread-tools.unpin]]
21+
<i class="fa fa-fw fa-thumb-tack fa-rotate-90 text-secondary"></i> [[topic:thread-tools.unpin]]
2222
</a>
2323
</li>
2424

2525
<li>
2626
<a component="topic/lock" href="#" class="dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem">
27-
<i class="fa fa-fw text-muted fa-lock"></i> [[topic:thread-tools.lock]]
27+
<i class="fa fa-fw fa-lock text-secondary"></i> [[topic:thread-tools.lock]]
2828
</a>
2929
</li>
3030
<li>
3131
<a component="topic/unlock" href="#" class="hidden dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem">
32-
<i class="fa fa-fw text-muted fa-unlock"></i> [[topic:thread-tools.unlock]]
32+
<i class="fa fa-fw fa-unlock text-secondary"></i> [[topic:thread-tools.unlock]]
3333
</a>
3434
</li>
3535

3636
<li class="dropdown-divider"></li>
3737

3838
<li>
3939
<a component="topic/move" href="#" class="dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem">
40-
<i class="fa fa-fw text-muted fa-arrows"></i> [[topic:thread-tools.move]]
40+
<i class="fa fa-fw fa-arrows text-secondary"></i> [[topic:thread-tools.move]]
4141
</a>
4242
</li>
4343
{{{if template.category}}}
4444
<li>
4545
<a component="topic/move-all" href="#" class="dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem">
46-
<i class="fa fa-fw text-muted fa-arrows"></i> [[topic:thread-tools.move-all]]
46+
<i class="fa fa-fw fa-arrows text-secondary"></i> [[topic:thread-tools.move-all]]
4747
</a>
4848
</li>
4949
{{{end}}}
5050
<li>
5151
<a component="topic/merge" href="#" class="dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem">
52-
<i class="fa fa-fw text-muted fa-code-fork"></i> [[topic:thread-tools.merge]]
52+
<i class="fa fa-fw fa-code-fork text-secondary"></i> [[topic:thread-tools.merge]]
5353
</a>
5454
</li>
5555

5656
<li>
5757
<a component="topic/tag" href="#" class="dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem">
58-
<i class="fa fa-fw text-muted fa-tag"></i> [[topic:thread-tools.tag]]
58+
<i class="fa fa-fw fa-tag text-secondary"></i> [[topic:thread-tools.tag]]
5959
</a>
6060
</li>
6161

6262
<li class="dropdown-divider"></li>
6363

6464
<li>
6565
<a component="topic/delete" href="#" class="dropdown-item rounded-1 d-flex align-items-center gap-2" role="menuitem">
66-
<i class="fa fa-fw text-muted fa-trash-o"></i> [[topic:thread-tools.delete]]
66+
<i class="fa fa-fw fa-trash-o text-secondary"></i> [[topic:thread-tools.delete]]
6767
</a>
6868
</li>
6969
<li>
7070
<a component="topic/restore" href="#" class="hidden dropdown-item rounded-1" role="menuitem">
71-
<i class="fa fa-fw text-muted fa-history"></i> [[topic:thread-tools.restore]]
71+
<i class="fa fa-fw fa-history text-secondary"></i> [[topic:thread-tools.restore]]
7272
</a>
7373
</li>
7474
<li>
7575
<a component="topic/purge" href="#" class="hidden dropdown-item rounded-1" role="menuitem">
76-
<i class="fa fa-fw text-muted fa-eraser"></i> [[topic:thread-tools.purge]]
76+
<i class="fa fa-fw fa-eraser text-secondary"></i> [[topic:thread-tools.purge]]
7777
</a>
7878
</li>
7979

8080
{{{each thread_tools}}}
8181
<li>
8282
<a href="#" class="dropdown-item rounded-1 d-flex align-items-center gap-2 {thread_tools.class}" role="menuitem">
83-
<i class="fa fa-fw {thread_tools.icon}"></i>
83+
<i class="fa fa-fw {thread_tools.icon} text-secondary"></i>
8484
{thread_tools.title}</a>
8585
</li>
8686
{{{end}}}

templates/partials/category/watch.tpl

+8-8
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
<a class="dropdown-item rounded-1 d-flex align-items-center gap-2 p-2" href="#" component="category/watching" data-state="watching" role="menuitem">
1616
<div class="flex-grow-1 d-flex flex-column">
1717
<span class="d-flex align-items-center gap-2">
18-
<i class="flex-shrink-0 fa fa-fw text-muted fa-bell-o"></i>
18+
<i class="flex-shrink-0 fa fa-fw fa-bell-o text-secondary"></i>
1919
<span class="flex-grow-1 fw-semibold">[[category:watching]]</span>
2020
</span>
21-
<div class="help-text text-muted text-xs">[[category:watching.description]]</div>
21+
<div class="help-text text-secondary text-xs">[[category:watching.description]]</div>
2222
</div>
2323
<span class="flex-shrink-0"><i component="category/watching/check" class="fa fa-fw {{{ if ./isWatched }}}fa-check{{{ end }}}"></i></span>
2424
</a>
@@ -28,10 +28,10 @@
2828
<a class="dropdown-item rounded-1 d-flex align-items-center gap-2 p-2" href="#" component="category/tracking" data-state="tracking" role="menuitem">
2929
<div class="flex-grow-1 d-flex flex-column">
3030
<span class="d-flex align-items-center gap-2">
31-
<i class="flex-shrink-0 fa fa-fw text-muted fa-inbox"></i>
31+
<i class="flex-shrink-0 fa fa-fw fa-inbox text-secondary"></i>
3232
<span class="flex-grow-1 fw-semibold">[[category:tracking]]</span>
3333
</span>
34-
<div class="help-text text-muted text-xs">[[category:tracking.description]]</div>
34+
<div class="help-text text-secondary text-xs">[[category:tracking.description]]</div>
3535
</div>
3636
<span class="flex-shrink-0"><i component="category/tracking/check" class="fa fa-fw {{{ if ./isTracked }}}fa-check{{{ end }}}"></i></span>
3737
</a>
@@ -41,10 +41,10 @@
4141
<a class="dropdown-item rounded-1 d-flex align-items-center gap-2 p-2" href="#" component="category/notwatching" data-state="notwatching" role="menuitem">
4242
<div class="flex-grow-1 d-flex flex-column">
4343
<span class="d-flex align-items-center gap-2">
44-
<i class="flex-shrink-0 fa fa-fw text-muted fa-clock-o"></i>
44+
<i class="flex-shrink-0 fa fa-fw fa-clock-o text-secondary"></i>
4545
<span class="flex-grow-1 fw-semibold">[[category:not-watching]]</span>
4646
</span>
47-
<div class="help-text text-muted text-xs">[[category:not-watching.description]]</div>
47+
<div class="help-text text-secondary text-xs">[[category:not-watching.description]]</div>
4848
</div>
4949
<span class="flex-shrink-0"><i component="category/notwatching/check" class="fa fa-fw {{{ if ./isNotWatched }}}fa-check{{{ end }}}"></i></span>
5050
</a>
@@ -54,10 +54,10 @@
5454
<a class="dropdown-item rounded-1 d-flex align-items-center gap-2 p-2" href="#" component="category/ignoring" data-state="ignoring" role="menuitem">
5555
<div class="flex-grow-1 d-flex flex-column">
5656
<span class="d-flex align-items-center gap-2">
57-
<i class="flex-shrink-0 fa fa-fw text-muted fa-eye-slash"></i>
57+
<i class="flex-shrink-0 fa fa-fw fa-eye-slash text-secondary"></i>
5858
<span class="flex-grow-1 fw-semibold">[[category:ignoring]]</span>
5959
</span>
60-
<div class="help-text text-muted text-xs">[[category:ignoring.description]]</div>
60+
<div class="help-text text-secondary text-xs">[[category:ignoring.description]]</div>
6161
</div>
6262
<span class="flex-shrink-0"><i component="category/ignoring/check" class="fa fa-fw {{{ if ./isIgnored }}}fa-check{{{ end }}}"></i></span>
6363
</a>

templates/partials/sidebar/user-menu.tpl

+13-13
Original file line numberDiff line numberDiff line change
@@ -15,76 +15,76 @@
1515
<a href="#" class="dropdown-item rounded-1 user-status d-flex align-items-center gap-2 {{{ if user.online }}}selected{{{ end }}}" data-status="online" role="menuitem">
1616
<span component="user/status" class="flex-shrink-0 border border-white border-2 rounded-circle status online"></span>
1717
<span class="flex-grow-1">[[global:online]]</span>
18-
<i class="fa-solid fa-check text-muted flex-shrink-0" aria-label="[[global:selected]]"></i>
18+
<i class="fa-solid fa-check text-secondary flex-shrink-0" aria-label="[[global:selected]]"></i>
1919
</a>
2020
</li>
2121
<li>
2222
<a href="#" class="dropdown-item rounded-1 user-status d-flex align-items-center gap-2 {{{ if user.away }}}selected{{{ end }}}" data-status="away" role="menuitem">
2323
<span component="user/status" class="flex-shrink-0 border border-white border-2 rounded-circle status away"></span>
2424
<span class="flex-grow-1">[[global:away]]</span>
25-
<i class="fa-solid fa-check text-muted flex-shrink-0"><span class="visually-hidden"></span>[[global:selected]]</span></i>
25+
<i class="fa-solid fa-check text-secondary flex-shrink-0"><span class="visually-hidden"></span>[[global:selected]]</span></i>
2626
</a>
2727
</li>
2828
<li>
2929
<a href="#" class="dropdown-item rounded-1 user-status d-flex align-items-center gap-2 {{{ if user.dnd }}}selected{{{ end }}}" data-status="dnd" role="menuitem">
3030
<span component="user/status" class="flex-shrink-0 border border-white border-2 rounded-circle status dnd"></span>
3131
<span class="flex-grow-1">[[global:dnd]]</span>
32-
<i class="fa-solid fa-check text-muted flex-shrink-0"></i>
32+
<i class="fa-solid fa-check text-secondary flex-shrink-0"></i>
3333
</a>
3434
</li>
3535
<li>
3636
<a href="#" class="dropdown-item rounded-1 user-status d-flex align-items-center gap-2 {{{ if user.offline }}}selected{{{ end }}}" data-status="offline" role="menuitem">
3737
<span component="user/status" class="flex-shrink-0 border border-white border-2 rounded-circle status offline"></span>
3838
<span class="flex-grow-1">[[global:invisible]]</span>
39-
<i class="fa-solid fa-check text-muted flex-shrink-0"></i>
39+
<i class="fa-solid fa-check text-secondary flex-shrink-0"></i>
4040
</a>
4141
</li>
4242
<li role="presentation" class="dropdown-divider"></li>
4343
<li>
4444
<a class="dropdown-item rounded-1 d-flex align-items-center gap-2" href="{relative_path}/user/{user.userslug}/bookmarks" role="menuitem">
45-
<i class="fa fa-fw fa-bookmark text-muted"></i> <span>[[user:bookmarks]]</span>
45+
<i class="fa fa-fw fa-bookmark text-secondary"></i> <span>[[user:bookmarks]]</span>
4646
</a>
4747
</li>
4848
<li>
4949
<a class="dropdown-item rounded-1 d-flex align-items-center gap-2" component="header/profilelink/edit" href="{relative_path}/user/{user.userslug}/edit" role="menuitem">
50-
<i class="fa fa-fw fa-edit text-muted"></i> <span>[[user:edit-profile]]</span>
50+
<i class="fa fa-fw fa-edit text-secondary"></i> <span>[[user:edit-profile]]</span>
5151
</a>
5252
</li>
5353
<li>
5454
<a class="dropdown-item rounded-1 d-flex align-items-center gap-2" component="header/profilelink/settings" href="{relative_path}/user/{user.userslug}/settings" role="menuitem">
55-
<i class="fa fa-fw fa-gear text-muted"></i> <span>[[user:settings]]</span>
55+
<i class="fa fa-fw fa-gear text-secondary"></i> <span>[[user:settings]]</span>
5656
</a>
5757
</li>
5858
{{{ if showModMenu }}}
5959
<li role="presentation" class="dropdown-divider"></li>
6060
<li><h6 class="dropdown-header text-xs">[[pages:moderator-tools]]</h6></li>
6161
<li>
6262
<a class="dropdown-item rounded-1 d-flex align-items-center gap-2" href="{relative_path}/flags" role="menuitem">
63-
<i class="fa fa-fw fa-flag text-muted"></i> <span>[[pages:flagged-content]]</span>
63+
<i class="fa fa-fw fa-flag text-secondary"></i> <span>[[pages:flagged-content]]</span>
6464
</a>
6565
</li>
6666
<li>
6767
<a class="dropdown-item rounded-1 d-flex align-items-center gap-2" href="{relative_path}/post-queue" role="menuitem">
68-
<i class="fa fa-fw fa-list-alt text-muted"></i> <span>[[pages:post-queue]]</span>
68+
<i class="fa fa-fw fa-list-alt text-secondary"></i> <span>[[pages:post-queue]]</span>
6969
</a>
7070
</li>
7171
{{{ if registrationQueueEnabled }}}
7272
<li>
7373
<a class="dropdown-item rounded-1 d-flex align-items-center gap-2" href="{relative_path}/registration-queue" role="menuitem">
74-
<i class="fa fa-fw fa-list-alt text-muted"></i> <span>[[pages:registration-queue]]</span>
74+
<i class="fa fa-fw fa-list-alt text-secondary"></i> <span>[[pages:registration-queue]]</span>
7575
</a>
7676
</li>
7777
{{{ end }}}
7878
<li>
7979
<a class="dropdown-item rounded-1 d-flex align-items-center gap-2" href="{relative_path}/ip-blacklist" role="menuitem">
80-
<i class="fa fa-fw fa-ban text-muted"></i> <span>[[pages:ip-blacklist]]</span>
80+
<i class="fa fa-fw fa-ban text-secondary"></i> <span>[[pages:ip-blacklist]]</span>
8181
</a>
8282
</li>
8383
{{{ else }}}
8484
{{{ if postQueueEnabled }}}
8585
<li>
8686
<a class="dropdown-item rounded-1 d-flex align-items-center gap-2" href="{relative_path}/post-queue" role="menuitem">
87-
<i class="fa fa-fw fa-list-alt text-muted"></i> <span>[[pages:post-queue]]</span>
87+
<i class="fa fa-fw fa-list-alt text-secondary"></i> <span>[[pages:post-queue]]</span>
8888
</a>
8989
</li>
9090
{{{ end }}}
@@ -96,7 +96,7 @@
9696
<input type="hidden" name="_csrf" value="{config.csrf_token}">
9797
<input type="hidden" name="noscript" value="true">
9898
<button type="submit" class="dropdown-item rounded-1 d-flex align-items-center gap-2">
99-
<i class="fa fa-fw fa-sign-out text-muted"></i><span>[[global:logout]]</span>
99+
<i class="fa fa-fw fa-sign-out text-secondary"></i><span>[[global:logout]]</span>
100100
</button>
101101
</form>
102102
</li>

0 commit comments

Comments
 (0)