Skip to content

Commit

Permalink
making more tables hoverable
Browse files Browse the repository at this point in the history
  • Loading branch information
ooemperor committed Feb 15, 2024
1 parent b309cb3 commit 4f8012a
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion codeGrader/frontend/admin/templates/exercise.html
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ <h2 class="accordion-header">
<div class="accordion-body">
<div>
{% if scores %}
<table class="table">
<table class="table table-hover">
<tr>
<th>
User
Expand Down
2 changes: 1 addition & 1 deletion codeGrader/frontend/admin/templates/profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ <h1 class="header1">Profile {{ name }}</h1>
<div class="row">
<form action="{{url_for('profile', id_ = id)}}" method="POST" class="core_content">
<div class="table-responsive" id="profile_data">
<table class="table">
<table class="table table-hover">
<tbody>
<tr>
<td>Name</td>
Expand Down
6 changes: 3 additions & 3 deletions codeGrader/frontend/admin/templates/subject.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ <h1 class="header1">Subject {{ name }}</h1>

<form action="{{url_for('subject', id_ = id)}}" method="POST" class="core_content">
<div class="table-responsive" id="subject_data">
<table class="table">
<table class="table table-hover">
<tbody>
<tr>
<td>Name</td>
Expand Down Expand Up @@ -130,7 +130,7 @@ <h2 class="accordion-header">
<div class="accordion-body">
<div>
{% if scores %}
<table class="table">
<table class="table table-hover">
<tr>
<th>
User
Expand Down Expand Up @@ -203,7 +203,7 @@ <h2 class="accordion-header">
<div class="accordion-body">
<div>
{% if memberships %}
<table class="table">
<table class="table table-hover">
<tr>
<th>
Username
Expand Down
8 changes: 4 additions & 4 deletions codeGrader/frontend/admin/templates/task.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ <h1 class="header1">Task {{ name }}</h1>
<div class="row">
<form action="{{url_for('task', id_ = id)}}" method="POST">
<div id="task_data">
<table class="table">
<table class="table table-hover">
<tbody>
<tr>
<td>Name</td>
Expand Down Expand Up @@ -289,7 +289,7 @@ <h2 class="accordion-header">
<div class="accordion-body">
<div>
{% if testcases %}
<table class="table">
<table class="table table-hover">
<tr>
<th>
Testcase_ID
Expand Down Expand Up @@ -388,7 +388,7 @@ <h2 class="accordion-header">
<div class="accordion-body">
<div>
{% if scores %}
<table class="table">
<table class="table table-hover">
<tr>
<th>
User
Expand Down Expand Up @@ -432,7 +432,7 @@ <h2 class="accordion-header">
<div class="accordion-body">
<div>
{% if submissions %}
<table class="table">
<table class="table table-hover">
<tr>
<th>
Submission_id
Expand Down
4 changes: 2 additions & 2 deletions codeGrader/frontend/admin/templates/user.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ <h1 class="header1">User {{ username }}</h1>
<div class="row">
<form action="{{url_for('user', id_ = id)}}" method="POST">
<div id="user_data">
<table class="table">
<table class="table table-hover">
<tbody>
<tr>
<td>Username</td>
Expand Down Expand Up @@ -194,7 +194,7 @@ <h2 class="accordion-header">
<div class="accordion-body">
<div>
{% if memberships %}
<table class="table">
<table class="table table-hover">
<tr>
<th>
Name
Expand Down
2 changes: 1 addition & 1 deletion codeGrader/frontend/admin/templates/users.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ <h1 class="h1">Users</h1>
</div>

<div class="container-fluid">
<table class="table table-hover">
<table class="table table-hover">
<thead>
<tr>
<th>Username</th>
Expand Down

0 comments on commit 4f8012a

Please sign in to comment.