/
githubmirror
/
wp-calypso
Обзор
Документация
Войти
/
githubmirror
/
wp-calypso
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
client/layout/loader.scss
27 строк
565 B
Omar Alshaker
Remove SCSS prelude feature for better performance - Take II (#111583)
15 июн 2026, 15:00
Не верифицирован
15 июн 2026, 15:00
6b78d1d
Код
Авторство
О чём код?
// If things take a bit to load... @import "calypso/assets/stylesheets/shared/functions/z-index"; .layout__loader { background: transparent; border-bottom: 1px solid transparent; height: var(--masterbar-height); margin-left: -10%; position: fixed; left: 50%; top: 0; width: 20%; z-index: z-index("root", ".layout__loader"); // The transition-delay avoids showing the loader // too often on faster connections. display: none; opacity: 0; transition: opacity 0.1s linear; transition-delay: 0.8s; &.is-active { display: block; opacity: 1; } }