Commit a1254a61 authored by Romain Courteaud's avatar Romain Courteaud

[erp5_web_renderjs_ui] Add cell separator for listbox cells

parent 7f683e25
...@@ -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 {
.document_table table tbody a { .document_table table tbody a {
display: block; display: block;
} }
.document_table table tbody td:not(:last-child) {
border-right: 1px solid rgba(0, 0, 0, 0.14902);
}
} }
@media not screen and (min-width: 45em) { @media not screen and (min-width: 45em) {
.document_table table tbody tr { .document_table table tbody tr {
......
...@@ -242,7 +242,7 @@ ...@@ -242,7 +242,7 @@
</item> </item>
<item> <item>
<key> <string>serial</string> </key> <key> <string>serial</string> </key>
<value> <string>965.13193.22070.47923</string> </value> <value> <string>965.13201.46575.21111</string> </value>
</item> </item>
<item> <item>
<key> <string>state</string> </key> <key> <string>state</string> </key>
...@@ -260,7 +260,7 @@ ...@@ -260,7 +260,7 @@
</tuple> </tuple>
<state> <state>
<tuple> <tuple>
<float>1517476658.39</float> <float>1517477074.88</float>
<string>UTC</string> <string>UTC</string>
</tuple> </tuple>
</state> </state>
......
...@@ -33,6 +33,8 @@ ...@@ -33,6 +33,8 @@
@panelbackgroundcolor: #444444; @panelbackgroundcolor: #444444;
@listboxbordercolor: rgba(0, 0, 0, 0.14902);
@radius: .325em; @radius: .325em;
// XXX BUG Generate wrong align on firefox smartphone // XXX BUG Generate wrong align on firefox smartphone
...@@ -1610,6 +1612,9 @@ div[data-gadget-scope='erp5_searchfield'] { ...@@ -1610,6 +1612,9 @@ div[data-gadget-scope='erp5_searchfield'] {
a { a {
display: block; display: block;
} }
td:not(:last-child) {
border-right: 1px solid @listboxbordercolor;
}
} }
@media @smartphone { @media @smartphone {
...@@ -1694,7 +1699,7 @@ div[data-gadget-scope='erp5_searchfield'] { ...@@ -1694,7 +1699,7 @@ div[data-gadget-scope='erp5_searchfield'] {
nav { nav {
display: flex; display: flex;
padding-top: @margin-size; padding-top: @margin-size;
border-top: 2px solid rgba(0, 0, 0, 0.14902); border-top: 2px solid @listboxbordercolor;
span { span {
opacity: .3; opacity: .3;
......
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