forked from mirror/Mainroad
Drop IE10 support
This commit is contained in:
parent
238da29808
commit
239548150c
3 changed files with 3 additions and 16 deletions
|
@ -1,4 +1,4 @@
|
||||||
> 0.25%
|
> 0.25%
|
||||||
not dead
|
not dead
|
||||||
IE >= 10
|
IE >= 11
|
||||||
iOS >= 7
|
iOS >= 7
|
||||||
|
|
|
@ -18,10 +18,10 @@
|
||||||
|
|
||||||
**Browser support:**
|
**Browser support:**
|
||||||
|
|
||||||
+ **Desktop:** IE10+, Chrome, Firefox, Safari
|
+ **Desktop:** IE11+, Chrome, Firefox, Safari
|
||||||
+ **Mobile:** Android browser (on Android 4.4+), Safari (on iOS 7+), Google Chrome, Opera mini
|
+ **Mobile:** Android browser (on Android 4.4+), Safari (on iOS 7+), Google Chrome, Opera mini
|
||||||
|
|
||||||
Other browsers (like Opera on Blink engine) are also supported, but not tested. Support for older versions of Internet Explorer (IE9 and below) ended.
|
Other browsers (like Opera on Blink engine) are also supported, but not tested.
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
|
|
@ -71,15 +71,12 @@ body {
|
||||||
|
|
||||||
.flex {
|
.flex {
|
||||||
display: -webkit-flex;
|
display: -webkit-flex;
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
.primary {
|
.primary {
|
||||||
-webkit-flex: 1 0 65.83%;
|
-webkit-flex: 1 0 65.83%;
|
||||||
-ms-flex: 1 0 65.83%;
|
|
||||||
flex: 1 0 65.83%;
|
flex: 1 0 65.83%;
|
||||||
-ms-flex-order: 1;
|
|
||||||
-webkit-order: 1;
|
-webkit-order: 1;
|
||||||
order: 1;
|
order: 1;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
|
@ -87,9 +84,7 @@ body {
|
||||||
|
|
||||||
.sidebar {
|
.sidebar {
|
||||||
-webkit-flex: 1 0 31.66%;
|
-webkit-flex: 1 0 31.66%;
|
||||||
-ms-flex: 1 0 31.66%;
|
|
||||||
flex: 1 0 31.66%;
|
flex: 1 0 31.66%;
|
||||||
-ms-flex-order: 2;
|
|
||||||
-webkit-order: 2;
|
-webkit-order: 2;
|
||||||
order: 2;
|
order: 2;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
|
@ -98,7 +93,6 @@ body {
|
||||||
|
|
||||||
.sidebar--left {
|
.sidebar--left {
|
||||||
-webkit-order: 0;
|
-webkit-order: 0;
|
||||||
-ms-flex-order: 0;
|
|
||||||
order: 0;
|
order: 0;
|
||||||
margin: 0 2.5% 0 0;
|
margin: 0 2.5% 0 0;
|
||||||
}
|
}
|
||||||
|
@ -537,10 +531,8 @@ button:not(:-moz-focusring):focus > .menu__btn-title {
|
||||||
.js .menu__list {
|
.js .menu__list {
|
||||||
position: relative;
|
position: relative;
|
||||||
display: -webkit-flex;
|
display: -webkit-flex;
|
||||||
display: -ms-flexbox;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
-webkit-flex-wrap: wrap;
|
-webkit-flex-wrap: wrap;
|
||||||
-ms-flex-wrap: wrap;
|
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
visibility: visible;
|
visibility: visible;
|
||||||
border: 0;
|
border: 0;
|
||||||
|
@ -878,7 +870,6 @@ button:not(:-moz-focusring):focus > .menu__btn-title {
|
||||||
|
|
||||||
/* Post Navigation */
|
/* Post Navigation */
|
||||||
.post-nav {
|
.post-nav {
|
||||||
-ms-flex-pack: justify;
|
|
||||||
-webkit-justify-content: space-between;
|
-webkit-justify-content: space-between;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
padding-top: 25px;
|
padding-top: 25px;
|
||||||
|
@ -904,7 +895,6 @@ button:not(:-moz-focusring):focus > .menu__btn-title {
|
||||||
|
|
||||||
.post-nav__item {
|
.post-nav__item {
|
||||||
-webkit-flex: 1 1 50%;
|
-webkit-flex: 1 1 50%;
|
||||||
-ms-flex: 1 1 50%;
|
|
||||||
flex: 1 1 50%;
|
flex: 1 1 50%;
|
||||||
max-width: 48%;
|
max-width: 48%;
|
||||||
}
|
}
|
||||||
|
@ -1123,15 +1113,12 @@ textarea {
|
||||||
|
|
||||||
.footer__container {
|
.footer__container {
|
||||||
-webkit-flex-flow: row wrap;
|
-webkit-flex-flow: row wrap;
|
||||||
-ms-flex-flow: row wrap;
|
|
||||||
flex-flow: row wrap;
|
flex-flow: row wrap;
|
||||||
-ms-flex-pack: justify;
|
|
||||||
-webkit-justify-content: space-between;
|
-webkit-justify-content: space-between;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer__links {
|
.footer__links {
|
||||||
-ms-flex-order: 1;
|
|
||||||
-webkit-order: 1;
|
-webkit-order: 1;
|
||||||
order: 1;
|
order: 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue