diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2020-09-10 19:09:25 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2020-09-10 19:09:25 -0400 |
| commit | c98aafa494b4baff292b23075d90f1af9f5583d8 (patch) | |
| tree | 6c6a2ae52ba0e144130994c23f237eb53c23bb9d | |
| parent | 05b159088251c6ff0162c437bea2bbce898802cc (diff) | |
don't wrap text in events text
| -rw-r--r-- | www/css/style.css | 6 | ||||
| -rw-r--r-- | www/templates/events.html | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/www/css/style.css b/www/css/style.css index c7670e58..20668e7f 100644 --- a/www/css/style.css +++ b/www/css/style.css @@ -564,6 +564,12 @@ http://www.cssportal.com/tryit/index.php?file=blog/css-notification-badge */ opacity: 0.5; } +.events-list-text { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + .popup80 .popup { width: 80% !important; } diff --git a/www/templates/events.html b/www/templates/events.html index 77605e8d..75a71c26 100644 --- a/www/templates/events.html +++ b/www/templates/events.html @@ -51,7 +51,7 @@ </span> <div class="row" style="font-size:80%; color:rgb(110,110,110)"> - <div class="col item-text-wrap"> <!-- data --> + <div class="col events-list-text"> <!-- data --> <!-- this ngswitch displays different icons depending on the cause of the event --> <span ng-switch on="event.Event.Cause" ng-class="::{'largeThumbsSpan': thumbClass=='large', 'smallThumbsSpan': thumbClass=='small'}"> |
