Give the "More" link a but of extra space from other actions

This commit is contained in:
Lance Edgar 2017-08-17 18:00:22 -05:00
parent c038d74302
commit 639644375d

View file

@ -863,7 +863,7 @@ class Grid(object):
if more_actions:
icon = HTML.tag('span', class_='ui-icon ui-icon-carat-1-e')
link = tags.link_to("More" + icon, '#', class_='more')
main_actions.append(link + HTML.tag('div', class_='more', c=more_actions))
main_actions.append(HTML.literal('  ') + link + HTML.tag('div', class_='more', c=more_actions))
return HTML.literal('').join(main_actions)
def render_action(self, action, row, i):