From: ewinslow Date: Tue, 22 Feb 2011 23:09:09 +0000 (+0000) Subject: Move install footer/header/sidebar into page/elements. Converted CSS to use more... X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=2e55e477f93fc7e2e26e5d01395fd8d47c283c27;p=lorea%2Felgg.git Move install footer/header/sidebar into page/elements. Converted CSS to use more standard Elgg framework objects git-svn-id: http://code.elgg.org/elgg/trunk@8430 36083f99-b078-4883-b0ff-0f9b5a30f544 --- diff --git a/install/css/install.css b/install/css/install.css index 016437c14..f891dff6c 100644 --- a/install/css/install.css +++ b/install/css/install.css @@ -69,30 +69,44 @@ ul { line-height: 0px; } -#elgg-wrapper { - background: white; - width: 800px; +.elgg-page { + width: 880px; margin: auto; - padding: 5px 40px; margin-top: 20px; +} +.elgg-page-header { border-right: 1px solid #666666; + padding: 15px 50px 10px; + background: white; +} +.elgg-page-body { border-bottom: 1px solid #666666; + border-right: 1px solid #666666; + padding: 0 40px 5px; + background: white; } -#elgg-header { - margin: 10px 10px; + +.elgg-page-body:after, +.elgg-page-header:after { + display:block; + content:'.'; + line-height:0; + height:0; + visibility: hidden; + clear:both; } -#elgg-sidebar { + +.elgg-sidebar { float: left; width: 250px; } -#elgg-content { - float: left; - width: 550px; +.elgg-body { + overflow:hidden; min-height: 320px; padding-bottom: 60px; position: relative; } -#elgg-footer { +.elgg-page-footer { width: 800px; height: 20px; clear: both; @@ -108,21 +122,21 @@ ul { bottom: 0px; } -#elgg-footer a { +.elgg-page-footer a { color: white; } -#elgg-footer li { +.elgg-page-footer li { float: left; list-style: none; margin-right: 20px; } -#elgg-sidebar ol { +.elgg-sidebar ol { padding-left: 30px; } -#elgg-sidebar li { +.elgg-sidebar li { font-size: 1.2em; margin-bottom: 5px; } @@ -244,7 +258,7 @@ select { background: #F7DAD8; } -#elgg-content li { +.elgg-body li { margin-top: 5px; padding: 5px; } diff --git a/views/installation/page/default.php b/views/installation/page/default.php index abee13dba..7618e7255 100644 --- a/views/installation/page/default.php +++ b/views/installation/page/default.php @@ -31,22 +31,25 @@ header('Expires: Fri, 05 Feb 1982 00:00:00 -0500', TRUE); -
-
- +
+
+ +
+
+
+
+ +
+
+

+ $vars['sysmessages'])); ?> + +
+
+
+
-
- -
-
-

- $vars['sysmessages'])); ?> - -
-
-
- diff --git a/views/installation/install/footer.php b/views/installation/page/elements/footer.php similarity index 100% rename from views/installation/install/footer.php rename to views/installation/page/elements/footer.php diff --git a/views/installation/install/header.php b/views/installation/page/elements/header.php similarity index 100% rename from views/installation/install/header.php rename to views/installation/page/elements/header.php diff --git a/views/installation/install/sidebar.php b/views/installation/page/elements/sidebar.php similarity index 100% rename from views/installation/install/sidebar.php rename to views/installation/page/elements/sidebar.php