1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-30 09:39:55 +02:00

Expanding Page-Navigation support added. (still a few glitches)

This commit is contained in:
Cameron
2013-11-20 17:44:06 -08:00
parent c27b33963c
commit b0f717e416
6 changed files with 109 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
/********************/
/* EXPANDABLE LIST */
/********************/
ul.page-nav {
margin-left:5px;
}
ul.page-nav p {
display:block;
}
ul.page-nav li {
line-height:150%;
cursor: pointer;
background-position: 1px 6px;
background-repeat: no-repeat;
}
/* Collapsed state for list element */
ul.page-nav .collapsed {
list-style: none;
padding-left: 15px;
text-indent:0px;
margin:0;
margin-left:5px;
background-image: url(../img/collapsed.png);
}
/* Expanded state for list element
/* NOTE: This class must be located UNDER the collapsed one */
ul.page-nav .expanded {
list-style: none;
padding-left: 15px;
text-indent:0px;
margin:0;
margin-left:5px;
background-image: url(../img/expanded.png);
}
ul.page-nav {
clear: both;
}