From d549fb8f0b23b88e305d0aabf99e02ceca2230fe Mon Sep 17 00:00:00 2001 From: Sebastian Krzyszkowiak Date: Fri, 17 Jan 2014 02:34:47 +0100 Subject: [PATCH 1/2] Fix W3C CSS gradients syntax. The official, unprefixed syntax needs "linear-gradient(to [direction], ...)" notation instead of "linear-gradient([direction-from], ...)" from earlier ones. https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient --- src/collections/menu.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/collections/menu.less b/src/collections/menu.less index 11fdc3028..3caef4000 100755 --- a/src/collections/menu.less +++ b/src/collections/menu.less @@ -549,7 +549,7 @@ rgba(0, 0, 0, 0.1) 1.5em, rgba(0, 0, 0, 0.03) 100%) ; - background-image: linear-gradient(left, + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.1) 1.5em, rgba(0, 0, 0, 0.03) 100%) @@ -1384,7 +1384,7 @@ rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.03) 100%) ; - background-image: linear-gradient(left, + background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.03) 100%) From 9255ab8d7dee6e5ce6ddb109cf365df0f8fd5e57 Mon Sep 17 00:00:00 2001 From: bidtiz Date: Fri, 17 Jan 2014 15:41:56 +0300 Subject: [PATCH 2/2] Forgot to change the year --- RELEASE NOTES.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RELEASE NOTES.md b/RELEASE NOTES.md index cd6aebe85..b55971fe6 100755 --- a/RELEASE NOTES.md +++ b/RELEASE NOTES.md @@ -1,6 +1,6 @@ ## RELEASE NOTES -### Version 0.12.1 - Jan 15, 2013 +### Version 0.12.1 - Jan 15, 2014 **Fixes** - **LESS** - Fixes typo breaking less parsing **thanks DVSoftware** @@ -13,7 +13,7 @@ - **Icons** - Fixes some icon code samples in docs **thanks mishak87** Some updates to docs formatting -### Version 0.12.0 - Jan 06, 2013 +### Version 0.12.0 - Jan 06, 2014 **Major Fixes** - **Dropdown** - Fixes dropdowns links not working on touch devices