diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2013-07-12 11:13:54 +0200 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2013-07-12 11:13:54 +0200 |
commit | 579bd91b14f8d2926f64aa6032b41145f90b46fe (patch) | |
tree | 4fb79092d0a278d2625a8807fdda06a5717b01be /hyperkitty/static | |
parent | 65146a1229604b059e1d637761e9096068a05ab3 (diff) | |
download | hyperkitty-579bd91b14f8d2926f64aa6032b41145f90b46fe.tar.gz hyperkitty-579bd91b14f8d2926f64aa6032b41145f90b46fe.tar.xz hyperkitty-579bd91b14f8d2926f64aa6032b41145f90b46fe.zip |
Revive the 'discussions by category' widget on the overview page
Diffstat (limited to 'hyperkitty/static')
-rw-r--r-- | hyperkitty/static/hyperkitty/css/hyperkitty-overview.css | 33 | ||||
-rw-r--r-- | hyperkitty/static/hyperkitty/css/hyperkitty-threadslist.css | 51 |
2 files changed, 33 insertions, 51 deletions
diff --git a/hyperkitty/static/hyperkitty/css/hyperkitty-overview.css b/hyperkitty/static/hyperkitty/css/hyperkitty-overview.css index 1fef97c..ff43917 100644 --- a/hyperkitty/static/hyperkitty/css/hyperkitty-overview.css +++ b/hyperkitty/static/hyperkitty/css/hyperkitty-overview.css @@ -54,6 +54,17 @@ margin: 1em 0; } +#recent-activities .thread-stats { + margin-left: 3em; +} +#recent-activities .thread-stats ul { + margin: 0; +} +#recent-activities .thread-stats .category { + margin-right: 2em; +} + +/* .category { font-variant: small-caps; font-weight: bold; @@ -77,6 +88,7 @@ .category_entry li { padding-bottom: 10px; } +*/ .maker { color: rgb(102, 102, 102); @@ -98,3 +110,24 @@ .score{ font-weight: bold; } + + +/* Threads by category */ + +#discussion-by-category h4 { + font-size: 105%; + line-height: 105%; + margin: 1.5em 0 0.5em 0; +} +#discussion-by-category h4.first { + margin-top: 0; +} +#discussion-by-category .thread { + margin: 0 0 0 2em; +} +#discussion-by-category .thread-stats { + margin-left: 0; +} +#discussion-by-category .thread .category { + display: none; +} diff --git a/hyperkitty/static/hyperkitty/css/hyperkitty-threadslist.css b/hyperkitty/static/hyperkitty/css/hyperkitty-threadslist.css index 19dd239..7331f90 100644 --- a/hyperkitty/static/hyperkitty/css/hyperkitty-threadslist.css +++ b/hyperkitty/static/hyperkitty/css/hyperkitty-threadslist.css @@ -146,54 +146,3 @@ margin-top: 0.5em; } */ - - - -/* - * Thread types - */ - -.type { - font-variant: small-caps; - font-weight: bold; - color: white; - padding: 3px; - -webkit-border-radius: 5px 5px 5px 5px; - -moz-border-radius: 5px 5px 5px 5px; - border-radius: 5px 5px 5px 5px; - vertical-align: top; - width: 110px; - text-align:center; -} - -.type a { - color: white; -} - -.type_question { - background-color: rgb(179, 128, 255); -} - -.type_agenda { - background-color: rgb(42, 127, 255); -} - -.type_todo { - background-color: rgb(200, 171, 55); -} - -.type_dead { - background-color: rgb(0, 0, 0); -} - -.type_announcement { - background-color: rgb(170, 212, 0); -} - -.type_policy { - background-color: rgb(200, 55, 171); -} - -.type_test { - background-color: rgb(200, 171, 55); -} |