diff options
author | Vincent Petry <pvince81@owncloud.com> | 2013-10-11 15:58:15 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2013-10-11 15:58:15 +0200 |
commit | 1a05ed2f3822b5ba24471f7ddc63050a6948e9cf (patch) | |
tree | 27685df3944a93f4e3e5760320d9ac18df8386bb /settings/templates/users.php | |
parent | 034968c61243e8335a5e83c4395ec10a094fd764 (diff) | |
download | nextcloud-server-1a05ed2f3822b5ba24471f7ddc63050a6948e9cf.tar.gz nextcloud-server-1a05ed2f3822b5ba24471f7ddc63050a6948e9cf.zip |
Fixed table grid styles for IE8
The selector :not() isn't supported in IE8, replaced it with the "grid"
class.
- Fixes the log table style in IE8 (#5057)
- Fixes the users table layout bug in IE8
Diffstat (limited to 'settings/templates/users.php')
-rw-r--r-- | settings/templates/users.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/templates/users.php b/settings/templates/users.php index 747d052a7bd..b556ef4b92e 100644 --- a/settings/templates/users.php +++ b/settings/templates/users.php @@ -78,7 +78,7 @@ $_['subadmingroups'] = array_flip($items); </div> </div> -<table class="hascontrols" data-groups="<?php p(json_encode($allGroups));?>"> +<table class="hascontrols grid" data-groups="<?php p(json_encode($allGroups));?>"> <thead> <tr> <?php if ($_['enableAvatars']): ?> |