diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2013-02-06 08:13:45 -0800 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2013-02-06 08:13:45 -0800 |
commit | 3879e5d9c513bf76b3bf11fc3d9e0ab9e23d784b (patch) | |
tree | f42c13762cdcb6f98fa7b6a4ebd9714a85db294a /settings | |
parent | 09a4424b1f9458bc0ee57c3b5f5c8a2d6a6c3c77 (diff) | |
parent | 2d77c7c0fdc49e4386994117eef35da2ad12aa4d (diff) | |
download | nextcloud-server-3879e5d9c513bf76b3bf11fc3d9e0ab9e23d784b.tar.gz nextcloud-server-3879e5d9c513bf76b3bf11fc3d9e0ab9e23d784b.zip |
Merge pull request #1428 from owncloud/content_positioning
Fix leftcontent positioning. Ref #1255
Diffstat (limited to 'settings')
-rw-r--r-- | settings/css/settings.css | 1 | ||||
-rw-r--r-- | settings/templates/apps.php | 2 | ||||
-rw-r--r-- | settings/templates/users.php | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css index e722cca91ee..9dd17daaeb7 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -33,7 +33,6 @@ tr:hover>td.password>span, tr:hover>td.displayName>span { margin:0; cursor:point tr:hover>td.remove>a, tr:hover>td.password>img,tr:hover>td.displayName>img, tr:hover>td.quota>img { visibility:visible; cursor:pointer; } tr:hover>td.remove>a { float:right; } li.selected { background-color:#ddd; } -#content>table:not(.nostyle) { margin-top:3em; } table:not(.nostyle) { width:100%; } #rightcontent { padding-left: 1em; } div.quota { float:right; display:block; position:absolute; right:25em; top:0; } diff --git a/settings/templates/apps.php b/settings/templates/apps.php index 3f0d2a9d1c6..ed1232ac322 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -10,7 +10,7 @@ <a class="button" target="_blank" href="http://owncloud.org/dev"><?php echo $l->t('Add your App');?></a> <a class="button" target="_blank" href="http://apps.owncloud.com"><?php echo $l->t('More Apps');?></a> </div> -<ul id="leftcontent" class="applist"> +<ul id="leftcontent" class="applist hascontrols"> <?php foreach($_['apps'] as $app):?> <li <?php if($app['active']) echo 'class="active"'?> data-id="<?php echo $app['id'] ?>" <?php if ( isset( $app['ocs_id'] ) ) { echo "data-id-ocs=\"{$app['ocs_id']}\""; } ?> data-type="<?php echo $app['internal'] ? 'internal' : 'external' ?>" data-installed="1"> diff --git a/settings/templates/users.php b/settings/templates/users.php index 4d7c29678ce..b3cab526947 100644 --- a/settings/templates/users.php +++ b/settings/templates/users.php @@ -73,7 +73,7 @@ $_['subadmingroups'] = array_flip($items); </div> </div> -<table data-groups="<?php echo implode(', ', $allGroups);?>"> +<table class="hascontrols" data-groups="<?php echo implode(', ', $allGroups);?>"> <thead> <tr> <th id='headerName'><?php echo $l->t('Login Name')?></th> |