diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-11-03 11:10:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-03 11:10:25 +0100 |
commit | 4ee2d2a1c2907298f51e8ebca08468c54701fef0 (patch) | |
tree | f0d12fe5946275f66bcad2785790a37a95ddb09c | |
parent | 7e1e9430b676b719747c98d6c0654981bb276374 (diff) | |
parent | 9e9e5c2d16f2655da00696b632e00057d1717d59 (diff) | |
download | nextcloud-server-4ee2d2a1c2907298f51e8ebca08468c54701fef0.tar.gz nextcloud-server-4ee2d2a1c2907298f51e8ebca08468c54701fef0.zip |
Merge pull request #7048 from nextcloud/flexbox-css
Vendor prefix for flexbox not needed anymore
-rw-r--r-- | apps/files/css/mobile.scss | 4 | ||||
-rw-r--r-- | core/css/mobile.scss | 20 | ||||
-rw-r--r-- | core/css/systemtags.scss | 1 |
3 files changed, 0 insertions, 25 deletions
diff --git a/apps/files/css/mobile.scss b/apps/files/css/mobile.scss index e7b75910fa9..99fa27e8dd9 100644 --- a/apps/files/css/mobile.scss +++ b/apps/files/css/mobile.scss @@ -60,10 +60,6 @@ table td.filename .nametext .innernametext { /* proper notification area for multi line messages */ #notification-container { - display: -webkit-box; - display: -moz-box; - display: -ms-flexbox; - display: -webkit-flex; display: flex; } diff --git a/core/css/mobile.scss b/core/css/mobile.scss index 58bb076d819..aad3070e79a 100644 --- a/core/css/mobile.scss +++ b/core/css/mobile.scss @@ -5,26 +5,6 @@ } #body-login .wrapper { - display: -webkit-box; - -webkit-box-orient: horizontal; - -webkit-box-pack: center; - -webkit-box-align: center; - - display: -webkit-flex; - -webkit-flex-direction: row; - -webkit-align-self: center; - -webkit-align-items: center; - - display: -moz-box; - -moz-box-orient: horizontal; - -moz-box-pack: center; - -moz-box-align: center; - - display: -ms-flexbox; - -ms-flex-direction: row; - -ms-flex-pack: center; - -ms-flex-align: center; - display: flex; flex-direction: row; align-self: center; diff --git a/core/css/systemtags.scss b/core/css/systemtags.scss index b32f33f36e5..76db389a6dc 100644 --- a/core/css/systemtags.scss +++ b/core/css/systemtags.scss @@ -48,7 +48,6 @@ } .label { width: 85%; - display: -moz-inline-box; display: inline-block; overflow: hidden; text-overflow: ellipsis; |