+
getMsg( 'navigation-heading' )->parse() ?>
-
+
data['sitenotice'] ) {
@@ -76,12 +76,16 @@ class TimelessTemplate extends BaseTemplate {
html( 'bodytext' );
+ ?>
+
+ html( 'catlinks' );
$this->html( 'dataAfterContent' );
?>
+
diff --git a/resources/screen-common.less b/resources/screen-common.less
index 55c677d..2868709 100644
--- a/resources/screen-common.less
+++ b/resources/screen-common.less
@@ -8,13 +8,38 @@ body {
margin: 0;
padding: 0;
color: @text;
- background: @background2;
+ background: @background-dark;
font-size: 1em;
line-height: 1.3;
}
-#content {
+#mw-content {
background: @background;
}
+#mw-content-container {
+ background: @background2;
+}
+#mw-footer-container {
+ border-top: solid 1px @background-dark2;
+ box-shadow: inset 0 7px 2px -4px rgba(0, 0, 0, .1);
+
+ ul {
+ margin: 0;
+ }
+}
+
+#p-logo {
+ text-align: center;
+ width: 10em;
+
+ a.mw-wiki-logo {
+ display: block;
+ content: '';
+ width: 10em;
+ height: 10em;
+ background-repeat: no-repeat;
+ background-position: 50% 50%;
+ }
+}
/* Misc */
@@ -34,19 +59,14 @@ a {
}
}
-#p-logo {
- text-align: center;
- width: 10em;
-
- a.mw-wiki-logo {
- display: block;
- content: '';
- width: 10em;
- height: 10em;
- background-repeat: no-repeat;
- background-position: 50% 50%;
- }
+.mw-editsection-bracket {
+ display: none;
}
+.visual-clear {
+ clear: both;
+}
+
+/* Hidden stuff */
#mw-site-navigation h2,
#p-search h3,
diff --git a/resources/screen-desktop.less b/resources/screen-desktop.less
index 7e64b0c..58cdada 100644
--- a/resources/screen-desktop.less
+++ b/resources/screen-desktop.less
@@ -11,7 +11,7 @@
float: left;
}
#p-search,
-#content {
+#mw-content {
margin-left: 12em;
margin-right: 12em;
}
@@ -25,10 +25,10 @@
position: fixed;
top: 0;
width: 100%;
- background: @foreground;
+ background: @background-dark;
color: @text-inverse;
height: 3em;
- border-bottom: solid 1px @foreground2;
+ border-bottom: solid 1px @background-dark2;
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}
@@ -38,7 +38,7 @@
#p-logo-text {
width: 10em;
text-align: center;
- text-shadow: 0 -1px 0 @foreground2;
+ text-shadow: 0 -1px 0 @background-dark2;
a {
color: @text-inverse;
@@ -57,7 +57,7 @@
background: @background;
margin: .5em 0 0 0;
position: relative;
- border-top: solid 1px @foreground2;
+ border-top: solid 1px @background-dark2;
}
#searchInput {
border: none;
@@ -86,15 +86,16 @@
/* CONTENT */
-#content-container {
+#mw-content-container {
margin-top: 3em;
+ padding-bottom: 1em;
}
-#content {
+#mw-content {
background: @background;
padding-top: 1em;
border: 1px @grey-bright;
- border-style: none solid;
- box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.02);
+ border-style: none solid solid;
+ box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.02);
overflow: hidden;
padding-right: 2em;
padding-left: 2em;
diff --git a/resources/variables.less b/resources/variables.less
index 502601a..7923666 100644
--- a/resources/variables.less
+++ b/resources/variables.less
@@ -4,8 +4,8 @@
@background: #fff;
@background2: #f3f3f3;
-@foreground: #777;
-@foreground2: #555;
+@background-dark: #777;
+@background-dark2: #555;
@text-inverse: #fff;
@link: @blue;