Skip to content

Commit

Permalink
reverting mistake with hoverable tables
Browse files Browse the repository at this point in the history
  • Loading branch information
ooemperor committed Feb 15, 2024
1 parent 4f8012a commit b6e8312
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
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-hover">
<table class="table">
<tbody>
<tr>
<td>Name</td>
Expand Down
2 changes: 1 addition & 1 deletion 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-hover">
<table class="table">
<tbody>
<tr>
<td>Name</td>
Expand Down
2 changes: 1 addition & 1 deletion 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-hover">
<table class="table">
<tbody>
<tr>
<td>Name</td>
Expand Down
2 changes: 1 addition & 1 deletion 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-hover">
<table class="table">
<tbody>
<tr>
<td>Username</td>
Expand Down

0 comments on commit b6e8312

Please sign in to comment.