We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ac9ec3 commit d54df75Copy full SHA for d54df75
public/css/nimforum.scss
@@ -143,6 +143,16 @@ $logo-height: $navbar-height - 20px;
143
white-space: nowrap;
144
}
145
146
+.category-name {
147
+ a:link,
148
+ a:hover,
149
+ a:active,
150
+ a:visited {
151
+ color: $body-font-color;
152
+ text-decoration: none;
153
+ }
154
+}
155
+
156
#new-thread {
157
.modal-container .modal-body {
158
max-height: none;
src/frontend/category.nim
@@ -39,7 +39,8 @@ when defined(js):
39
kstring"0.25rem solid #" & category.color)
40
))
41
span(class="category-name"):
42
- text category.name
+ a(href=makeUri("/c/" & $category.id)):
43
+ text category.name
44
if not compact:
45
span(class="topic-count"):
46
text "× " & $category.numTopics
0 commit comments