style hashtags, mentions and categories. hide expand-aside button if not needed. css and class fixes

This commit is contained in:
Mario Vavti
2017-03-15 16:42:55 +01:00
parent 0c74c79b18
commit aa33cacb62
10 changed files with 35 additions and 43 deletions

View File

@@ -1292,7 +1292,7 @@ img.mail-conv-sender-photo {
}
.wall-item-footer {
font-size: $body_font_size;
font-size: 0.75rem;
margin-top: 2em;
}
@@ -1367,8 +1367,7 @@ img.mail-conv-sender-photo {
.mail-conv-body,
.page-body,
.chat-item-text,
.chat-item-text-self,
#doco-content {
.chat-item-text-self {
font-size: $font_size;
clear: both;
}

View File

@@ -16,6 +16,8 @@ $(document).ready(function() {
}
$('#css3-calc').remove(); // Remove the test element
if($(window).width() > 767) {
$('#left_aside_wrapper').stick_in_parent({
offset_top: $('nav').outerHeight(true) + 10,
@@ -24,6 +26,11 @@ $(document).ready(function() {
});
}
if($('#region_1 .widget').length > 0)
$('#expand-aside').show();
else
$('#expand-aside').hide();
$('#expand-aside').on('click', toggleAside);
$('section').on('click', function() {

View File

@@ -134,11 +134,11 @@ if (! $shadow)
if (! $converse_width)
$converse_width = '790';
if(! $top_photo)
$top_photo = '2.2rem';
$top_photo = '2.3rem';
if(! $comment_indent)
$comment_indent = '0px';
if(! $reply_photo)
$reply_photo = '2.2rem';
$reply_photo = '2.3rem';
if($nav_min_opacity === false || $nav_min_opacity === '') {
$nav_float_min_opacity = 1.0;
$nav_percent_min_opacity = 100;