Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

Commit

Permalink
All: Removed non-existent "-ms-box-sizing"
Browse files Browse the repository at this point in the history
-ms-box-sizing has never been used by any version of IE.

(cherry picked from commit debea2d)

Closes gh-6738
Fixes gh-6749
  • Loading branch information
siokoshou authored and Gabriel Schulhof committed Apr 10, 2014
1 parent 11eb494 commit 2d1d09b
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion css/structure/jquery.mobile.forms.fieldcontain.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@
width: 78%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
/* ui-hide-label deprecated in 1.4. TODO: Remove in 1.5 */
Expand Down
2 changes: 0 additions & 2 deletions css/structure/jquery.mobile.forms.flipswitch.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
border-style: solid;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
border-radius: inherit;
overflow: visible;
Expand All @@ -72,7 +71,6 @@ html .ui-popup .ui-field-contain > label + .ui-flipswitch {
width: 5.875em; /* If you override the width for .ui-flipswitch you should repeat the same value here */
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
-ms-box-sizing: content-box;
box-sizing: content-box;
}
.ui-field-contain .ui-flipswitch.ui-flipswitch-active,
Expand Down
1 change: 0 additions & 1 deletion css/structure/jquery.mobile.forms.slider.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ input.ui-slider-input {
appearance: none;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
-ms-box-sizing: content-box;
box-sizing: content-box;
}
.ui-slider-input::-webkit-outer-spin-button,
Expand Down
1 change: 0 additions & 1 deletion css/structure/jquery.mobile.forms.textinput.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ textarea.ui-input-text {
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
outline: 0;
}
Expand Down
1 change: 0 additions & 1 deletion demos/listview-grid/listview-grid.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
.my-page .ui-listview li > .ui-btn {
-webkit-box-sizing: border-box; /* include padding and border in height so we can set it to 100% */
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
height: 100%;
}
Expand Down

0 comments on commit 2d1d09b

Please sign in to comment.