From f05181322cf08539fb147bbd5f6edfb93c254b7e Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 28 Mar 2017 13:29:59 +0200 Subject: update to latest bs-dev --- view/theme/redbasic/css/style.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'view/theme/redbasic') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 0e5ff2bfb..3616e3de6 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1211,12 +1211,12 @@ a.active:hover .dropdown-sub-text { } .usermenu { - width: 3.5rem; + width: 3.75rem; } #avatar { - width: 2.2rem; - height: 2.2rem; + width: 2.35rem; + height: 2.35rem; border-radius: $radius; } -- cgit v1.2.3 From 28ad60f892f1cdebe704e4bc1aa964d3366f4dcf Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 28 Mar 2017 19:29:42 +0200 Subject: some fixes for latest bs-dev --- view/theme/redbasic/css/narrow_navbar.css | 2 +- view/theme/redbasic/css/style.css | 2 +- view/theme/redbasic/js/redbasic.js | 7 +++++++ 3 files changed, 9 insertions(+), 2 deletions(-) (limited to 'view/theme/redbasic') diff --git a/view/theme/redbasic/css/narrow_navbar.css b/view/theme/redbasic/css/narrow_navbar.css index 33db6ce83..99f083638 100644 --- a/view/theme/redbasic/css/narrow_navbar.css +++ b/view/theme/redbasic/css/narrow_navbar.css @@ -11,7 +11,7 @@ } .contextual-help-content-open { - top: 2.4rem; + top: 2.5rem; } aside { diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 3616e3de6..d5edc6902 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -191,7 +191,7 @@ nav { .contextual-help-content-open { display: block; position: fixed; - top: 3.25rem; + top: 3.35rem; left: 0px; width: 100%; max-height: 50%; diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index 14b977b80..4d9a1d6cc 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -3,6 +3,13 @@ */ $(document).ready(function() { + //this is a hotfix to make collapsible bs panels work again. this needs fixing in templates. + $('a').on('click', function(e) { + if($(this).data('toggle') == 'collapse') { + e.preventDefault(); + } + }); + // CSS3 calc() fallback (for unsupported browsers) $('body').append(''); if( $('#css3-calc').width() == 10) { -- cgit v1.2.3 From 5564b47dbc640b30a8090a6138f0c2f841accbe9 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 28 Mar 2017 23:44:50 +0200 Subject: minor bs4 fixes --- view/theme/redbasic/js/redbasic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view/theme/redbasic') diff --git a/view/theme/redbasic/js/redbasic.js b/view/theme/redbasic/js/redbasic.js index 4d9a1d6cc..fb048518e 100644 --- a/view/theme/redbasic/js/redbasic.js +++ b/view/theme/redbasic/js/redbasic.js @@ -3,7 +3,7 @@ */ $(document).ready(function() { - //this is a hotfix to make collapsible bs panels work again. this needs fixing in templates. + //this is a hotfix to make collapsible bs panels work again. this needs fixing in bootstrap. $('a').on('click', function(e) { if($(this).data('toggle') == 'collapse') { e.preventDefault(); -- cgit v1.2.3