Commit d75e0953 authored by Romain Courteaud's avatar Romain Courteaud

[erp5_web_renderjs_ui] Only display access key on desktop mode

parent 8693f426
...@@ -242,8 +242,10 @@ a:focus { ...@@ -242,8 +242,10 @@ a:focus {
outline-offset: -2px; outline-offset: -2px;
outline: 2px solid #3388cc; outline: 2px solid #3388cc;
} }
a[accesskey]:after { @media only screen and (min-width: 62em) {
content: " [" attr(accesskey) "] "; a[accesskey]:after {
content: " [" attr(accesskey) "] ";
}
} }
/********************************************** /**********************************************
* Preformatted * Preformatted
......
...@@ -236,7 +236,7 @@ ...@@ -236,7 +236,7 @@
</item> </item>
<item> <item>
<key> <string>serial</string> </key> <key> <string>serial</string> </key>
<value> <string>952.34328.50500.53981</string> </value> <value> <string>952.34617.43772.45602</string> </value>
</item> </item>
<item> <item>
<key> <string>state</string> </key> <key> <string>state</string> </key>
...@@ -254,7 +254,7 @@ ...@@ -254,7 +254,7 @@
</tuple> </tuple>
<state> <state>
<tuple> <tuple>
<float>1468416052.89</float> <float>1468421631.31</float>
<string>UTC</string> <string>UTC</string>
</tuple> </tuple>
</state> </state>
......
...@@ -278,8 +278,10 @@ mark { ...@@ -278,8 +278,10 @@ mark {
a { a {
.link(@colorlink); .link(@colorlink);
&[accesskey]:after { @media @desktop {
content: " [" attr(accesskey) "] "; &[accesskey]:after {
content: " [" attr(accesskey) "] ";
}
} }
} }
......
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