Use constructed stylesheet to prevent chrome from shitting itself when
you open element picker
This commit is contained in:
parent
1e467ac6e1
commit
472aad52e1
@ -17,13 +17,11 @@ export const applyTheme = async (input) => {
|
||||
|
||||
// Assuming that "worst case scenario background" is panel background since it's the most likely one
|
||||
const themes3 = init(extraRules, extraRules[0].directives['--bg'].split('|')[1].trim())
|
||||
const head = document.head
|
||||
const body = document.body
|
||||
body.classList.add('hidden')
|
||||
|
||||
const styleEl = document.createElement('style')
|
||||
head.appendChild(styleEl)
|
||||
const styleSheet = styleEl.sheet
|
||||
const styleSheet = new CSSStyleSheet()
|
||||
document.adoptedStyleSheets = [styleSheet]
|
||||
body.classList.add('hidden')
|
||||
|
||||
getCssRules(themes3.eager, themes3.staticVars).forEach(rule => {
|
||||
// Hacks to support multiple selectors on same component
|
||||
|
@ -448,7 +448,7 @@ export const init = (extraRuleset, ultimateBackgroundColor) => {
|
||||
const t0 = performance.now()
|
||||
const combinations = processInnerComponent(components.Root)
|
||||
const t1 = performance.now()
|
||||
console.debug('Tree tranveral took ' + (t1 - t0) + ' ms')
|
||||
console.debug('Tree traveral took ' + (t1 - t0) + ' ms')
|
||||
|
||||
const result = combinations.map((combination) => {
|
||||
if (combination.lazy) {
|
||||
|
Loading…
Reference in New Issue
Block a user