From ee8344870e87e0532fa3a02ecc280c7c2ed94f43 Mon Sep 17 00:00:00 2001 From: Mark Samman Date: Mon, 1 Feb 2016 21:17:09 +0100 Subject: [PATCH] Add ms prefix to user-select for IE11 Closes #70 --- lib/compass/css3/_user-interface.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compass/css3/_user-interface.scss b/lib/compass/css3/_user-interface.scss index e630340..bbb270f 100644 --- a/lib/compass/css3/_user-interface.scss +++ b/lib/compass/css3/_user-interface.scss @@ -12,7 +12,7 @@ @mixin user-select($select) { $select: unquote($select); @include experimental(user-select, $select, - -moz, -webkit, not(-o), not(-ms), -khtml, official + -moz, -webkit, not(-o), -ms, -khtml, official ); }