diff options
| author | kaeff <hi@kaeff.net> | 2015-10-21 10:35:52 +0200 | 
|---|---|---|
| committer | kaeff <hi@kaeff.net> | 2015-10-21 10:36:26 +0200 | 
| commit | 4d5f54625b13542237bd5a157fc3238828dd1e26 (patch) | |
| tree | 7cdf53e98ecf56771c81a971fe0d975c827a49b5 | |
| parent | 33ac29beffa23c844900ae0b8f189e955bbde9d2 (diff) | |
Fix horizontal line in mail view when opening mail with many recipients
- Issue: #496
| -rw-r--r-- | web-ui/app/scss/_read.scss | 5 | ||||
| -rw-r--r-- | web-ui/app/templates/mails/full_view.hbs | 2 | 
2 files changed, 5 insertions, 2 deletions
| diff --git a/web-ui/app/scss/_read.scss b/web-ui/app/scss/_read.scss index d621f672..24de425a 100644 --- a/web-ui/app/scss/_read.scss +++ b/web-ui/app/scss/_read.scss @@ -13,7 +13,6 @@        padding: 0px 0;        margin: 1px 0 0 0;        .recipients { -        border-bottom: 1px solid #DDD;          padding-bottom: 5px;          line-height: 1.5em;          i { @@ -39,6 +38,10 @@          width:95%;          flex-shrink:1;        } +      .headline-area { +        clear: both; +        border-top: 1px solid #DDD; +      }      }      h3 {        margin-bottom: 0; diff --git a/web-ui/app/templates/mails/full_view.hbs b/web-ui/app/templates/mails/full_view.hbs index 77994860..0383b821 100644 --- a/web-ui/app/templates/mails/full_view.hbs +++ b/web-ui/app/templates/mails/full_view.hbs @@ -36,7 +36,7 @@          <div class="recipients column large-2 text-right">              <span class="received-date">{{ formatDate header.date }}</span>          </div> -        <div> +        <div class="headline-area">              <h3 class="subjectArea column large-10 no-padding">                  <span class="subject">{{ header.subject }}</span> | 
