Add vendor prefixes

This commit is contained in:
Nathan Yam 2017-05-16 21:20:12 +10:00
parent 0f9336cac5
commit 2faeb51550
1 changed files with 15 additions and 1 deletions

View File

@ -100,18 +100,28 @@ table.torrent-list thead th.sorting_desc:after {
}
.search-container {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.form-control.search-bar {
-webkit-box-ordinal-group: 2;
-ms-flex-order: 1;
order: 1;
width: 99%;
padding-right: 4em; // Ensure text can not flow under button
padding-right: 4em;
}
.search-btn {
-webkit-box-ordinal-group: 3;
-ms-flex-order: 2;
order: 2;
-ms-flex-item-align: end;
align-self: flex-end;
top: -34px;
height: 0;
@ -120,10 +130,14 @@ table.torrent-list thead th.sorting_desc:after {
}
#navFilter-criteria {
-webkit-box-ordinal-group: 4;
-ms-flex-order: 3;
order: 3;
}
#navFilter-category {
-webkit-box-ordinal-group: 5;
-ms-flex-order: 4;
order: 4;
}