Commit 3e00d788 authored by Ivan Tyagov's avatar Ivan Tyagov

In listbox "tree" (domain | report) make sure we get consistent view of whole...

In listbox "tree" (domain | report) make sure we get consistent view of whole width as in "flat" mode.
Add styling for "No result" & "stats" bottom table rows.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@38205 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent a86a2a89
......@@ -165,7 +165,7 @@
</div>\n
\n
<div class="listbox-content" \n
tal:attributes="class python: test(not is_domain_tree_mode, \'listbox-content maximal-width\', \'listbox-content auto-width\')">\n
tal:attributes="class python: test(not is_domain_tree_mode, \'listbox-content maximal-width\', \'listbox-content listbox-content-fixed-width\')">\n
\n
<div class="listbox-head">\n
\n
......@@ -469,8 +469,9 @@
\n
<!-- No results. -->\n
<tr tal:condition="python: total_line == 0 and not hide_rows_on_no_search_criterion">\n
<td tal:attributes="colspan python: len(here.getSearchValueList()) + 1">\n
<span class="listbox_no_result" i18n:translate="" i18n:domain="ui">\n
<td tal:attributes="colspan python: len(here.getSearchValueList()) + 1"\n
class="listbox-table-no-result-row">\n
<span i18n:translate="" i18n:domain="ui">\n
No result.\n
</span>\n
</td>\n
......
......@@ -402,7 +402,7 @@ div.listbox-body{\n
\n
div.listbox-tree{\n
margin-right: 8px;\n
width: auto;\n
max-width: 10%;\n
float: left;\n
}\n
\n
......@@ -420,8 +420,18 @@ div.float-right{\n
float:right;\n
}\n
\n
div.auto-width{\n
width:auto;\n
div.listbox-content-fixed-width{\n
width:90%;\n
}\n
\n
table.listbox td.listbox-table-no-result-row{\n
border: 1px solid #3D6474;\n
text-align:center;\n
}\n
\n
table.listbox tr.listbox_stat_line{\n
border-top: 1px solid #3D6474;\n
\n
}\n
\n
\n
......
997
\ No newline at end of file
998
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment