diff options
author | Máirín Duffy <duffy@fedoraproject.org> | 2013-11-14 12:33:27 -0500 |
---|---|---|
committer | Máirín Duffy <duffy@fedoraproject.org> | 2013-11-20 08:54:24 -0500 |
commit | 3dcf11b9747baedded096ec2f7d7cf070f2acd95 (patch) | |
tree | 243ce6eac57d016569bd2dc014f4da40ab724a36 /hyperkitty | |
parent | 56f32c035c45a7f7e0199eeaf53af61e8d0acf4e (diff) | |
download | hyperkitty-3dcf11b9747baedded096ec2f7d7cf070f2acd95.tar.gz hyperkitty-3dcf11b9747baedded096ec2f7d7cf070f2acd95.tar.xz hyperkitty-3dcf11b9747baedded096ec2f7d7cf070f2acd95.zip |
modified the left pane in the list overview page to provide more space and line wrapping for long user names
Diffstat (limited to 'hyperkitty')
-rw-r--r-- | hyperkitty/static/hyperkitty/css/hyperkitty-overview.css | 13 | ||||
-rw-r--r-- | hyperkitty/templates/overview.html | 1 |
2 files changed, 12 insertions, 2 deletions
diff --git a/hyperkitty/static/hyperkitty/css/hyperkitty-overview.css b/hyperkitty/static/hyperkitty/css/hyperkitty-overview.css index 45181f1..c91ea36 100644 --- a/hyperkitty/static/hyperkitty/css/hyperkitty-overview.css +++ b/hyperkitty/static/hyperkitty/css/hyperkitty-overview.css @@ -117,7 +117,7 @@ font-weight: bold; font-size: 115%; vertical-align: top; - padding-right: 20px; + padding-right: 3px; } .maker .gravatar { @@ -272,3 +272,14 @@ div.thread { .thread-id { float: left; } + +.maker-name { + display: block !important; + max-width: 152px !important; + word-wrap: break-word !important; +} + +.maker .gravatar { + padding-right: 5px; +} + diff --git a/hyperkitty/templates/overview.html b/hyperkitty/templates/overview.html index 1b812ac..098e609 100644 --- a/hyperkitty/templates/overview.html +++ b/hyperkitty/templates/overview.html @@ -54,7 +54,6 @@ </div> <div class="inline-block"> <span class="maker-name">{{ poster.name }}</span> - <br /> <span class="score">{{ poster.count }}</span> posts </div> </div> |