move style info into css file

This commit is contained in:
Mario Vavti 2016-12-22 15:20:02 +01:00
parent d7f65ca125
commit 4bcc1f5adb
4 changed files with 39 additions and 43 deletions

View File

@ -1,4 +1,3 @@
[h3]Project Overview[/h3] [h3]Project Overview[/h3]
$Projectname is a decentralized community server providing communications, identity, and access control services which work together seamlessly across domains and connected websites. It allows anybody to publicly or [b]privately[/b] publish a range of web/media/personal content. The cross-domain privacy implementation is unique and somewhat revolutionary, as identity and access rights are negotiated by servers invisibly in the background. $Projectname is a decentralized community server providing communications, identity, and access control services which work together seamlessly across domains and connected websites. It allows anybody to publicly or [b]privately[/b] publish a range of web/media/personal content. The cross-domain privacy implementation is unique and somewhat revolutionary, as identity and access rights are negotiated by servers invisibly in the background.
@ -469,4 +468,4 @@ even if we have had our occasional disagreements.
[li]Simó Albert i Beltran[/li] [li]Simó Albert i Beltran[/li]
[li]Manuel Reva[/li] [li]Manuel Reva[/li]
[li]Manuel Jiménez Friaza[/li] [li]Manuel Jiménez Friaza[/li]
[/list] [/list]

View File

@ -1,35 +1,3 @@
<style>
.doco-list-group-item > a {
font-weight: bold;
}
.sub-menu {
margin: 3px 0px 10px 10px;
}
#doco-content h3 {
border-bottom: #ccc 3px solid;
padding-bottom: 0.3em;
}
#doco-content h4 {
text-decoration: underline;
}
#doco-content h5 {
text-decoration: underline;
}
#region_1 .widget ul ul {
list-style-type: none;
}
.toc-content li,
#doco-top-toc li {
padding: 3px 0px;
}
</style>
<div class="" id="accordion"> <div class="" id="accordion">
<div class="panel"> <div class="panel">
<div class=""> <div class="">

29
view/css/mod_help.css Normal file
View File

@ -0,0 +1,29 @@
.doco-list-group-item > a {
font-weight: bold;
}
.sub-menu {
margin: 3px 0px 10px 10px;
}
#doco-content h3 {
border-bottom: #ccc 3px solid;
padding-bottom: 0.3em;
}
#doco-content h4 {
text-decoration: underline;
}
#doco-content h5 {
text-decoration: underline;
}
#region_1 .widget ul ul {
list-style-type: none;
}
.toc-content li,
#doco-top-toc li {
padding: 3px 0px;
}

View File

@ -1,19 +1,20 @@
<div id="help-content" class="generic-content-wrapper"> <div id="help-content" class="generic-content-wrapper">
<div class="section-title-wrapper"> <div class="section-title-wrapper">
<h2>{{$title}}: {{$heading}}</h2> <h2>{{$title}}: {{$heading}}</h2>
</div> </div>
<div class="section-content-wrapper" id="doco-content"> <div class="section-content-wrapper" id="doco-content">
<h3 id="doco-top-toc-heading"><span class="fakelink" onclick="docoTocToggle(); return false;"> <h3 id="doco-top-toc-heading">
<i class="fakelink fa fa-caret-right" id="doco-toc-toggle"></i> <span class="fakelink" onclick="docoTocToggle(); return false;">
{{$tocHeading}} <i class="fakelink fa fa-caret-right" id="doco-toc-toggle"></i>
</span></h3> {{$tocHeading}}
<ul id="doco-top-toc" style="margin-bottom: 1.5em; display: none;"></ul> </span>
{{$content}} </h3>
<ul id="doco-top-toc" style="margin-bottom: 1.5em; display: none;"></ul>
{{$content}}
</div> </div>
</div> </div>
<script> <script>
// Generate the table of contents in the side nav menu (see view/tpl/help.tpl) // Generate the table of contents in the side nav menu (see view/tpl/help.tpl)
$(document).ready(function () { $(document).ready(function () {
$('#doco-top-toc').toc({content: "#doco-content", headings: "h3,h4,h5,h6"}); $('#doco-top-toc').toc({content: "#doco-content", headings: "h3,h4,h5,h6"});
@ -29,5 +30,4 @@
return false; return false;
} }
</script> </script>