Implement ccd0's suboptions

This commit is contained in:
Zixaphir 2015-01-13 14:23:53 -07:00
parent 1bafa6ef47
commit b102c034a1
4 changed files with 35 additions and 5 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -17,7 +17,7 @@ Settings =
add 'Style', @style
add 'Themes', @themes
add 'Mascots', @mascots
add 'Main', @main
add 'Script', @main
add 'Filter', @filter
add 'Sauce', @sauce
add 'Advanced', @advanced

View File

@ -2273,6 +2273,36 @@ article li {
resize: vertical;
width: 100%;
}
div[data-checked="false"] > .suboption-list {
display: none;
}
.suboption-list {
position: relative;
}
.suboption-list::before {
content: "";
display: inline-block;
position: absolute;
left: .7em;
width: 0;
height: 100%;
border-left: 1px solid;
}
.suboption-list > div {
position: relative;
padding-left: 1.4em;
}
.suboption-list > div::before {
content: "";
display: inline-block;
position: absolute;
left: .7em;
width: .7em;
height: .6em;
border-left: 1px solid;
border-bottom: 1px solid;
}
/* Hover Functionality */
#mouseover {
z-index: 33;