# HG changeset patch # User bsw # Date 1331467483 -3600 # Node ID 2cdbfb06a62b3709e7e40f13a4d67c5d4d0ad0ab # Parent 93a40d1c66f4e2d738ae2dee4f92421e7dcacd04 Show more areas link in member area list italic diff -r 93a40d1c66f4 -r 2cdbfb06a62b app/main/member/_area_list.lua --- a/app/main/member/_area_list.lua Sun Mar 11 13:02:12 2012 +0100 +++ b/app/main/member/_area_list.lua Sun Mar 11 13:04:43 2012 +0100 @@ -64,7 +64,7 @@ :count() if more_area_count > 0 then slot.put("
") - ui.container{ content = function() + ui.container{ attr = { class = "more_areas" }, content = function() ui.link{ content = _("#{count} more areas in this unit, #{delegated_count} of them delegated", { count = more_area_count, delegated_count = delegated_count }), module = "unit", view = "show", id = unit.id } end } end diff -r 93a40d1c66f4 -r 2cdbfb06a62b static/style.css --- a/static/style.css Sun Mar 11 13:02:12 2012 +0100 +++ b/static/style.css Sun Mar 11 13:04:43 2012 +0100 @@ -879,6 +879,10 @@ margin-top: 4ex; } +.member_area_list .more_areas { + font-style: italic; +} + .area_list { margin-bottom: 4ex; }