Add autoprefixer

Mostly for flexbox, including leaflet-sidebar-v2 custom fork.

Unsure about Browsers to support, browserslist is a combination of:
- 'defaults', see https://github.com/ai/browserslist#queries
- "support all of the browsers that can display flexbox"
  https://davidwalsh.name/goodbye-vendor-prefixes
This commit is contained in:
Norbert Renner 2018-03-20 19:29:29 +01:00
parent 093db8bfe2
commit ed07a6c3c3
3 changed files with 6 additions and 21 deletions

View file

@ -15,30 +15,18 @@ body, #content {
.dataTables_wrapper,
.dataTables_scroll,
.dataTables_scrollBody {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-flow: column;
}
.flexrow {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
flex-direction: row;
}
.flexgrow {
-webkit-box-flex: 1;
-moz-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
}
@ -47,18 +35,10 @@ body, #content {
.dataTables_scroll,
.dataTables_scrollBody,
table.dataTable {
-webkit-box-flex: auto;
-moz-box-flex: auto;
-webkit-flex: auto;
-ms-flex: auto;
flex: auto;
}
footer {
-webkit-box-flex: none;
-moz-box-flex: none;
-webkit-flex: none;
-ms-flex: none;
flex: none;
background-color: #f7f7f9;
@ -153,7 +133,6 @@ footer {
https://css-tricks.com/svg-line-animation-works/
*/
.loading-trailer {
-webkit-animation: dash 0.4s linear infinite;
animation: dash 0.4s linear infinite;
}
@-webkit-keyframes dash {