Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unknown -webkit selectors being deleted #45

Open
gastrodon opened this issue Nov 2, 2018 · 1 comment
Open

unknown -webkit selectors being deleted #45

gastrodon opened this issue Nov 2, 2018 · 1 comment

Comments

@gastrodon
Copy link

gastrodon commented Nov 2, 2018

After combing, unknown -webkit selectors are being removed, with no visible way of changing this behavior

for instance

#editor {
  flex-grow  : 1;
  order      : 2;
  color: #ffffff;
  background: #00152d;
  -webkit-user-select: none;
  -webkit-app-region: drag;
}

becomes

#editor {
  flex-grow  : 1;
  order      : 2;
  color: #ffffff;
  background: #00152d;
}
@Bazowsky
Copy link

Bazowsky commented Dec 3, 2020

Same for other "unknown" properties.
Like a

html {scroll-behavior: smooth;}
h1::first-letter, h2::first-letter, h3::first-letter, h4::first-letter {
color: #f72377;
}

becomes

html {}

h1::first-letter,
h2::first-letter,
h3::first-letter,
h4::first-letter {
  color : #f72377;
}

Last commits on Oct 26, 2017, seems there is no way to resolve problem by author.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants