From 20d47c44782e27f9930c49ddd59a2abc12f79a07 Mon Sep 17 00:00:00 2001 From: marijus Date: Wed, 19 Mar 2014 09:43:23 +0100 Subject: bootstrapify common tabs and make show aside/tabs buttons only appear if there is something to show --- view/css/bootstrap-red.css | 4 ++++ view/css/conversation.css | 4 ---- view/css/default.css | 4 ++-- view/theme/redbasic/css/style.css | 39 +++++++++++--------------------------- view/theme/redbasic/js/redbasic.js | 15 ++++++++++++++- view/tpl/common_tabs.tpl | 12 +++++++----- view/tpl/nav.tpl | 3 +++ 7 files changed, 41 insertions(+), 40 deletions(-) diff --git a/view/css/bootstrap-red.css b/view/css/bootstrap-red.css index aff35bf85..016c66c97 100644 --- a/view/css/bootstrap-red.css +++ b/view/css/bootstrap-red.css @@ -121,6 +121,10 @@ nav .navbar-collapse .navbar-right { margin-right: 5px; } +.nav-tabs.nav-justified > li { + white-space: nowrap; +} + code { white-space: normal; } diff --git a/view/css/conversation.css b/view/css/conversation.css index 188dbaccc..33786600d 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -1,9 +1,5 @@ /* jot */ -#profile-jot-wrapper { - margin-top: 25px; -} - #jot-title, #jot-category, #jot-pagetitle { diff --git a/view/css/default.css b/view/css/default.css index f8d00d34c..9ece626b4 100644 --- a/view/css/default.css +++ b/view/css/default.css @@ -18,7 +18,7 @@ aside#region_1 { min-width: 210px; display: table-cell; vertical-align: top; - padding: 65px 7px 7px 7px; + padding: 65px 7px 13px 7px; } aside input[type='text'] { @@ -29,5 +29,5 @@ section { width: 100%; display: table-cell; vertical-align: top; - padding: 65px 15px 200px 7px; + padding: 65px 13px 200px 13px; } diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 3b61ceab1..4415bdc30 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -245,31 +245,6 @@ header #banner #logo-text { font-size: 22px; } -.tabs { - height: 28px; - border-bottom: 1px solid #aaaaaa; - padding:0px; - width: 100%; -} - -.tabs li { margin: 0px; list-style: none; } -.tab { - display:block; - float:left; - margin-right: 15px ; -} - -.tab.active { - color: #444444; -} - -ul.tabs { - margin-top: 0px; - margin-bottom: 0px; - list-style-type: none; - -} - /* footer */ footer { @@ -2308,11 +2283,19 @@ blockquote { background-color: $nav_active_icon_colour; } -#expand-aside { +#expand-aside, +#expand-tabs { color: $nav_active_icon_colour; padding: 7px 10px; } +#tabs-collapse-1 { + padding: 0px; + margin-bottom: 25px; + border-top: none; + box-shadow: none; +} + @media screen and (max-width: 767px) { aside#region_1 { background: rgba(0, 0, 0, .1); @@ -2326,8 +2309,8 @@ blockquote { } main { - left: -227px; - width: calc( 100% + 227px ); + left: -225px; + width: calc( 100% + 225px ); } main.region_1-on { diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index bec7c55c8..9a34b6a07 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -22,11 +22,24 @@ function cmtBbClose(comment, id) { $(document).ready(function() { -$('[data-toggle=offcanvas]').click(function() { +$('#expand-aside').click(function() { $('#expand-aside-icon').toggleClass('icon-circle-arrow-right').toggleClass('icon-circle-arrow-left'); $('main').toggleClass('region_1-on'); + $('html, body').animate({ scrollTop: position }); }); +if ($('aside').html().length == 0) { + $('#expand-aside').hide(); +} + +$('#expand-tabs').click(function() { + $('#expand-tabs-icon').toggleClass('icon-circle-arrow-down').toggleClass('icon-circle-arrow-up'); +}); + +if($('#tabs-collapse-1').length == 0) { + $('#expand-tabs').hide(); +} + $('.group-edit-icon').hover( function() { $(this).css('opacity','1.0');}, diff --git a/view/tpl/common_tabs.tpl b/view/tpl/common_tabs.tpl index 3d34d7c57..fa6bfbdfa 100755 --- a/view/tpl/common_tabs.tpl +++ b/view/tpl/common_tabs.tpl @@ -1,6 +1,8 @@ - +
diff --git a/view/tpl/nav.tpl b/view/tpl/nav.tpl index fbdf28f76..5aa3b0f01 100755 --- a/view/tpl/nav.tpl +++ b/view/tpl/nav.tpl @@ -5,6 +5,9 @@ + -- cgit v1.2.3