From df7ab415d0a4c213a4b3a9b5e9cd81438d491676 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Lemoine?= Date: Sat, 31 Dec 2011 00:20:06 +0100 Subject: [PATCH] add css rule for tile animation --- theme/default/style.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/theme/default/style.css b/theme/default/style.css index ea8e520890..64bec7d29c 100644 --- a/theme/default/style.css +++ b/theme/default/style.css @@ -428,3 +428,14 @@ span.olGoogleAttribution.hybrid a, span.olGoogleAttribution.satellite a { .olControlEditingToolbar .olControlDrawFeaturePolygonItemActive { background-position: -26px -24px; } + +/** + * Animations + */ + +.olMapTileAnim .olTileImage { + -webkit-transition: opacity 0.2s linear; + -moz-transition: opacity 0.2s linear; + -o-transition: opacity 0.2s linear; + transition: opacity 0.2s linear; +}