diff options
author | Vincent Petry <pvince81@owncloud.com> | 2013-10-11 00:15:32 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2013-10-11 00:16:41 +0200 |
commit | 75629a1f0088c248f4a29318188b329cbfc03ebb (patch) | |
tree | 29a77d0bef6edb2bacce090d402674ae15c5ba81 /apps | |
parent | 26c0007a5ff65a718abce63939b65de0cda9c7a1 (diff) | |
download | nextcloud-server-75629a1f0088c248f4a29318188b329cbfc03ebb.tar.gz nextcloud-server-75629a1f0088c248f4a29318188b329cbfc03ebb.zip |
Fixed delete icon alignment in IE8
Removed old inline CSS that forced every td to have position:static in
the files app. (#5056)
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/templates/index.php | 2 | ||||
-rw-r--r-- | apps/files_trashbin/templates/index.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index ebdca097e74..1c07d14ea8a 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -1,4 +1,4 @@ -<!--[if IE 8]><style>input[type="checkbox"]{padding:0;}table td{position:static !important;}</style><![endif]--> +<!--[if IE 8]><style>input[type="checkbox"]{padding:0;}</style><![endif]--> <div id="controls"> <?php print_unescaped($_['breadcrumb']); ?> <div class="actions creatable <?php if (!$_['isCreatable']):?>hidden<?php endif; ?> <?php if (isset($_['files']) and count($_['files'])==0):?>emptycontent<?php endif; ?>"> diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index 9b01a2589a5..17045313d6c 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -1,4 +1,4 @@ -<!--[if IE 8]><style>input[type="checkbox"]{padding:0;}table td{position:static !important;}</style><![endif]--> +<!--[if IE 8]><style>input[type="checkbox"]{padding:0;}</style><![endif]--> <div id="controls"> <?php print_unescaped($_['breadcrumb']); ?> <div id="file_action_panel"></div> |