/
lostSun
/
project-client-server-apps
Обзор
Документация
Войти
/
lostSun
/
project-client-server-apps
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/tailwindcss/src/util/applyImportantSelector.js
26 строк
774 B
1lostsun
initial commit
05 май 2025, 11:35
05 май 2025, 11:35
fe8f535
Код
Авторство
О чём код?
import parser from 'postcss-selector-parser' import { movePseudos } from './pseudoElements' export function applyImportantSelector(selector, important) { let sel = parser().astSync(selector) sel.each((sel) => { // For nesting, we only need to wrap a selector with :is() if it has a top-level combinator, // e.g. `.dark .text-white`, to be independent of DOM order. Any other selector, including // combinators inside of pseudos like `:where()`, are ok to nest. let shouldWrap = sel.nodes.some((node) => node.type === 'combinator') if (shouldWrap) { sel.nodes = [ parser.pseudo({ value: ':is', nodes: [sel.clone()], }), ] } movePseudos(sel) }) return `${important} ${sel.toString()}` }