From e2fd0bbf026631c05874f816e6d8d56eb6a23293 Mon Sep 17 00:00:00 2001
From: Arthur Schiwon <blizzz@owncloud.com>
Date: Thu, 29 Mar 2012 18:16:41 +0200
Subject: [PATCH] IE 8: fix appeareance of checkboxes on login and files pages

---
 core/templates/login.php  | 1 +
 files/templates/index.php | 1 +
 2 files changed, 2 insertions(+)

diff --git a/core/templates/login.php b/core/templates/login.php
index 6c0a7a1222..82222c8212 100644
--- a/core/templates/login.php
+++ b/core/templates/login.php
@@ -1,3 +1,4 @@
+<!--[if IE 8]><style>input[type="checkbox"]{padding:0;}</style><![endif]-->
 <form action="index.php" method="post">
 	<fieldset>
 		<?php if(!empty($_['redirect'])) { echo '<input type="hidden" name="redirect_url" value="'.$_['redirect'].'" />'; } ?>
diff --git a/files/templates/index.php b/files/templates/index.php
index da1e58ce13..418a170fec 100644
--- a/files/templates/index.php
+++ b/files/templates/index.php
@@ -1,3 +1,4 @@
+<!--[if IE 8]><style>input[type="checkbox"]{padding:0;}table td{position:static !important;}</style><![endif]-->
 <div id="controls">
 	<?php echo($_['breadcrumb']); ?>
 	<?php if (!isset($_['readonly']) || !$_['readonly']):?>
-- 
GitLab