Skip to content

Commit 53cd661

Browse files
committed
Support Safari 8
1 parent e65fcef commit 53cd661

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

Gruntfile.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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
},

dist/textpattern/jquery-ui.css

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)