File tree Expand file tree Collapse file tree 3 files changed +12
-6
lines changed
Expand file tree Collapse file tree 3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,10 @@ module.exports = function (grunt)
105105 options : {
106106 processors : [
107107 require ( 'autoprefixer' ) ( {
108- browsers : [ 'last 2 versions' ]
108+ browsers : [
109+ 'last 3 versions' ,
110+ 'not ie <= 11'
111+ ]
109112 } )
110113 ]
111114 } ,
Original file line number Diff line number Diff line change @@ -802,10 +802,12 @@ label.ui-state-active.ui-button:active {
802802 * </fieldset>
803803 */
804804.ui-controlgroup {
805+ display : -webkit-inline-flex;
805806 display : -ms-inline-flexbox;
806807 display : inline-flex;
807- -ms-flex-flow : row wrap;
808- flex-flow : row wrap;
808+ -webkit-flex-flow : row wrap;
809+ -ms-flex-flow : row wrap;
810+ flex-flow : row wrap;
809811}
810812
811813.ui-controlgroup .ui-controlgroup-item {
@@ -839,8 +841,9 @@ label.ui-state-active.ui-button:active {
839841}
840842
841843.ui-controlgroup-vertical {
842- -ms-flex-flow : column;
843- flex-flow : column;
844+ -webkit-flex-flow : column;
845+ -ms-flex-flow : column;
846+ flex-flow : column;
844847}
845848
846849.ui-controlgroup-vertical .ui-controlgroup-item {
You can’t perform that action at this time.
0 commit comments