# HG changeset patch # User Aurelien Campeas # Date 1322055913 -3600 # Node ID bedf36fb17f18707d4078af325ae613efcd8430b # Parent 3efb83e4e8f36f10561e5c712797914882a1f0bb [tableview] fix action menu layout (closes #2099011) * on the left instead of the right of the table * remove the arrow and the bullets diff -r 3efb83e4e8f3 -r bedf36fb17f1 web/data/cubicweb.tableview.css --- a/web/data/cubicweb.tableview.css Wed Nov 23 12:30:05 2011 +0100 +++ b/web/data/cubicweb.tableview.css Wed Nov 23 14:45:13 2011 +0100 @@ -20,8 +20,20 @@ font-weight: bold; } +div.tableActionsBox { +} -div#tableActionsBox { - direction:rtl; - float:right +div.tableActionsBox .popup { + border-radius: 5px; + background: %(incontextBoxBodyBgColor)s; + box-shadow: 3px 3px 3px Grey; } + +div.tableActionsBox li { + background: none; + /* we should probably get rid of ul/li structure because + of the spurious space consumed by the bullet */ + margin-right: .3em; + margin-left: -.3em; +} + diff -r 3efb83e4e8f3 -r bedf36fb17f1 web/views/tableview.py --- a/web/views/tableview.py Wed Nov 23 12:30:05 2011 +0100 +++ b/web/views/tableview.py Wed Nov 23 14:45:13 2011 +0100 @@ -289,9 +289,8 @@ return attrs def render_actions(self, w, actions): - box = MenuWidget('', 'tableActionsBox', _class='', islist=False) - label = tags.img(src=self._cw.uiprops['PUCE_DOWN'], - alt=xml_escape(self._cw._('action(s) on this selection'))) + box = MenuWidget('', '', _class='tableActionsBox', islist=False) + label = tags.span(self._cw._('action menu')) menu = PopupBoxMenu(label, isitem=False, link_class='actionsBox', ident='%sActions' % self.view.domid) box.append(menu)