aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver
diff options
context:
space:
mode:
authorVjacheslav Trushkin <cyberalien@gmail.com>2013-10-21 15:17:48 +0300
committerVjacheslav Trushkin <cyberalien@gmail.com>2013-10-24 18:36:14 +0300
commite660c1a5543c96d299b477731dedf3d144b685a0 (patch)
tree8709db3707ae98767c63dea91a3d3992a4653109 /phpBB/styles/prosilver
parentb196c9e8fff17703a37ed4b8ceea8b0f7a3eb625 (diff)
downloadforums-e660c1a5543c96d299b477731dedf3d144b685a0.tar
forums-e660c1a5543c96d299b477731dedf3d144b685a0.tar.gz
forums-e660c1a5543c96d299b477731dedf3d144b685a0.tar.bz2
forums-e660c1a5543c96d299b477731dedf3d144b685a0.tar.xz
forums-e660c1a5543c96d299b477731dedf3d144b685a0.zip
[ticket/11956] Fix member list page
PHPBB3-11956
Diffstat (limited to 'phpBB/styles/prosilver')
-rw-r--r--phpBB/styles/prosilver/template/forum_fn.js6
-rw-r--r--phpBB/styles/prosilver/theme/responsive.css4
2 files changed, 9 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/forum_fn.js b/phpBB/styles/prosilver/template/forum_fn.js
index a2758de9dc..b71ff45a27 100644
--- a/phpBB/styles/prosilver/template/forum_fn.js
+++ b/phpBB/styles/prosilver/template/forum_fn.js
@@ -546,7 +546,7 @@ function insert_single_user(formId, user)
i, headersLength;
// Find each header
- th.each(function() {
+ th.each(function(column) {
var cell = $(this),
colspan = parseInt(cell.attr('colspan')),
dfn = cell.attr('data-dfn'),
@@ -558,6 +558,10 @@ function insert_single_user(formId, user)
headers.push(text);
}
totalHeaders ++;
+
+ if (dfn && !column) {
+ $this.addClass('show-header');
+ }
});
headersLength = headers.length;
diff --git a/phpBB/styles/prosilver/theme/responsive.css b/phpBB/styles/prosilver/theme/responsive.css
index c15d9bee4e..8578e50d1c 100644
--- a/phpBB/styles/prosilver/theme/responsive.css
+++ b/phpBB/styles/prosilver/theme/responsive.css
@@ -262,6 +262,10 @@ table.responsive.show-header thead, table.responsive.show-header th:first-child
text-align: left !important;
}
+table.responsive.show-header th:first-child span.rank-img {
+ display: none;
+}
+
table.responsive tr {
margin: 2px 0;
}