2017-01-13 16:31:40 +01:00
|
|
|
@using Yavsc.ViewModels.UserFiles
|
|
|
|
|
@model UserDirectoryInfo
|
2019-09-09 03:19:53 +01:00
|
|
|
|
2017-01-13 16:31:40 +01:00
|
|
|
<style>
|
|
|
|
|
tr.fileheaders th {
|
|
|
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
|
font-style: italic;
|
|
|
|
|
}
|
|
|
|
|
tr.fileinfo td {
|
2019-09-09 03:19:53 +01:00
|
|
|
padding: .5em;
|
2017-01-13 16:31:40 +01:00
|
|
|
border-bottom: 1px solid #ddd;
|
|
|
|
|
}
|
2019-09-09 03:19:53 +01:00
|
|
|
tr.fileinfo:nth-child(even) {background-color: #f2f2f2}
|
|
|
|
|
tr.fileinfo:hover {background-color: #f5f5f5}
|
|
|
|
|
.curdir button { font-weigth: bold; }
|
|
|
|
|
.subdirs button { font-weigth: bold; color: #385) }
|
2017-01-13 16:31:40 +01:00
|
|
|
</style>
|
2019-09-09 03:19:53 +01:00
|
|
|
<div class="dirinfo" data-owner="@Model.UserName" data-path="@Model.SubPath">
|