button/input columns style="width: 1px"

This commit is contained in:
Cody
2020-06-18 22:22:16 -07:00
parent 563345638a
commit 882412b8ff
17 changed files with 50 additions and 48 deletions

View File

@ -111,8 +111,8 @@ else
{
<Pager Items="@notifications">
<Header>
<th>&nbsp;</th>
<th>&nbsp;</th>
<th style="width: 1px;">&nbsp;</th>
<th style="width: 1px;">&nbsp;</th>
<th>From</th>
<th>Subject</th>
<th>Received</th>

View File

@ -33,7 +33,7 @@
<td>
<input class="form-control" @bind="@subject" readonly />
</td>
}
}
@if (title == "To")
{
<td>
@ -51,7 +51,7 @@
<input class="form-control" @bind="@createdon" readonly />
</td>
</tr>
}
}
@if (title == "From")
{
<tr>
@ -62,7 +62,7 @@
<textarea class="form-control" @bind="@body" rows="5" readonly />
</td>
</tr>
}
}
@if (title == "To")
{
<tr>
@ -73,7 +73,7 @@
<textarea class="form-control" @bind="@body" rows="5" />
</td>
</tr>
}
}
</table>