Adding hover to table.

This commit is contained in:
sergiotarxz 2023-09-10 20:43:14 +02:00
parent 9e1aa5e67c
commit 2e05d4c318
2 changed files with 12 additions and 0 deletions

View File

@ -276,6 +276,11 @@ body {
border-collapse: collapse;
width: 100%;
table-layout: fixed; }
body div.page-contents table tr:hover {
background: blueviolet;
color: #f2eb8c; }
body div.page-contents table tr:hover th, body div.page-contents table tr:hover td {
border: 3px solid #f2eb8c; }
body div.page-contents table td, body div.page-contents table th {
font-size: 12px; }
body div.page-contents th, body div.page-contents td {

View File

@ -389,6 +389,13 @@ body {
border: 3px solid $background_div;
border-collapse: collapse;
width: 100%;
tr:hover {
background: $background_div;
color: $color_div;
th, td {
border: 3px solid $color_div;
}
}
td, th {
font-size: 12px;