summaryrefslogtreecommitdiff
path: root/views/default/css/elements/core.php
diff options
context:
space:
mode:
authorSem <sembrestels@riseup.net>2012-10-09 04:41:01 +0200
committerSem <sembrestels@riseup.net>2012-10-09 04:41:01 +0200
commit4ded39b120dc9f2829f87c6af132f1b2cc14ab7f (patch)
tree34a6f5a419da4628dfdf0c18a1acc64ae41f2787 /views/default/css/elements/core.php
parent5727d85ced9ae87d010b47ac99aab8adcd686a2e (diff)
downloadsaravea_theme-4ded39b120dc9f2829f87c6af132f1b2cc14ab7f.tar.gz
saravea_theme-4ded39b120dc9f2829f87c6af132f1b2cc14ab7f.tar.bz2
Merged Call4Design.
Diffstat (limited to 'views/default/css/elements/core.php')
-rw-r--r--views/default/css/elements/core.php17
1 files changed, 16 insertions, 1 deletions
diff --git a/views/default/css/elements/core.php b/views/default/css/elements/core.php
index ace6048..74f21ee 100644
--- a/views/default/css/elements/core.php
+++ b/views/default/css/elements/core.php
@@ -46,13 +46,28 @@
*overflow:visible;
}
-<?php //@todo isn't this only needed if we use display:table-cell? ?>
+<?php
+/**
+ * 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.
+ */
+
+//@todo isn't this only needed if we use display:table-cell?
+?>
.elgg-body:after,
.elgg-col-last:after {
display: block;
visibility: hidden;
height: 0 !important;
line-height: 0;
+ overflow: hidden;
/* Stretch to fill up available space */
font-size: xx-large;