CSS fixes for Series grid.
This commit is contained in:
parent
a330348c8e
commit
e8ad13937a
|
@ -59,6 +59,11 @@
|
||||||
{
|
{
|
||||||
background-color: #065EFE;
|
background-color: #065EFE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.commandsColumn
|
||||||
|
{
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
@section ActionMenu{
|
@section ActionMenu{
|
||||||
<ul class="sub-menu">
|
<ul class="sub-menu">
|
||||||
|
@ -75,7 +80,7 @@
|
||||||
<col style="width:100px" />
|
<col style="width:100px" />
|
||||||
<col style="width:100px" />
|
<col style="width:100px" />
|
||||||
<col style="width:140px" />
|
<col style="width:140px" />
|
||||||
<col style="width:100px" />
|
<col style="width:70px" />
|
||||||
</colgroup>
|
</colgroup>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Title</th>
|
<th>Title</th>
|
||||||
|
@ -87,7 +92,7 @@
|
||||||
|
|
||||||
@*Commands Column*@
|
@*Commands Column*@
|
||||||
<th>
|
<th>
|
||||||
Commands
|
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
@foreach (var series in Model)
|
@foreach (var series in Model)
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
@*Commands Column*@
|
@*Commands Column*@
|
||||||
<td>
|
<td class="commandsColumn">
|
||||||
<img src="../../Content/Images/Rename.png" class="editButton" value="@Model.SeriesId" rel="@Model.Title" />
|
<img src="../../Content/Images/Rename.png" class="editButton" value="@Model.SeriesId" rel="@Model.Title" />
|
||||||
<img src="../../Content/Images/Delete.png" class="deleteButton" value="@Model.SeriesId" rel="@Model.Title" />
|
<img src="../../Content/Images/Delete.png" class="deleteButton" value="@Model.SeriesId" rel="@Model.Title" />
|
||||||
@*<div class="editButton" value="@Model.SeriesId" rel="@Model.Title">Edit</div>
|
@*<div class="editButton" value="@Model.SeriesId" rel="@Model.Title">Edit</div>
|
||||||
|
|
Loading…
Reference in New Issue