many class fixes and revive shiny class for item titles in a new way

This commit is contained in:
Mario Vavti
2017-03-13 16:34:23 +01:00
parent 188782c461
commit 700c05a55b
17 changed files with 85 additions and 117 deletions

View File

@@ -1703,8 +1703,7 @@ main.fullscreen .section-content-wrapper-np {
nav ul li .undefined,
nav ul li .notify-seen,
nav ul li .notify-unseen
{
nav ul li .notify-unseen {
max-height: 3rem;
}
@@ -1819,10 +1818,6 @@ blockquote {
}
*/
#tabs-collapse-1 {
padding: 0px;
margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
@@ -2052,3 +2047,5 @@ dl.bb-dl > dd > li {
#permcat-index {
margin: 10px;
}
.shiny { background-color: red; }

View File

@@ -18,7 +18,7 @@ $(document).ready(function() {
if($(window).width() > 767) {
$('#left_aside_wrapper').stick_in_parent({
offset_top: $('nav').outerHeight(true),
offset_top: $('nav').outerHeight(true) + 10,
parent: '#region_1',
spacer: '#left_aside_spacer'
});
@@ -105,7 +105,7 @@ function toggleAside() {
$('main').addClass('region_1-on')
$('<div id="overlay"></div>').appendTo('section');
$('#left_aside_wrapper').stick_in_parent({
offset_top: $('nav').outerHeight(true) - 10,
offset_top: $('nav').outerHeight(true) + 10,
parent: '#region_1',
spacer: '#left_aside_spacer'
});