diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-03-04 01:43:32 -0800 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-03-04 01:43:32 -0800 |
commit | b0be84d6d3bfdbd6e1032555c7bd87e2782d7a02 (patch) | |
tree | 4d39a913c094639f28c20ddb61b24632cf8e09e3 /apps | |
parent | 36a1bcb73251e9fade635431f29a336ccb231115 (diff) | |
parent | d3ddf03687a3e55df10e4c93471a01a366ea1d44 (diff) | |
download | nextcloud-server-b0be84d6d3bfdbd6e1032555c7bd87e2782d7a02.tar.gz nextcloud-server-b0be84d6d3bfdbd6e1032555c7bd87e2782d7a02.zip |
Merge pull request #2065 from owncloud/files_datepicker
Datepicker height fixed.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/css/files.css | 2 | ||||
-rw-r--r-- | apps/files/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 cd339ad26a5..be0f4203cd0 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -55,7 +55,7 @@ font-size:1.5em; font-weight:bold; color:#888; text-shadow:#fff 0 1px 0; } -table { position:relative; top:37px; width:100%; } +#filestable { position: relative; top:37px; width:100%; } tbody tr { background-color:#fff; height:2.5em; } tbody tr:hover, tbody tr:active, tbody tr.selected { background-color:#f8f8f8; } tbody tr.selected { background-color:#eee; } diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 78c0901c110..a53df4e2d3e 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -60,7 +60,7 @@ <div id="emptyfolder"><?php p($l->t('Nothing in here. Upload something!'))?></div> <?php endif; ?> -<table> +<table id="filestable"> <thead> <tr> <th id='headerName'> |