diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-22 23:27:04 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-22 23:27:04 +0000 |
commit | 2fdc9c014a24bd12ca157b626da176b02eb33e9e (patch) | |
tree | 19d9415e6b9bdf6e90e4e71e18cf42d4f06a998e /views/default/css | |
parent | bff46f5fb754515aecbe864715e327c18e4b0db3 (diff) | |
download | elgg-2fdc9c014a24bd12ca157b626da176b02eb33e9e.tar.gz elgg-2fdc9c014a24bd12ca157b626da176b02eb33e9e.tar.bz2 |
Trying to simplify layout css:
nixed elgg-aside
.elgg-sidebar.elgg-alt => .elgg-sidebar-alt (similar to .elgg-image-alt)
git-svn-id: http://code.elgg.org/elgg/trunk@8432 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/css')
-rw-r--r-- | views/default/css/elements/page_layout.php | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/views/default/css/elements/page_layout.php b/views/default/css/elements/page_layout.php index 5dac2127b..553356738 100644 --- a/views/default/css/elements/page_layout.php +++ b/views/default/css/elements/page_layout.php @@ -91,33 +91,32 @@ } /***** PAGE BODY ******/ -.elgg-page-body > .elgg-inner { +.elgg-layout { min-height: 360px; } -#elgg-layout-one-column { +.elgg-layout-one-column { padding: 10px 0; } -#elgg-layout-sidebar { +.elgg-layout-one-sidebar { background-image: url(<?php echo elgg_get_site_url(); ?>_graphics/sidebar_background.gif); background-repeat: repeat-y; background-position: right top; } -#elgg-layout-two-sidebar { +.elgg-layout-two-sidebar { background-image: url(<?php echo elgg_get_site_url(); ?>_graphics/two_sidebar_background.gif); background-repeat: repeat-y; background-position: right top; } -.elgg-aside { - padding: 20px 10px; - position: relative; - min-height: 360px; -} .elgg-sidebar { + position: relative; + padding: 20px 10px; float: right; width: 210px; margin: 0 0 0 10px; } -.elgg-sidebar.elgg-alt { +.elgg-sidebar-alt { + position: relative; + padding: 20px 10px; float: left; width: 160px; margin: 0 10px 0 0; |