Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xaprb/story.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaron Schwartz <xaprb@users.noreply.github.com>2019-01-30 21:23:06 +0300
committerBaron Schwartz <xaprb@users.noreply.github.com>2019-01-30 21:23:06 +0300
commit35c058ad4f1b4e9b21665fb7882c53ab075f4bb7 (patch)
tree6e1613b4b3c080587330d1d26d0b6dd055c9116b
parent50bf4ba8afaf94eb33bbcb575116c2e39c0f96e9 (diff)
clean up search page link styling
-rw-r--r--layouts/_default/search.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/layouts/_default/search.html b/layouts/_default/search.html
index 8da69aa..fecc189 100644
--- a/layouts/_default/search.html
+++ b/layouts/_default/search.html
@@ -98,7 +98,8 @@
// Only show the first results
results.slice(0, 20).forEach(function(result) {
var $result = $("<li>");
- $result.append($('<a>', {
+ $result.append($('<a>', {
+ class: 'no-underline dim link',
href: result.uri,
text: result.title
}));