Skip to content

Commit

Permalink
Table fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
stiffix committed Jan 11, 2016
1 parent 0b89df0 commit a587d7b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions public/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,10 @@ html {
background-color: lightgrey;
}

thead tr.row{
padding: 15px 10px;
}

.border_right {
border-right: 1px solid darkgrey;
}
Expand Down
8 changes: 4 additions & 4 deletions resources/views/users/grading.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
@if(Auth::user()->hasRole(\App\Models\User::TEACHER_ROLE))
<table class="center_elements table-striped table_not_grading_teacher col-xs-12">
<thead>
<tr>
<tr class="row">
<th class="border_right col-xs-6">Názov článku</th>
<th class="col-xs-6 text-center">Hodnotenie</th>
</tr>
Expand All @@ -45,7 +45,7 @@
@else
<table class="center_elements table-striped table_not_grading_student col-xs-12">
<thead>
<tr>
<tr class="row">
<th class="col-xs-12">Názov článku</th>
</tr>
</thead>
Expand All @@ -63,7 +63,7 @@
@if(Auth::user()->hasRole(\App\Models\User::TEACHER_ROLE))
<table class="center_elements table-striped table_grades col-xs-12">
<thead>
<tr>
<tr class="row">
<th class="border_right col-xs-6">Meno a priezvisko</th>
<th class="col-xs-6 text-center">Hodnotenie</th>
</tr>
Expand All @@ -86,7 +86,7 @@
@else
<table class="center_elements table-striped table_grades col-xs-12">
<thead>
<tr>
<tr class="row">
<th class="border_right col-xs-6">Názov článku</th>
<th class="col-xs-6 text-center">Hodnotenie</th>
</tr>
Expand Down

0 comments on commit a587d7b

Please sign in to comment.