Шаблон:Плавающая шапка таблицы/styles.css

Материал из Тептар — свободной энциклопедии
< Шаблон:Плавающая шапка таблицы
Версия от 06:47, 23 февраля 2022; Adam (обсуждение | вклад) (Новая страница: «.ts-stickytableheader tr:first-child th { position: relative; position: sticky; top: 0; z-index: 1; } .ts-stickytableheader tr:first-child th:after { width: 100%; height: 100%; position: absolute; z-index: -1; top: -1px; left: -1px; border: 1px solid #a2a9b1; content: ''; } →‎Modern Vector: @media (min-width: 721px) { html.vector-sticky-header-enabled .ts-stickytableheader tr:first-child th { top: 51px; transition: top 250ms linear; }...»)
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)
Перейти к навигации Перейти к поиску
.ts-stickytableheader tr:first-child th {
	position: relative;
	position: sticky;
	top: 0;
	z-index: 1;
}

.ts-stickytableheader tr:first-child th:after {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	top: -1px;
	left: -1px;
	border: 1px solid #a2a9b1;
	content: '';
}

/* Modern Vector */

@media (min-width: 721px) {
	html.vector-sticky-header-enabled .ts-stickytableheader tr:first-child th {
		top: 51px;
		transition: top 250ms linear;
	}
	
	html.vector-sticky-header-enabled body.uls-dialog-sticky-hide .ts-stickytableheader tr:first-child th {
		top: 0;
	}
}

/* [[Категория:Шаблоны:Подстраницы CSS]] */