Commit 78781877 authored by Georgios Dagkakis's avatar Georgios Dagkakis

erp5_web_renderjs_ui: CSS: add support for hiding the header or footer of Listbox

parent c0b8e03e
...@@ -1386,6 +1386,9 @@ div[data-gadget-scope='erp5_searchfield'] div.search_parsed_value button { ...@@ -1386,6 +1386,9 @@ div[data-gadget-scope='erp5_searchfield'] div.search_parsed_value button {
text-indent: 0; text-indent: 0;
} }
} }
div.invisible_header .document_table .ui-table-header {
display: none;
}
.document_table table { .document_table table {
width: 100%; width: 100%;
text-align: left; text-align: left;
...@@ -1557,6 +1560,9 @@ div[data-gadget-scope='erp5_searchfield'] div.search_parsed_value button { ...@@ -1557,6 +1560,9 @@ div[data-gadget-scope='erp5_searchfield'] div.search_parsed_value button {
text-indent: 6pt; text-indent: 6pt;
} }
} }
div.invisible_footer .document_table nav {
display: none;
}
.document_table tbody tr td:first-child input.hide_element[type="checkbox"] { .document_table tbody tr td:first-child input.hide_element[type="checkbox"] {
display: none; display: none;
} }
...@@ -3224,4 +3230,4 @@ hmtl .ui-icon-carat-u::before { ...@@ -3224,4 +3230,4 @@ hmtl .ui-icon-carat-u::before {
} }
.ui-icon-clone::before { .ui-icon-clone::before {
content: "\f24d"; content: "\f24d";
} }
\ No newline at end of file
...@@ -226,7 +226,7 @@ ...@@ -226,7 +226,7 @@
</item> </item>
<item> <item>
<key> <string>actor</string> </key> <key> <string>actor</string> </key>
<value> <string>zope</string> </value> <value> <string>george</string> </value>
</item> </item>
<item> <item>
<key> <string>comment</string> </key> <key> <string>comment</string> </key>
...@@ -240,7 +240,7 @@ ...@@ -240,7 +240,7 @@
</item> </item>
<item> <item>
<key> <string>serial</string> </key> <key> <string>serial</string> </key>
<value> <string>978.16630.28355.65160</string> </value> <value> <string>978.62565.16505.60211</string> </value>
</item> </item>
<item> <item>
<key> <string>state</string> </key> <key> <string>state</string> </key>
...@@ -258,7 +258,7 @@ ...@@ -258,7 +258,7 @@
</tuple> </tuple>
<state> <state>
<tuple> <tuple>
<float>1567764069.82</float> <float>1570434256.84</float>
<string>UTC</string> <string>UTC</string>
</tuple> </tuple>
</state> </state>
......
...@@ -1623,6 +1623,11 @@ div[data-gadget-scope='erp5_searchfield'] { ...@@ -1623,6 +1623,11 @@ div[data-gadget-scope='erp5_searchfield'] {
} }
} }
} }
// Used to hide Listbox header
div.invisible_header & {
display: none;
}
} }
table { table {
...@@ -1806,6 +1811,11 @@ div[data-gadget-scope='erp5_searchfield'] { ...@@ -1806,6 +1811,11 @@ div[data-gadget-scope='erp5_searchfield'] {
} }
} }
} }
// Used to hide Listbox footer
div.invisible_footer & {
display: none;
}
} }
......
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