CSS: remove vendor prefixed flexbox properties (#42543)

This commit is contained in:
Thomas Jund 2020-05-06 12:07:23 +02:00
parent 24473356b0
commit 8a62dbc477
3 changed files with 8 additions and 9 deletions

View File

@ -119,15 +119,15 @@ div#nav li {
}
div#footer > div > div > div {
@include flexbox();
@include vendor-prefix(flex-wrap, wrap);
display: flex;
flex-wrap: wrap;
@media screen and (max-width: $custom-very-small-screen) {
@include vendor-prefix(flex-direction, column);
flex-direction: column;
}
}
div#footer div#footer-logos {
@include flex(1);
flex: 1;
@media screen and (max-width: $custom-very-small-screen) {
flex-basis: auto;
}
@ -193,7 +193,7 @@ div#footer div#footer-logos {
}
div#footer div#footer-content {
@include flex(3);
flex: 3;
@media screen and (max-width: $custom-very-small-screen) {
flex-basis: auto;
}
@ -322,7 +322,7 @@ div.a2-block form button, div.a2-block form input[type="submit"] {
}
div#content div.buttons.submit {
@include flexbox();
display: flex;
& div.submit-button { order: 1; }
@media screen and ($max-mobile-viewport) {

View File

@ -214,8 +214,8 @@ div#toplinks {
text-align: right;
a.login, a.logout {
@include flexbox();
@include vendor-prefix(justify-content, flex-end);
display: flex;
justify-content: flex-end;
border: none;

View File

@ -2,7 +2,6 @@
@import 'vars';
@import '../../publik-base-theme/static/includes/publik';
@import '../../publik-base-theme/static/includes/flexbox_mixins';
@import 'custom';
@import 'links';