From a92c94df32eaf9d0693eb799bfcf5bd7e92151b8 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sun, 2 Dec 2018 17:10:39 +0100 Subject: [PATCH] luci-mod-system: fix IE10/Edge rendering quirk on SSH keys page Signed-off-by: Jo-Philipp Wich --- modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm b/modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm index e0917995e..ac453f3f6 100644 --- a/modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm +++ b/modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm @@ -17,6 +17,10 @@ white-space: nowrap; unicode-bidi: bidi-override; } + + @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + .cbi-dynlist .item > small { direction: ltr } + }
-- 2.25.1