diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2013-02-04 18:30:49 +0100 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2013-02-04 18:30:49 +0100 |
commit | b06ac67e07512fbf1b12e586bc73d7569aec9e24 (patch) | |
tree | a27893340e757803ea5117b2c6a48c2be9128889 /apps | |
parent | 46e10407f7aef7850e56da51fc81311c6b77acaa (diff) | |
download | nextcloud-server-b06ac67e07512fbf1b12e586bc73d7569aec9e24.tar.gz nextcloud-server-b06ac67e07512fbf1b12e586bc73d7569aec9e24.zip |
Add 'hascontrols' class for content with fixed topbar.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/css/files.css | 4 | ||||
-rw-r--r-- | apps/files/templates/index.php | 18 |
2 files changed, 11 insertions, 11 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 0a12439c359..f37ac4c262a 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -3,7 +3,7 @@ See the COPYING-README file. */ /* FILE MENU */ -.actions { padding:.3em; float:left; height:2em; } +.actions { padding:.3em; float:left; height:2em; width: 100%; } .actions input, .actions button, .actions .button { margin:0; float:left; } #new { @@ -23,7 +23,7 @@ #new>ul>li>p { cursor:pointer; } #new>ul>li>form>input { padding:0.3em; margin:-0.3em; } -#trash { height:17px; margin:0.3em 0.3em 0.3em 1em; z-index:1010; float: right; } +#trash { height:17px; margin: 0 1em; z-index:1010; float: right; } #upload { height:27px; padding:0; margin-left:0.2em; overflow:hidden; diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 9c12067ae95..0b4aa21eac3 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -35,18 +35,18 @@ <a href="#" class="svg" onclick="return false;"></a> </form> </div> - </div> - <?php if ($_['trash'] ): ?> + <?php if ($_['trash'] ): ?> <div id="trash" class="button"> <a><?php echo $l->t('Trash');?></a> </div> - <?php endif; ?> - <div id="uploadprogresswrapper"> - <div id="uploadprogressbar"></div> - <input type="button" class="stop" style="display:none" - value="<?php echo $l->t('Cancel upload');?>" - onclick="javascript:Files.cancelUploads();" + <?php endif; ?> + <div id="uploadprogresswrapper"> + <div id="uploadprogressbar"></div> + <input type="button" class="stop" style="display:none" + value="<?php echo $l->t('Cancel upload');?>" + onclick="javascript:Files.cancelUploads();" /> + </div> </div> <div id="file_action_panel"></div> <?php else:?> @@ -59,7 +59,7 @@ <div id="emptyfolder"><?php echo $l->t('Nothing in here. Upload something!')?></div> <?php endif; ?> -<table> +<table class="hascontrols"> <thead> <tr> <th id='headerName'> |