From e4d0af2687982008156349be3d59a6f6b8ce1205 Mon Sep 17 00:00:00 2001 From: Yury Delendik Date: Mon, 17 Mar 2014 11:25:50 -0500 Subject: [PATCH] Fixes HiDPI icons of the secondary toolbar for Chrome --- web/viewer.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/viewer.css b/web/viewer.css index a7008d84d..aca837596 100644 --- a/web/viewer.css +++ b/web/viewer.css @@ -1619,12 +1619,13 @@ html[dir='rtl'] #documentPropertiesContainer .row > * { @media screen and (min-resolution: 2dppx) { /* Rules for Retina screens */ .toolbarButton::before { - transform: scale(0.5); -webkit-transform: scale(0.5); + transform: scale(0.5); top: -5px; } .secondaryToolbarButton::before { + -webkit-transform: scale(0.5); transform: scale(0.5); top: -4px; }