diff options
author | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-04-27 09:47:36 +0200 |
---|---|---|
committer | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-04-27 09:47:36 +0200 |
commit | 20602ff36a091b928cd525eb131756e005836c22 (patch) | |
tree | cfdbdc90c29d3677d3a0bd168bef9ccc88f2842a /core/css/mobile.css | |
parent | 977ad50640dc46da1b4a3115041fc9e6b9f1c625 (diff) | |
parent | 05e6dd9c1ae36d8816ef379cf7831e7296339703 (diff) | |
download | nextcloud-server-20602ff36a091b928cd525eb131756e005836c22.tar.gz nextcloud-server-20602ff36a091b928cd525eb131756e005836c22.zip |
Merge pull request #21417 from J0WI/css-fixes
css fallbacks and code style fixes
Diffstat (limited to 'core/css/mobile.css')
-rw-r--r-- | core/css/mobile.css | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/core/css/mobile.css b/core/css/mobile.css index 5bf0b1e58a7..0ef6a08c24f 100644 --- a/core/css/mobile.css +++ b/core/css/mobile.css @@ -10,15 +10,25 @@ -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: box; - box-orient: horizontal; - box-pack: center; - 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; + align-items: center; } /* on mobile public share, show only the icon of the logo, hide the text */ |