summaryrefslogtreecommitdiffstats
path: root/settings/templates
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-10-12 03:51:01 -0700
committerThomas Müller <thomas.mueller@tmit.eu>2013-10-12 03:51:01 -0700
commit3f54e3c783274c4d6b9ccd06bf434fdf0529d324 (patch)
tree3ef0e64655f93811e3454b597ae1f0aaa4d18fb6 /settings/templates
parent8be9773c730aa51aa771e20cddced89baddf680d (diff)
parent1a05ed2f3822b5ba24471f7ddc63050a6948e9cf (diff)
downloadnextcloud-server-3f54e3c783274c4d6b9ccd06bf434fdf0529d324.tar.gz
nextcloud-server-3f54e3c783274c4d6b9ccd06bf434fdf0529d324.zip
Merge pull request #5299 from owncloud/settings-ie8-tablegridstyles
Fixed table grid styles for IE8
Diffstat (limited to 'settings/templates')
-rw-r--r--settings/templates/admin.php8
-rw-r--r--settings/templates/users.php2
2 files changed, 5 insertions, 5 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php
index c4782606e28..d51a22b72a4 100644
--- a/settings/templates/admin.php
+++ b/settings/templates/admin.php
@@ -118,7 +118,7 @@ if (!$_['internetconnectionworking']) {
<fieldset class="personalblock" id="shareAPI">
<h2><?php p($l->t('Sharing'));?></h2>
- <table class="shareAPI nostyle">
+ <table class="shareAPI">
<tr>
<td id="enable">
<input type="checkbox" name="shareapi_enabled" id="shareAPIEnabled"
@@ -176,7 +176,7 @@ if (!$_['internetconnectionworking']) {
<fieldset class="personalblock" id="security">
<h2><?php p($l->t('Security'));?></h2>
- <table class="nostyle">
+ <table>
<tr>
<td id="enable">
<input type="checkbox" name="forcessl" id="forcessl"
@@ -217,7 +217,7 @@ if (!$_['internetconnectionworking']) {
<?php endif;
endfor;?>
</select>
- <table id="log">
+ <table id="log" class="grid">
<?php foreach ($_['entries'] as $entry): ?>
<tr>
<td>
@@ -229,7 +229,7 @@ endfor;?>
<td>
<?php p($entry->message);?>
</td>
- <td>
+ <td class="date">
<?php if(is_int($entry->time)){
p(OC_Util::formatDate($entry->time));
} else {
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']): ?>