Client: ID column smaller

This commit is contained in:
Chocobozzz 2016-08-26 19:02:43 +02:00
parent 8889736127
commit 2149630437
3 changed files with 6 additions and 2 deletions

View File

@ -3,7 +3,7 @@
<table class="table table-hover"> <table class="table table-hover">
<thead> <thead>
<tr> <tr>
<th>ID</th> <th class="table-column-id">ID</th>
<th>Url</th> <th>Url</th>
<th>Score</th> <th>Score</th>
<th>Created Date</th> <th>Created Date</th>

View File

@ -3,7 +3,7 @@
<table class="table table-hover"> <table class="table table-hover">
<thead> <thead>
<tr> <tr>
<th>Id</th> <th class="table-column-id">ID</th>
<th>Username</th> <th>Username</th>
<th class="text-right">Remove</th> <th class="text-right">Remove</th>
</tr> </tr>

View File

@ -40,6 +40,10 @@ menu {
} }
} }
.table-column-id {
width: 200px;
}
footer { footer {
border-top: 1px solid rgba(0, 0, 0, 0.2); border-top: 1px solid rgba(0, 0, 0, 0.2);