From 162fd1877bad56e3f5775ca063a3e5bc2fa5eba0 Mon Sep 17 00:00:00 2001 From: jkw Date: Thu, 18 Jan 2018 08:12:26 +0000 Subject: [PATCH 1/3] HiDPI fix --- themes/default/css/style.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/themes/default/css/style.css b/themes/default/css/style.css index 31f397b..8a25698 100644 --- a/themes/default/css/style.css +++ b/themes/default/css/style.css @@ -26,6 +26,12 @@ * along with this program. If not, see . */ +/* HiDPI */ +@media screen and (min-width: 3000px) +{ + html { zoom: 2.0; } +} + /* Global Styles */ @font-face { From 41c45e041fd2ab56d88a7e220bcc825e084a2e99 Mon Sep 17 00:00:00 2001 From: jkw Date: Thu, 18 Jan 2018 08:31:44 +0000 Subject: [PATCH 2/3] forgot min-height --- themes/default/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/default/css/style.css b/themes/default/css/style.css index 8a25698..0dd12db 100644 --- a/themes/default/css/style.css +++ b/themes/default/css/style.css @@ -27,7 +27,7 @@ */ /* HiDPI */ -@media screen and (min-width: 3000px) +@media screen and (min-width: 3000px) and (min-height: 1200px) { html { zoom: 2.0; } } From 648c4c191e3e194d01e01061b83200caf434465e Mon Sep 17 00:00:00 2001 From: jkw Date: Thu, 18 Jan 2018 08:33:47 +0000 Subject: [PATCH 3/3] fixed formatting --- themes/default/css/style.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/themes/default/css/style.css b/themes/default/css/style.css index 0dd12db..4555ade 100644 --- a/themes/default/css/style.css +++ b/themes/default/css/style.css @@ -27,9 +27,10 @@ */ /* HiDPI */ -@media screen and (min-width: 3000px) and (min-height: 1200px) -{ - html { zoom: 2.0; } +@media screen and (min-width: 3000px) and (min-height: 1200px) { + html { + zoom: 2.0; + } } /* Global Styles */