Commit d69602da authored by Romain Courteaud's avatar Romain Courteaud

[erp5_web_renderjs_ui] Use left/right layout in the tablet rendering

Only display desktop mode on big screens.
parent 0551b4ce
...@@ -242,7 +242,7 @@ ...@@ -242,7 +242,7 @@
</item> </item>
<item> <item>
<key> <string>serial</string> </key> <key> <string>serial</string> </key>
<value> <string>955.18008.27011.15018</string> </value> <value> <string>955.19399.9037.3396</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>1479216615.32</float> <float>1479218471.04</float>
<string>UTC</string> <string>UTC</string>
</tuple> </tuple>
</state> </state>
......
...@@ -47,9 +47,9 @@ ...@@ -47,9 +47,9 @@
@panelwidth: @margin-size * 30; @panelwidth: @margin-size * 30;
// @panelwidth: 15em; // @panelwidth: 15em;
@smartphone: ~"only screen and (max-width: 28em)"; @smartphone: ~"only screen and (max-width: 45em)";
@tablet: ~"only screen and (min-width: 28em) and (max-width: 70em)"; @tablet: ~"only screen and (min-width: 45em) and (max-width: 90em)";
@desktop: ~"only screen and (min-width: 70em)"; @desktop: ~"only screen and (min-width: 90em)";
/********************************************** /**********************************************
...@@ -1075,7 +1075,7 @@ div[data-gadget-scope='header'] .ui-header { ...@@ -1075,7 +1075,7 @@ div[data-gadget-scope='header'] .ui-header {
} }
} }
@media @desktop { @media @tablet, @desktop {
.left, .right { .left, .right {
vertical-align: top; vertical-align: top;
display: inline-block; display: inline-block;
...@@ -1099,7 +1099,7 @@ div[data-gadget-scope='header'] .ui-header { ...@@ -1099,7 +1099,7 @@ div[data-gadget-scope='header'] .ui-header {
} }
} }
} }
@media @desktop { @media @tablet, @desktop {
// Align field on the left group's field // Align field on the left group's field
.center { .center {
.ui-field-contain { .ui-field-contain {
......
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