From 459d09ec97de255e322c373b0ac776a992cccf64 Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Fri, 17 Jan 2014 10:37:56 +0100 Subject: [PATCH] =?utf8?q?Media-Queries=20f=C3=BCr=20die=20spezialisierten?= =?utf8?q?=20Layouts=20vereinfacht?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/main/webapp/less/phone.less | 2 +- src/main/webapp/less/screen.less | 2 +- src/main/webapp/less/tiny.less | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/webapp/less/phone.less b/src/main/webapp/less/phone.less index f14a170c..7d4aed38 100644 --- a/src/main/webapp/less/phone.less +++ b/src/main/webapp/less/phone.less @@ -1,4 +1,4 @@ -@media screen and (max-width: @maxphone) +@media (max-width: @maxphone) { @import 'phone/typo.less'; @import 'phone/navigation.less'; diff --git a/src/main/webapp/less/screen.less b/src/main/webapp/less/screen.less index eae175a4..da8a458f 100644 --- a/src/main/webapp/less/screen.less +++ b/src/main/webapp/less/screen.less @@ -1,4 +1,4 @@ -@media screen and (min-width: @minscreen) +@media (min-width: @minscreen) { @import 'screen/typo.less'; @import 'screen/layout.less'; diff --git a/src/main/webapp/less/tiny.less b/src/main/webapp/less/tiny.less index 3d339444..c5d3ecf2 100644 --- a/src/main/webapp/less/tiny.less +++ b/src/main/webapp/less/tiny.less @@ -1,4 +1,4 @@ -@media screen and (max-width: @maxtiny) +@media (max-width: @maxtiny) { @import 'tiny/typo.less'; @import 'tiny/navigation.less'; -- 2.20.1