From 761daab891f366cbd1ca18c416f5af69689644d7 Mon Sep 17 00:00:00 2001 From: jlukic Date: Wed, 18 Feb 2015 19:26:32 -0500 Subject: [PATCH] Rlsnotes --- RELEASE-NOTES.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index 54e487080..13bf0a5f2 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -2,18 +2,18 @@ ### Version 1.9.1 - February 18, 2015 -**Changes** +**LESS Changes** + +Importing individual components into other less files now requires scoping. This is to prevent issues with variable scope that cannot be resolved inside definitions. -Importing individual components into other less requires namespacing: ```less /* Import a specific component */ & { @import 'src/definitions/elements/button'; } ``` -Importing `semantic.less` still does not require this +Importing `semantic.less` still does not require any special syntax @import 'src/semantic'; -This is to prevent issues with variable scope that cannot be resolved inside definitions. **Bugs** - Fixed issue directly importing `semantic.less` caused by variable scoping in `.loadOverrides()`.