@@ -13948,7 +13948,7 @@ System.register("npm:postcss@4.1.8/lib/previous-map", ["npm:js-base64@2.1.8", "n
1394813948 return module.exports;
1394913949});
1395013950
13951- System.register("npm:postcss-css-variables@0.2.2 /index", ["npm:postcss@4.1.8", "npm:extend@2.0.1", "github:jspm/nodelibs-process@0.1.1"], true, function(require, exports, module) {
13951+ System.register("npm:postcss-css-variables@0.2.3 /index", ["npm:postcss@4.1.8", "npm:extend@2.0.1", "github:jspm/nodelibs-process@0.1.1"], true, function(require, exports, module) {
1395213952 var global = System.global,
1395313953 __define = global.define;
1395413954 global.define = undefined;
@@ -13983,7 +13983,9 @@ System.register("npm:postcss-css-variables@0.2.2/index", ["npm:postcss@4.1.8", "
1398313983 }
1398413984 return false;
1398513985 }).map(function(piece) {
13986- return piece.trim();
13986+ return piece.trim().replace(/\s*?>>\s*?/, function(match) {
13987+ return '';
13988+ });
1398713989 });
1398813990 scopeStringPieces.unshift.apply(scopeStringPieces, descendantPieces);
1398913991 }
@@ -15753,11 +15755,11 @@ System.register("npm:postcss@4.1.8/lib/input", ["npm:postcss@4.1.8/lib/css-synta
1575315755 return module.exports;
1575415756});
1575515757
15756- System.register("npm:postcss-css-variables@0.2.2 ", ["npm:postcss-css-variables@0.2.2 /index"], true, function(require, exports, module) {
15758+ System.register("npm:postcss-css-variables@0.2.3 ", ["npm:postcss-css-variables@0.2.3 /index"], true, function(require, exports, module) {
1575715759 var global = System.global,
1575815760 __define = global.define;
1575915761 global.define = undefined;
15760- module.exports = require("npm:postcss-css-variables@0.2.2 /index");
15762+ module.exports = require("npm:postcss-css-variables@0.2.3 /index");
1576115763 global.define = __define;
1576215764 return module.exports;
1576315765});
@@ -18833,7 +18835,7 @@ System.register('build/js/dispatcher/AppDispatcher', ['npm:flux@2.0.3'], functio
1883318835 }
1883418836 };
1883518837});
18836- System.register('build/js/stores/PlaygroundStore', ['build/js/dispatcher/AppDispatcher', 'build/js/constants/PlaygroundConstants', 'npm:events@1.0.2', 'npm:object-assign@2.0.0', 'npm:postcss@4.1.8', 'npm:postcss-css-variables@0.2.2 '], function (_export) {
18838+ System.register('build/js/stores/PlaygroundStore', ['build/js/dispatcher/AppDispatcher', 'build/js/constants/PlaygroundConstants', 'npm:events@1.0.2', 'npm:object-assign@2.0.0', 'npm:postcss@4.1.8', 'npm:postcss-css-variables@0.2.3 '], function (_export) {
1883718839 var AppDispatcher, PlaygroundConstants, events, assign, postcss, cssvariables, EventEmitter, CHANGE_EVENT, playgroundProcessor, postcssInputText, postcssOutputResult, postcssProcessingError, PlaygroundStore;
1883818840
1883918841 function updateInput(input) {
@@ -18866,8 +18868,8 @@ System.register('build/js/stores/PlaygroundStore', ['build/js/dispatcher/AppDisp
1886618868 assign = _npmObjectAssign200['default'];
1886718869 }, function (_npmPostcss418) {
1886818870 postcss = _npmPostcss418['default'];
18869- }, function (_npmPostcssCssVariables022 ) {
18870- cssvariables = _npmPostcssCssVariables022 ['default'];
18871+ }, function (_npmPostcssCssVariables023 ) {
18872+ cssvariables = _npmPostcssCssVariables023 ['default'];
1887118873 }],
1887218874 execute: function () {
1887318875 'use strict';
@@ -18997,7 +18999,14 @@ System.register('build/js/components/PlaygroundApp', ['npm:babel-runtime@5.2.6/h
1899718999
1899819000 var parsingErrorMarkup;
1899919001 if (this.state.postcssOutputResult.error) {
19000- parsingErrorMarkup = React.createElement('div', { className: 'postcss-editor-pane-error' }, React.createElement('div', { className: 'postcss-editor-pane-error-message' }, this.state.postcssOutputResult.error.toString()));
19002+ parsingErrorMarkup = React.createElement('div', {
19003+ className: 'postcss-editor-pane-error',
19004+ // Live region attributes: http://www.smashingmagazine.com/2015/04/27/its-alive-apps-that-feed-back-accessibly/
19005+ 'aria-live': 'polite',
19006+ role: 'status'
19007+ }, React.createElement('div', {
19008+ className: 'postcss-editor-pane-error-message'
19009+ }, this.state.postcssOutputResult.error.toString()));
1900119010 }
1900219011
1900319012 return React.createElement('div', { className: 'playground-app-wrapper' }, React.createElement('header', {
0 commit comments