diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-03-26 00:04:11 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-03-26 00:04:11 +0100 |
commit | d0f84e936f3be2a4622b0b1b8be8d070c970b1cd (patch) | |
tree | 84bae3c6d2cc50e0a337e3d70659c7930fbefcb1 /apps/files/css | |
parent | e6392163a437ad5d44cba452edeaba35aeff250b (diff) | |
download | nextcloud-server-d0f84e936f3be2a4622b0b1b8be8d070c970b1cd.tar.gz nextcloud-server-d0f84e936f3be2a4622b0b1b8be8d070c970b1cd.zip |
adding proper notification area for multi line messages
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/mobile.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/files/css/mobile.css b/apps/files/css/mobile.css index bb71d67c761..3ad7d634838 100644 --- a/apps/files/css/mobile.css +++ b/apps/files/css/mobile.css @@ -57,4 +57,12 @@ table td.filename .nametext { text-overflow: ellipsis; } +/* proper notification area for multi line messages */ +#notification-container { + display: -webkit-box; + display: -moz-box; + display: -ms-flexbox; + display: -webkit-flex; + display: flex; +} } |