summaryrefslogtreecommitdiffstats
path: root/docs/bootstrap
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2016-05-26 10:36:49 (GMT)
committerStefan Radomski <github@mintwerk.de>2016-05-26 10:36:49 (GMT)
commit6e13c7b6e0888323223afd5d2e36e86243df57af (patch)
treef558fd45fa499c8bc95041554ecad6be1bf788c1 /docs/bootstrap
parentf6714b1484b641ea61053350b7d156d2da760b8b (diff)
downloaduscxml-6e13c7b6e0888323223afd5d2e36e86243df57af.zip
uscxml-6e13c7b6e0888323223afd5d2e36e86243df57af.tar.gz
uscxml-6e13c7b6e0888323223afd5d2e36e86243df57af.tar.bz2
Minor polishing for Java bindings and first draft of JEXL datamodel
Diffstat (limited to 'docs/bootstrap')
-rwxr-xr-xdocs/bootstrap/customdoxygen.css34
-rwxr-xr-xdocs/bootstrap/doxy-boot.js40
2 files changed, 74 insertions, 0 deletions
diff --git a/docs/bootstrap/customdoxygen.css b/docs/bootstrap/customdoxygen.css
index 6c71e58..aa2c2bf 100755
--- a/docs/bootstrap/customdoxygen.css
+++ b/docs/bootstrap/customdoxygen.css
@@ -242,12 +242,35 @@ div.groupText {
/* OWN */
+.table> tbody > .mdetail > td {
+ padding: 0px;
+ border-top: 0px;
+}
+
+.table> tbody > .mdetail > td > div.panel {
+ border-radius: 0px;
+ box-shadow: none;
+ -webkit-box-shadow: none;
+ margin-bottom: 0px;
+ border: 0px;
+}
+
+.table> tbody > .mdetail {
+ border: 1px solid #ddd;
+}
+
+
div.mbrief {
padding: 0px 8px;
margin: 5px 0px;
border-left: 4px solid #DDD;
}
+.mdetail div.fragment {
+ margin-bottom: 15px;
+}
+
+
div.toc, div.toc li {
font: 400 10px/22px Roboto, sans-serif;
line-height: 1.2;
@@ -410,11 +433,20 @@ span.SRScope {
.table-hover;
padding: 3px;
/* border-bottom: 2px solid #e0e0e0;*/
+ border-bottom: 0px;
+}
+
+table.memname td.memname > a,
+table.memname td.paramtype > a,
+.table > tbody > tr > td.memItemLeft > a,
+.table > tbody > tr > td.memItemRight > a {
+ font-weight: bold;
}
.table > tbody > tr > td.memItemLeft {
border-top: 1px solid #e0e0e0;
}
+
.table > tbody > tr > td.mdescRight {
border-bottom: 1px solid #e0e0e0;
}
@@ -424,6 +456,8 @@ span.SRScope {
.table > tbody > tr > td.memItemRight {
border-left: 1px solid #e0e0e0;
border-right: 1px solid #e0e0e0;
+ padding: 5px 8px;
+/* line-height: 1.2;*/
/* width: auto;*/
}
diff --git a/docs/bootstrap/doxy-boot.js b/docs/bootstrap/doxy-boot.js
index 39c6a5d..6fe56b0 100755
--- a/docs/bootstrap/doxy-boot.js
+++ b/docs/bootstrap/doxy-boot.js
@@ -315,6 +315,46 @@ $( document ).ready(function() {
$(this).parent().remove();
});
+ /* Move detailled collapsible under brief */
+ $('div.mbrief a').each(function(){
+ var detailLink = $(this);
+ var detailAnchor = $(this).attr('href');
+
+ if ($(detailAnchor).length) {
+
+ var detailContent = $(detailAnchor).next();
+ detailContent.addClass("collapse");
+
+ $(this).removeAttr('href');
+
+ $(this).click(function() {
+ if (!$(detailContent).hasClass("in")) {
+ detailContent.addClass("in");
+ $(detailLink).text("Less ...");
+ } else {
+ detailContent.removeClass("in");
+ $(detailLink).text("More ...");
+ }
+ });
+
+ $(detailContent).find('.panel-heading').remove();
+
+ $(this).parent().parent().prev().append($(detailAnchor));
+ // $(this).parent().parent().append($(detailContent));
+
+ $(this).parent().parent().parent()
+ .after("<tr>").next().addClass("mdetail")
+ .append("<td>").children('td:last').attr("colspan", "2")
+ .append($(detailContent));
+ }
+ });
+
+ $('h2.groupheader').each(function(){
+ if ($(this).text() == "Member Function Documentation") {
+ $(this).remove();
+ }
+ });
+
// $('.mdescLeft').each(function(){
// if($(this).html()=="&nbsp;") {
// $(this).siblings('.mdescRight').attr('colspan', 2);