mirror of
https://github.com/OpenMW/openmw.git
synced 2025-10-18 11:16:37 +00:00
docs - add table hover highlight and increase max width
This commit is contained in:
parent
49a651761f
commit
36941bf4e9
1 changed files with 13 additions and 1 deletions
|
@ -22,3 +22,15 @@ code {
|
||||||
table th {
|
table th {
|
||||||
font-weight: 600 !important;
|
font-weight: 600 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Highlight non-header rows on hover */
|
||||||
|
tbody tr:hover {
|
||||||
|
background-color: hsl(var(--muted));
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Increase maximum width for docs, default is quite narrow at 1400px max */
|
||||||
|
@media (min-width: 1400px) {
|
||||||
|
.container {
|
||||||
|
max-width: 2000px !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue