FIX: Category badge style of none was causing errors when rendering

This commit is contained in:
Robin Ward 2017-08-24 13:44:59 -04:00
parent 237968b1b7
commit 0b58848895
1 changed files with 7 additions and 0 deletions

View File

@ -15,6 +15,7 @@ module CategoryBadge
when :bar then 'line-height: 1.25; margin-right: 5px;' when :bar then 'line-height: 1.25; margin-right: 5px;'
when :box then 'line-height: 1.5; margin-top: 5px; margin-right: 5px;' when :box then 'line-height: 1.5; margin-top: 5px; margin-right: 5px;'
when :bullet then 'line-height: 1; margin-right: 10px;' when :bullet then 'line-height: 1; margin-right: 10px;'
when :none then ''
end end
" style='font-size: 0.857em; white-space: nowrap; display: inline-block; position: relative; #{style}'" " style='font-size: 0.857em; white-space: nowrap; display: inline-block; position: relative; #{style}'"
@ -45,6 +46,8 @@ module CategoryBadge
inline_category_stripe(parent_category.color, 'display: block; position: absolute; width: 100%; height: 100%;') inline_category_stripe(parent_category.color, 'display: block; position: absolute; width: 100%; height: 100%;')
when :bullet when :bullet
inline_category_stripe(parent_category.color, 'display: inline-block; width: 5px; height: 10px; line-height: 1;') inline_category_stripe(parent_category.color, 'display: inline-block; width: 5px; height: 10px; line-height: 1;')
when :none
''
end end
else else
category_stripe(parent_category.color, 'badge-category-parent-bg') category_stripe(parent_category.color, 'badge-category-parent-bg')
@ -67,6 +70,8 @@ module CategoryBadge
end end
when :bullet when :bullet
inline_category_stripe(category.color, "display: inline-block; width: #{category.parent_category_id.nil? ? 10 : 5}px; height: 10px;") inline_category_stripe(category.color, "display: inline-block; width: #{category.parent_category_id.nil? ? 10 : 5}px; height: 10px;")
when :none
''
end end
else else
category_stripe(category.color, 'badge-category-bg') category_stripe(category.color, 'badge-category-bg')
@ -86,6 +91,8 @@ module CategoryBadge
"color: #{category.text_color}; #{show_parent ? 'margin-left: 5px; ' : ''} position: relative; padding: 0 5px; margin-top: 2px;" "color: #{category.text_color}; #{show_parent ? 'margin-left: 5px; ' : ''} position: relative; padding: 0 5px; margin-top: 2px;"
when :bullet when :bullet
'color: #222222; vertical-align: text-top; line-height: 1; margin-left: 4px; padding-left: 2px; display: inline;' 'color: #222222; vertical-align: text-top; line-height: 1; margin-left: 4px; padding-left: 2px; display: inline;'
when :none
''
end + 'max-width: 150px; overflow: hidden; text-overflow: ellipsis;' end + 'max-width: 150px; overflow: hidden; text-overflow: ellipsis;'
else else
'' ''