메뉴 여닫기
개인 메뉴 토글
로그인하지 않음
만약 지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

:Main page/latestpatch/styles.css

이터널리턴 이스포츠 위키
Mongsil (토론 | 기여)님의 2024년 10월 15일 (화) 03:39 판 (새 문서: →‎* * EXTREMELY HACKY * Super hacky way to get transclusion and hover works *: #home-card-latestpatch .citizen-overflow-content, #home-card-latestpatch .wikitable { overflow: visible; } #home-card-latestpatch .wikitable, #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 { w...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
/**
 * EXTREMELY HACKY
 * Super hacky way to get transclusion and hover works
**/
#home-card-latestpatch .citizen-overflow-content,
#home-card-latestpatch .wikitable {
	overflow: visible;
}

#home-card-latestpatch .wikitable,
#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( -16px );
}

#home-card-latestpatch .wikitable tr > td:last-child {
	position: absolute;
	z-index: 2;
	bottom: 100%;
	padding: 0;
	background: var( --color-surface-1 );
	border-radius: var( --border-radius--medium );
	box-shadow: var( --box-shadow-dialog );
	user-select: none;
	opacity: 0;
	visibility: hidden;
	transition: var( --transition-menu );
	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 > a {
	display: block;
}

#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: var( --space-md );
    display: block;
}