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

github.com/MarlinFirmware/MarlinDocumentation.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Lahteine <github@thinkyhead.com>2019-12-22 03:20:47 +0300
committerScott Lahteine <github@thinkyhead.com>2019-12-24 10:33:17 +0300
commit2de57c602a2f52387683edef6c614a9237dc6c56 (patch)
tree4d876f85023c98967cfebf43209995f79c9abc6d /_plugins
parenta84280bfe50fb40f83acd0ddd239a617d92454fd (diff)
Add a dark theme to the site
Diffstat (limited to '_plugins')
-rw-r--r--_plugins/alert-panel-tags.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/_plugins/alert-panel-tags.rb b/_plugins/alert-panel-tags.rb
index 5ea9a951..bebe55ac 100644
--- a/_plugins/alert-panel-tags.rb
+++ b/_plugins/alert-panel-tags.rb
@@ -43,8 +43,7 @@ module Jekyll
source = "<div class=\"panel panel-#{@type}\">"
source += "<div class=\"panel-heading\">"
- source += "<i class=\"fa #{@icon} pull-left\" aria-hidden=\"true\"></i>"
- source += "<h4 class=\"panel-title\">#{@title}</h4></div>"
+ source += "<h4 class=\"panel-title\"><i class=\"fa #{@icon} pull-left\" aria-hidden=\"true\"></i>#{@title}</h4></div>"
source += "<div class=\"panel-body\"><p>#{markdownify(super)}</p></div>"
source += "</div>"
end