mirror of
https://github.com/sbrl/Pepperminty-Wiki.git
synced 2024-11-22 04:23:01 +00:00
Merge branch 'master' of github.com:sbrl/Pepperminty-Wiki
This commit is contained in:
commit
3c2ef9895d
2 changed files with 5 additions and 1 deletions
|
@ -100,7 +100,10 @@ function render_sidebar($pageindex, $root_pagename = "")
|
||||||
// The current page is the same as the root page, skip it
|
// The current page is the same as the root page, skip it
|
||||||
if($pagename == $root_pagename)
|
if($pagename == $root_pagename)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
// If the page already appears on the sidebar, skip it
|
||||||
|
if(preg_match("/>$pagename<\a>/m", $result) === 1)
|
||||||
|
continue;
|
||||||
|
|
||||||
// If the part of the current pagename that comes after the root
|
// If the part of the current pagename that comes after the root
|
||||||
// pagename has a slash in it, skip it as it is a sub-sub page.
|
// pagename has a slash in it, skip it as it is a sub-sub page.
|
||||||
|
|
|
@ -21,6 +21,7 @@ input[type=search] { width: 14rem; padding: 0.3rem 0.4rem; font-size: 1rem; colo
|
||||||
input[type=search]::-webkit-input-placeholder { color : rgba(255, 255, 255, 0.75); }
|
input[type=search]::-webkit-input-placeholder { color : rgba(255, 255, 255, 0.75); }
|
||||||
input[type=button], input[type=submit] { cursor: pointer; }
|
input[type=button], input[type=submit] { cursor: pointer; }
|
||||||
|
|
||||||
|
.sidebar + .main-container nav.bottom { position: relative; }
|
||||||
.sidebar { position: relative; z-index: 100; margin-top: 0.6rem; padding: 1rem 3rem 2rem 0.4rem; background: #9e7eb4; box-shadow: inset -0.6rem 0 0.8rem -0.5rem rgba(50, 50, 50, 0.5); }
|
.sidebar { position: relative; z-index: 100; margin-top: 0.6rem; padding: 1rem 3rem 2rem 0.4rem; background: #9e7eb4; box-shadow: inset -0.6rem 0 0.8rem -0.5rem rgba(50, 50, 50, 0.5); }
|
||||||
.sidebar a { color: #ffa74d; }
|
.sidebar a { color: #ffa74d; }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue