Use .align-text-bottom for feed icon images

This commit is contained in:
Anton Khorev 2024-04-28 02:07:53 +03:00
parent a2e7b5db56
commit acac5fcc89
2 changed files with 4 additions and 4 deletions

View file

@ -10,11 +10,11 @@ module ApplicationHelper
end end
def rss_link_to(args = {}) def rss_link_to(args = {})
link_to(image_tag("RSS.png", :size => "16x16"), args, :class => "rsssmall") link_to image_tag("RSS.png", :size => "16x16", :class => "align-text-bottom"), args
end end
def atom_link_to(args = {}) def atom_link_to(args = {})
link_to(image_tag("RSS.png", :size => "16x16"), args, :class => "rsssmall") link_to image_tag("RSS.png", :size => "16x16", :class => "align-text-bottom"), args
end end
def dir def dir

View file

@ -31,12 +31,12 @@ class ApplicationHelperTest < ActionView::TestCase
def test_rss_link_to def test_rss_link_to
link = rss_link_to(:controller => :diary_entries, :action => :rss) link = rss_link_to(:controller => :diary_entries, :action => :rss)
assert_dom_equal "<a class=\"rsssmall\" href=\"/diary/rss\"><img height=\"16\" src=\"/images/RSS.png\" width=\"16\" /></a>", link assert_dom_equal "<a href=\"/diary/rss\"><img height=\"16\" src=\"/images/RSS.png\" width=\"16\" class=\"align-text-bottom\" /></a>", link
end end
def test_atom_link_to def test_atom_link_to
link = atom_link_to(:controller => :changesets, :action => :feed) link = atom_link_to(:controller => :changesets, :action => :feed)
assert_dom_equal "<a class=\"rsssmall\" href=\"/history/feed\"><img height=\"16\" src=\"/images/RSS.png\" width=\"16\" /></a>", link assert_dom_equal "<a href=\"/history/feed\"><img height=\"16\" src=\"/images/RSS.png\" width=\"16\" class=\"align-text-bottom\" /></a>", link
end end
def test_dir def test_dir