summaryrefslogtreecommitdiff
path: root/default/_ikiwiki.scss
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2012-08-04 15:35:47 +0200
committerJonas Smedegaard <dr@jones.dk>2012-08-04 15:35:47 +0200
commitc656f05be249eca9ccb4b927d98e3295fe3fa013 (patch)
treeb58bb4a3ef6aae365561ccb67d3d7ae215864c36 /default/_ikiwiki.scss
parente858a96161d13dcaf0d622a50ba1e0d13106f78c (diff)
parentc4cc9c24d407402b413bb89789fca8018622bb54 (diff)
Merge commit 'refs/top-bases/compass' into compass
Diffstat (limited to 'default/_ikiwiki.scss')
-rw-r--r--default/_ikiwiki.scss51
1 files changed, 51 insertions, 0 deletions
diff --git a/default/_ikiwiki.scss b/default/_ikiwiki.scss
index a3e748a..0187d3e 100644
--- a/default/_ikiwiki.scss
+++ b/default/_ikiwiki.scss
@@ -356,6 +356,10 @@ div.progress-done {
display: none;
}
+ .trails {
+ display: none;
+ }
+
.feedbutton {
display: none;
}
@@ -727,6 +731,46 @@ a.openid_large_btn:focus {
.fileupload-content .ui-progressbar-value {
background: url(ikiwiki/images/pbar-ani.gif);
}
+
+@mixin ikiwiki-plugin-trail {
+.trails {
+ margin-top: 1em;
+ margin-bottom: 1em;
+}
+.trail {
+ display: block;
+ clear: both;
+ position: relative;
+}
+
+.trailprev {
+ display: block;
+ text-align: left;
+ position: absolute;
+ top: 0%;
+ left: 3%;
+ width: 30%;
+}
+
+.trailup {
+ display: block;
+ text-align: center;
+ margin-left: 35%;
+ margin-right: 35%;
+}
+
+.trailnext {
+ display: block;
+ text-align: right;
+ position: absolute;
+ top: 0%;
+ width: 30%;
+ right: 3%;
+}
+
+.trailsep {
+ display: none;
+}
}
// all styles in same order as original Ikiwiki stylesheet
@@ -770,6 +814,7 @@ a.openid_large_btn:focus {
@include ikiwiki-plugin-flattr;
@include ikiwiki-plugin-openid;
@include ikiwiki-plugin-attachment;
+ @include ikiwiki-plugin-trail;
}
@mixin ikiwiki-site {
@@ -789,6 +834,7 @@ a.openid_large_btn:focus {
@include ikiwiki-tags;
@include ikiwiki-backlinks;
@include ikiwiki-authorship;
+ @include ikiwiki-plugin-trail;
// aside
@include ikiwiki-plugin-sidebar;
}
@@ -834,3 +880,8 @@ a.openid_large_btn:focus {
@include ikiwiki-reset;
@include ikiwiki-style-legacy;
}
+
+.pageheader .trails {
+ /* allow space for the action tabs */
+ margin-bottom: 2em;
+}