Fix various elements to use standard font sizes instead of ad-hoc sizes. Noticeable changes: * Tags in autocomplete are slightly smaller. * The favorite heart icon on posts is slightly smaller. * Pool titles on thumbnails in the pool gallery page are slightly bigger. * The page footer is slightly smaller. * Timestamps on comments and forum posts are very slightly smaller. * "Pending"/"approved"/"rejected" labels on forum posts are very slightly smaller.
24 lines
942 B
Plaintext
24 lines
942 B
Plaintext
<footer id="page-footer" class="text-sm">
|
|
<span class="page-footer-app-name"><%= Danbooru.config.app_name %></span>
|
|
/ <%= link_to "Rules", terms_of_service_path %>
|
|
/ <%= link_to "Contact", contact_path %>
|
|
/
|
|
<span class="social-icons">
|
|
<% if Danbooru.config.source_code_url.present? %>
|
|
<%= link_to Danbooru.config.source_code_url, title: "Running commit: #{Rails.application.config.x.git_hash&.first(9)}", class: "social-icon" do %>
|
|
<%= github_icon %>
|
|
<% end %>
|
|
<% end %>
|
|
<% if Danbooru.config.twitter_username.present? %>
|
|
<%= link_to "https://twitter.com/#{Danbooru.config.twitter_username}", class: "social-icon" do %>
|
|
<%= twitter_icon %>
|
|
<% end %>
|
|
<% end %>
|
|
<% if Danbooru.config.discord_server_url.present? %>
|
|
<%= link_to Danbooru.config.discord_server_url, class: "social-icon" do %>
|
|
<%= discord_icon %>
|
|
<% end %>
|
|
<% end %>
|
|
</span>
|
|
</footer>
|