aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme
diff options
context:
space:
mode:
authormarijus <mario@mariovavti.com>2014-03-07 13:36:49 +0100
committermarijus <mario@mariovavti.com>2014-03-07 13:36:49 +0100
commite8da840eec218acab2e9d26ee33915679ac88b5c (patch)
treea2253faea8519baea5a689c5a516d4f99045cc7c /view/theme
parent2a1729e6718a6a09fb322d8e115b5d47235ce809 (diff)
downloadvolse-hubzilla-e8da840eec218acab2e9d26ee33915679ac88b5c.tar.gz
volse-hubzilla-e8da840eec218acab2e9d26ee33915679ac88b5c.tar.bz2
volse-hubzilla-e8da840eec218acab2e9d26ee33915679ac88b5c.zip
remove aside on navbar collapse and add button to toggle visibility
Diffstat (limited to 'view/theme')
-rw-r--r--view/theme/redbasic/css/style.css7
-rw-r--r--view/theme/redbasic/js/redbasic.js5
2 files changed, 11 insertions, 1 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 47613c200..cdd77ae6b 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -2233,7 +2233,7 @@ nav .dropdown-menu {
/* bootstrap overrides */
blockquote {
- font-size: $body_font_size;
+ font-size: $body_font_size;
}
.dropdown-menu {
@@ -2282,3 +2282,8 @@ blockquote {
background-color: $nav_bd;
color: $nav_active_icon_colour;
}
+
+#expand-aside {
+ color: $nav_active_icon_colour;
+ padding: 7px 10px;
+}
diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js
index e41fde2b8..7e957a4f4 100644
--- a/view/theme/redbasic/js/redbasic.js
+++ b/view/theme/redbasic/js/redbasic.js
@@ -22,6 +22,11 @@ function cmtBbClose(comment, id) {
$(document).ready(function() {
+$('[data-toggle=show_hide]').click(function() {
+ $('#expand-aside-icon').toggleClass('icon-circle-arrow-right').toggleClass('icon-circle-arrow-left');
+ $('#region_1').toggleClass('hidden-xs');
+});
+
$('.group-edit-icon').hover(
function() {
$(this).css('opacity','1.0');},