Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Lib update #30

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions gui/css/bootstrap.min.css

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions gui/css/bootstrap.min.css.map

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions gui/css/font-awesome-all.min.css

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions gui/css/font-awesome-v4-shims.min.css

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions gui/css/jquery-ui.min.css

Large diffs are not rendered by default.

54 changes: 28 additions & 26 deletions gui/css/jquery.tocify.css
Original file line number Diff line number Diff line change
@@ -1,61 +1,63 @@
/*
* jquery.tocify.css 1.3.0
* jquery.tocify.css 1.9.0
* Author: @gregfranko
*/

/* The Table of Contents container element */
#toc {
max-height: 85%;
.tocify {
width: 20%;
max-height: 90%;
overflow: auto;
margin-left: 2%;
position: fixed;
border: 1px solid #ccc;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
webkit-border-radius: 6px;
moz-border-radius: 6px;
border-radius: 6px;
margin-left: 0;
}
#toc.bottom {
position:absolute;
bottom: 0;
}

/* The Table of Contents is composed of multiple nested unordered lists. These styles remove the default styling of an unordered list because it is ugly. */
#toc ul, #toc li {
.tocify ul, .tocify li {
list-style: none;
margin: 0;
padding: 0;
border: none;
line-height: 30px;
font-size: 15px;
}

/* Top level header elements */
.tocify-header {
text-indent: 10px;
width: 100%
}

/* Top level subheader elements. These are the first nested items underneath a header element. */
.sub-header {
.tocify-subheader {
text-indent: 20px;
display: none;
}

.nav .sub-header a {
padding-left: 30px;
}
.sub-header .sub-header a {
padding-left: 40px;
/* Makes the font smaller for all subheader elements. */
.tocify-subheader li {
font-size: 12px;
}
.sub-header .sub-header .sub-header a {
padding-left: 50px;

/* Further indents second level subheader elements. */
.tocify-subheader .tocify-subheader {
text-indent: 30px;
}

/* Makes the font smaller for all subheader elements. */
#toc .sub-header li {
font-size: 13px;
/* Further indents third level subheader elements. You can continue this pattern if you have more nested elements. */
.tocify-subheader .tocify-subheader .tocify-subheader {
text-indent: 40px;
}

/* Twitter Bootstrap Override Style */
.nav-list > li > a, .nav-list .nav-header {
margin: 0;
margin: 0px;
}

/* Twitter Bootstrap Override Style */
.nav-list > li > a {
line-height: 1.5em;
padding: 7px 5px 7px 15px;
padding: 5px;
}
Loading