diff options
author | Gary Kim <gary@garykim.dev> | 2019-09-24 01:54:42 +0800 |
---|---|---|
committer | Gary Kim <gary@garykim.dev> | 2019-09-24 01:54:42 +0800 |
commit | 4211c50dba820dbacedfa56b312b7267456f6e07 (patch) | |
tree | b02c452c852eaf6cc6eb60f96e8135960e2da3dd /core | |
parent | 48a00b88e18919232430a7f44881594da6d971da (diff) | |
download | nextcloud-server-4211c50dba820dbacedfa56b312b7267456f6e07.tar.gz nextcloud-server-4211c50dba820dbacedfa56b312b7267456f6e07.zip |
Fix spaces being collapsed in move dialog
Signed-off-by: Gary Kim <gary@garykim.dev>
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/css/styles.scss b/core/css/styles.scss index 9d008632d70..30baa4b73ac 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -8,6 +8,7 @@ * @copyright Copyright (c) 2016, Christoph Wurst <christoph@winzerhof-wurst.at> * @copyright Copyright (c) 2016, Raghu Nayyar <hey@raghunayyar.com> * @copyright Copyright (c) 2011-2017, Jan-Christoph Borchardt <hey@jancborchardt.net> + * @copyright Copyright (c) 2019, Gary Kim <gary@garykim.dev> * * @license GNU AGPL version 3 or any later version * @@ -891,7 +892,7 @@ code { display: flex; &__first { overflow: hidden; - white-space: nowrap; + white-space: pre; text-overflow: ellipsis; } } |