Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue/2139 #2252

Merged
merged 5 commits into from
Oct 27, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions assets/css/give-admin-rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -1892,7 +1892,9 @@ h2.give-nav-tab-wrapper {
.give-nav-tab-wrapper > a {
width: 100%;
box-sizing: border-box;
margin: 0; }
margin: 0;
background-color: #ffffff;
border: 1px solid #cccccc; }
.give-nav-tab-wrapper > a:hover {
border-bottom: 1px solid #ccc; }
.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper {
Expand All @@ -1908,7 +1910,9 @@ h2.give-nav-tab-wrapper {
margin: 6px auto 0;
display: block; }
.give-nav-tab-wrapper div.give-sub-nav-tab-wrapper nav.give-sub-nav-tab {
top: 35px; } }
top: 35px; }
.give-mobile-hidden {
display: none; } }

.give-sub-nav-tab-wrapper {
position: relative;
Expand Down
2 changes: 1 addition & 1 deletion assets/css/give-admin-rtl.min.css

Large diffs are not rendered by default.

8 changes: 6 additions & 2 deletions assets/css/give-admin.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/css/give-admin.min.css

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion assets/js/admin/admin-scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -2374,7 +2374,9 @@ function give_render_responsive_tabs() {

jQuery.each($hide_tabs, function (index, $tab_link) {
$tab_link = jQuery($tab_link);
$tab_link.addClass('give-hidden');
if( ! $tab_link.hasClass( 'nav-tab-active' ) ) {
$tab_link.addClass('give-hidden');
}
$tab_link.clone().removeClass().appendTo($sub_tab_nav);
});

Expand Down
2 changes: 1 addition & 1 deletion assets/js/admin/admin-scripts.min.js

Large diffs are not rendered by default.

Loading