diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-10-21 07:10:02 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-10-21 09:10:45 +0200 |
commit | dcdd97a98530b702a957f830e6991c006ae362a6 (patch) | |
tree | a779cdaf0752ba972708a72543c453f5e1706799 | |
parent | 1326c4e71e62f4762b1f2e3c2b0ba87c450dea2e (diff) | |
download | volse-hubzilla-dcdd97a98530b702a957f830e6991c006ae362a6.tar.gz volse-hubzilla-dcdd97a98530b702a957f830e6991c006ae362a6.tar.bz2 volse-hubzilla-dcdd97a98530b702a957f830e6991c006ae362a6.zip |
fix ellipsis for too long nav banner
(cherry picked from commit a61ce45a32fa07249ee46160fd56ec08e67df601)
-rw-r--r-- | view/css/bootstrap-red.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/view/css/bootstrap-red.css b/view/css/bootstrap-red.css index a0b7c5bba..3ae1d152c 100644 --- a/view/css/bootstrap-red.css +++ b/view/css/bootstrap-red.css @@ -43,6 +43,11 @@ nav .dropdown-menu { white-space: nowrap; } +/* this fixes ellipsis for too long nav banner */ +#navbar-collapse-1 { + min-width: 0; +} + #navbar-collapse-1 i { font-size: 1.0rem; } |