Merge pull request #628 from thabaum/dashboard-table-col-size

Fix Dashboard button/input table col size
This commit is contained in:
Shaun Walker
2020-06-19 17:29:27 -04:00
committed by GitHub
19 changed files with 55 additions and 53 deletions

View File

@ -32,7 +32,7 @@ else
<label for="Name" class="control-label">Password: </label>
</td>
<td>
<input type="password" class="form-control" @bind="@password" />
<input type="password" class="form-control" @bind="@password" autocomplete="new-password" />
</td>
</tr>
<tr>
@ -40,7 +40,7 @@ else
<label for="Name" class="control-label">Confirm Password: </label>
</td>
<td>
<input type="password" class="form-control" @bind="@confirm" />
<input type="password" class="form-control" @bind="@confirm" autocomplete="new-password" />
</td>
</tr>
<tr>
@ -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>