diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2019-09-25 11:23:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-25 11:23:34 +0200 |
commit | 7351889ef6de17989d570af2d7dcb1583aa7e85c (patch) | |
tree | 3d735fe16ddd813170048063bcae24166786e6a9 /core | |
parent | e26284df9b2b1e039e933ca3026f3e9a971d0e0d (diff) | |
parent | 4211c50dba820dbacedfa56b312b7267456f6e07 (diff) | |
download | nextcloud-server-7351889ef6de17989d570af2d7dcb1583aa7e85c.tar.gz nextcloud-server-7351889ef6de17989d570af2d7dcb1583aa7e85c.zip |
Fix spaces being collapsed in move dialog (#17240)
Fix spaces being collapsed in move dialog
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; } } |