(Новая страница: «.home-onthisday-section .home-card__label { margin-top: 0.8rem; }») |
F.cortez (обсуждение | вклад) Нет описания правки |
||
(не показано 25 промежуточных версий 2 участников) | |||
Строка 1: | Строка 1: | ||
.home- | /** | ||
margin- | * 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 { | |||
opacity: 1; | |||
visibility: visible; | |||
transform: translateY( -10px ); | |||
} | |||
#home-card-latestpatch .wikitable tr > td:last-child { | |||
position: absolute; | |||
z-index: 2; | |||
bottom: 100%; | |||
padding: 0; | |||
background: rgba(23, 32, 38, 1); | |||
border-radius: 8px; | |||
/* box-shadow: var( --box-shadow-dialog ); */ | |||
user-select: none; | |||
opacity: 0; | |||
visibility: hidden; | |||
transition: 250ms ease; | |||
transition-property: opacity, transform; | |||
} | |||
#home-card-latestpatch .wikitable tr > td:last-child figure { | |||
float: none; | |||
margin: 0; | |||
width: 100%; | |||
} | |||
#home-card-latestpatch .wikitable tr > td:last-child figure img { | |||
width: 100%; | |||
} | |||
#home-card-latestpatch .wikitable tr > td:last-child figure figcaption { | |||
display: none; | |||
} | |||
#home-card-latestpatch .wikitable tr > td:last-child i { | |||
padding: 1rem; | |||
display: block; | |||
} | } |
Текущая версия от 05:00, 24 июля 2024
/**
* 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 {
opacity: 1;
visibility: visible;
transform: translateY( -10px );
}
#home-card-latestpatch .wikitable tr > td:last-child {
position: absolute;
z-index: 2;
bottom: 100%;
padding: 0;
background: rgba(23, 32, 38, 1);
border-radius: 8px;
/* box-shadow: var( --box-shadow-dialog ); */
user-select: none;
opacity: 0;
visibility: hidden;
transition: 250ms ease;
transition-property: opacity, transform;
}
#home-card-latestpatch .wikitable tr > td:last-child figure {
float: none;
margin: 0;
width: 100%;
}
#home-card-latestpatch .wikitable tr > td:last-child figure img {
width: 100%;
}
#home-card-latestpatch .wikitable tr > td:last-child figure figcaption {
display: none;
}
#home-card-latestpatch .wikitable tr > td:last-child i {
padding: 1rem;
display: block;
}