diff options
author | Vincent Petry <pvince81@owncloud.com> | 2013-10-11 14:10:00 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2013-10-11 14:10:00 +0200 |
commit | 39b150921de06dceb06f45ba271ab97015f369c9 (patch) | |
tree | d20f83facab6554f1f4b5038efd4a9a4725abce5 /apps | |
parent | 75629a1f0088c248f4a29318188b329cbfc03ebb (diff) | |
download | nextcloud-server-39b150921de06dceb06f45ba271ab97015f369c9.tar.gz nextcloud-server-39b150921de06dceb06f45ba271ab97015f369c9.zip |
Moved IE8 inline styles in files.css
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/css/files.css | 3 | ||||
-rw-r--r-- | apps/files/templates/index.php | 1 | ||||
-rw-r--r-- | apps/files_trashbin/templates/index.php | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index cbf34279f54..7c6778af62f 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -178,6 +178,9 @@ table td.filename .nametext { table td.filename .uploadtext { font-weight:normal; margin-left:.5em; } table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; } +.ie8 input[type="checkbox"]{ + padding: 0; +} /* File checkboxes */ #fileList tr td.filename>input[type="checkbox"]:first-child { diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 1c07d14ea8a..32a59f1e1a6 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -1,4 +1,3 @@ -<!--[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 17045313d6c..15ba074e45e 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -1,4 +1,3 @@ -<!--[if IE 8]><style>input[type="checkbox"]{padding:0;}</style><![endif]--> <div id="controls"> <?php print_unescaped($_['breadcrumb']); ?> <div id="file_action_panel"></div> |