Browse Source

Merge branch 'refactoring' of git://anongit.kde.org/owncloud into refactoring

tags/v3.0
Robin Appelman 13 years ago
parent
commit
87ebd6700d
2 changed files with 49 additions and 0 deletions
  1. 22
    0
      admin/css/apps.css
  2. 27
    0
      admin/templates/app.php

+ 22
- 0
admin/css/apps.css View File

@@ -40,3 +40,25 @@ table td.name a
font-size: 0.8em;
}

.description
{
padding: 6px;
text-decoration: none;
color: #666666;
font-size: 0.9em;
}


.install a {
padding:0.2em 0.5em;
border:1px solid #ddd;
-moz-border-radius:15px;
-webkit-border-radius:15px;
border-radius:15px;
text-decoration: none;
font-size:1.5em; color:#666666;
background-color:#F0F0F0;
}
.install a:hover {
background-color:#DDDDDD;
}

+ 27
- 0
admin/templates/app.php View File

@@ -0,0 +1,27 @@
<?php
/*
* Template for Apps
*/
$app=$_['app'];
?>
<h1><?php echo $app["name"]; ?></h1>
<?php echo('<span class="type">'.$app['typename'].'</span>'); ?><br />
<span class="date"><?php echo OC_UTIL::formatdate($app["changed"]); ?></span><br />


<table cellspacing="6" border="0" width="100%">
<tr>
<td width="1" valign="top">
<?php if($app["preview1"]<>"") { echo('<img class="preview" border="0" src="'.$app["preview1"].'" /><br />'); } ?>
<?php if($app["preview2"]<>"") { echo('<img class="preview" border="0" src="'.$app["preview2"].'" /><br />'); } ?>
<?php if($app["preview3"]<>"") { echo('<img class="preview" border="0" src="'.$app["preview3"].'" /><br />'); } ?>
</td>
<td class="description" valign="top">
<?php echo $app["description"]; ?>
<br />
<?php echo('<a class="description" href="'.$app["detailpage"].'">read more</a><br />'); ?>
</td>
<td width="1" valign="top" class="install"><a href="">INSTALL</a></td>
</tr>
</table>


Loading…
Cancel
Save