Commit a620ef82 authored by Romain Courteaud's avatar Romain Courteaud

[erp5_web_renderjs_ui] Make media queries exclusive

min-width and max-width overlap if the same value is used:
https://www.w3.org/TR/css3-mediaqueries/#media1
parent 5db0d4ff
...@@ -242,7 +242,7 @@ ...@@ -242,7 +242,7 @@
</item> </item>
<item> <item>
<key> <string>serial</string> </key> <key> <string>serial</string> </key>
<value> <string>957.46743.737.30583</string> </value> <value> <string>958.18776.46267.41045</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>1488377833.8</float> <float>1490632830.94</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: 45em)"; @smartphone: ~"not screen and (min-width: 45em)";
@tablet: ~"only screen and (min-width: 45em) and (max-width: 90em)"; @tablet: ~"only screen and (min-width: 45em) and (max-width: 90em)";
@desktop: ~"only screen and (min-width: 90em)"; @desktop: ~"not screen and (max-width: 90em)";
/********************************************** /**********************************************
......
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