egroupware/filemanager/templates/default/tile.xet
Nathan Gray abb02c7b40 Add ability to store view in favorites, so tiles can be put on home.
Still some bugs in resizing with this in the home portlet.
2015-01-13 21:56:54 +00:00

30 lines
937 B
XML

<?xml version="1.0"?>
<!-- $Id$ -->
<overlay>
<!--
This is used as a tiled template for nextmatch. Note only 1 column, and
the vbox has both width and height explicitly defined. These are for the vbox,
and any spacing between should be done using its margins.
Also important is the tile class on the row, to get the proper display and
the column width="100%" to take the whole width
-->
<template id="filemanager.tile" template="" lang="" group="0" version="1.9.001">
<grid width="100%">
<columns>
<column width="100%"/>
</columns>
<rows>
<row class="th">
<nextmatch-header/>
</row>
<row class="tile $row_cont[class]">
<vbox class="file_tile" width="150px" height="110px">
<vfs-mime align="center" id="$row"/>
<vfs-name id="${row}[name]" no_lang="1" readonly="true"/>
<description id="${row}[comment]"/>
</vbox>
</row>
</rows>
</grid>
</template>
</overlay>