summaryrefslogtreecommitdiff
path: root/assets/css/app.css
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-06-15 20:30:30 -0400
committerFrederic Guillot <fred@kanboard.net>2015-06-15 20:30:30 -0400
commit57dd45839b3ed61fc38b15621b688b088f57b04f (patch)
tree17f8c2f627d4900e359817a75a14ec92de777b5c /assets/css/app.css
parent100330c989873d535785fdb1586d3602b1def202 (diff)
Use css to truncate the page title
Diffstat (limited to 'assets/css/app.css')
-rw-r--r--assets/css/app.css5
1 files changed, 4 insertions, 1 deletions
diff --git a/assets/css/app.css b/assets/css/app.css
index 73df92fc..f86f5051 100644
--- a/assets/css/app.css
+++ b/assets/css/app.css
@@ -653,13 +653,16 @@ div.ui-tooltip {
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;
}