diff options
author | Sem <sembrestels@riseup.net> | 2012-08-18 18:09:18 +0200 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-08-18 18:09:18 +0200 |
commit | eccd860d688ad8b251dddcd4f1a254fe99eb4abd (patch) | |
tree | ca0763c1500e1de676870146ef8f3bfda848444d /views/default/css/elements/components.php | |
parent | 869c2914d62decc719ab597a9049bd556c3f7997 (diff) | |
download | saravea_theme-eccd860d688ad8b251dddcd4f1a254fe99eb4abd.tar.gz saravea_theme-eccd860d688ad8b251dddcd4f1a254fe99eb4abd.tar.bz2 |
Updated base of code.
Diffstat (limited to 'views/default/css/elements/components.php')
-rw-r--r-- | views/default/css/elements/components.php | 26 |
1 files changed, 9 insertions, 17 deletions
diff --git a/views/default/css/elements/components.php b/views/default/css/elements/components.php index 8f2c392..1edf58d 100644 --- a/views/default/css/elements/components.php +++ b/views/default/css/elements/components.php @@ -7,17 +7,6 @@ * @package Elgg.Core * @subpackage UI */ -/** - * elgg-body fills the space available to it. - * It uses hidden text to expand itself. The combination of auto width, overflow - * hidden, and the hidden text creates this effect. - * - * This allows us to float fixed width divs to either side of an .elgg-body div - * without having to specify the body div's width. - * - * @todo check what happens with long <pre> tags or large images - * @todo Move this to its own file -- it is very complicated and should not have to be overridden. - */ ?> /* *************************************** @@ -96,7 +85,11 @@ width: 100%; border-top: 1px solid #ccc; } -.elgg-table-alt td { +.elgg-table-alt th { + background-color: #eee; + font-weight: bold; +} +.elgg-table-alt td, .elgg-table-alt th { padding: 2px 4px 2px 4px; border-bottom: 1px solid #ccc; } @@ -287,17 +280,16 @@ Tags *************************************** */ .elgg-tags { - display: inline; font-size: 85%; } -.elgg-tags li { - display: inline; +.elgg-tags > li { + float:left; margin-right: 5px; } -.elgg-tags li:after { +.elgg-tags li.elgg-tag:after { content: ","; } -.elgg-tags li:last-child:after { +.elgg-tags li.elgg-tag:last-child:after { content: ""; } .elgg-tagcloud { |