diff options
author | Bernhard Posselt <nukeawhale@gmail.com> | 2013-03-04 09:00:05 -0800 |
---|---|---|
committer | Bernhard Posselt <nukeawhale@gmail.com> | 2013-03-04 09:00:05 -0800 |
commit | 8c8423e766dc2dedb5fe22ef6a86fd67fc737d79 (patch) | |
tree | 44737c7c34b510aacbcc66f57ae4c8e318d7b620 | |
parent | ef70978524ad0f00c3e5f03a489753547afee45a (diff) | |
parent | d9c11a93c6af2fb8b0a042d6cb72fd6e065a8784 (diff) | |
download | nextcloud-server-8c8423e766dc2dedb5fe22ef6a86fd67fc737d79.tar.gz nextcloud-server-8c8423e766dc2dedb5fe22ef6a86fd67fc737d79.zip |
Merge pull request #2076 from owncloud/filestable-specificity
fix files table CSS specificity issue causing multiselect bar overlap
-rw-r--r-- | apps/files/css/files.css | 2 | ||||
-rw-r--r-- | apps/files_trashbin/templates/index.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index fd06c61ce2c..4d2b16e6f1c 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -73,7 +73,7 @@ table th#headerSize, table td.filesize { min-width:3em; padding:0 1em; text-alig table th#headerDate, table td.date { min-width:11em; padding:0 .1em 0 1em; text-align:left; } /* Multiselect bar */ -table.multiselect { top:63px; } +#filestable.multiselect { top:63px; } table.multiselect thead { position:fixed; top:82px; z-index:1; -moz-box-sizing: border-box; box-sizing: border-box; left: 0; padding-left: 64px; width:100%; } table.multiselect thead th { background:rgba(230,230,230,.8); color:#000; font-weight:bold; border-bottom:0; } table.multiselect #headerName { width: 100%; } diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index 4c865d8981c..cb5edaa2c91 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -9,7 +9,7 @@ <div id="emptyfolder"><?php p($l->t('Nothing in here. Your trash bin is empty!'))?></div> <?php endif; ?> -<table> +<table id="filestable"> <thead> <tr> <th id='headerName'> |