/**
* EXTREMELY HACKY
* Super hacky way to get transclusion and hover works
**/
#home-card-latestpatch .wikitable {
display: block;
overflow: visible;
}
#home-card-latestpatch .wikitable tbody {
display: block;
}
#home-card-latestpatch .wikitable th {
display: none;
}
#home-card-latestpatch .wikitable tr {
position: relative;
display: flex;
}
#home-card-latestpatch .wikitable tr > td:first-child {
width: 100%;
}
#home-card-latestpatch .wikitable tr > td:first-child:hover ~ td {
visibility: visible;
}
#home-card-latestpatch .wikitable tr > td:last-child {
position: absolute;
z-index: 2;
bottom: 100%;
padding: 15px var( --padding-page );
border: 1px solid;
border-color: var( --border-color-base );
margin-bottom: 10px;
background: var( --background-color-dp-08 );
border-radius: 12px;
box-shadow: 0 14px 28px rgba( 0, 0, 0, 0.06 ), 0 10px 10px rgba( 0, 0, 0, 0.06 );
user-select: none;
visibility: hidden;
}