Adding hover to table.
This commit is contained in:
parent
9e1aa5e67c
commit
2e05d4c318
@ -276,6 +276,11 @@ body {
|
|||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
table-layout: fixed; }
|
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 {
|
body div.page-contents table td, body div.page-contents table th {
|
||||||
font-size: 12px; }
|
font-size: 12px; }
|
||||||
body div.page-contents th, body div.page-contents td {
|
body div.page-contents th, body div.page-contents td {
|
||||||
|
@ -389,6 +389,13 @@ body {
|
|||||||
border: 3px solid $background_div;
|
border: 3px solid $background_div;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
tr:hover {
|
||||||
|
background: $background_div;
|
||||||
|
color: $color_div;
|
||||||
|
th, td {
|
||||||
|
border: 3px solid $color_div;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
td, th {
|
td, th {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
|
Loading…
Reference in New Issue
Block a user