diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-06-15 20:30:30 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-06-15 20:30:30 -0400 |
commit | 57dd45839b3ed61fc38b15621b688b088f57b04f (patch) | |
tree | 17f8c2f627d4900e359817a75a14ec92de777b5c /assets/css/src | |
parent | 100330c989873d535785fdb1586d3602b1def202 (diff) |
Use css to truncate the page title
Diffstat (limited to 'assets/css/src')
-rw-r--r-- | assets/css/src/header.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/assets/css/src/header.css b/assets/css/src/header.css index 2490b125..bcb9dcd7 100644 --- a/assets/css/src/header.css +++ b/assets/css/src/header.css @@ -2,13 +2,16 @@ header { margin-top: 10px; padding-bottom: 15px; - clear: both; border-bottom: 1px solid #dedede; } header h1 { margin: 0; padding: 0; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + width: 75%; float: left; } |