-
-
Notifications
You must be signed in to change notification settings - Fork 789
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
Issue for Popup Definitions #1156
Comments
no one know? |
As @richardbporter said in the discussion on #882, @equinusocio probably had problems reproducing this functionality of Sublime due to setting For code examples to fix (this |
@buildersbrewery thank you. |
Sublime has You can also use predefined variables as explained in the variables section on https://www.sublimetext.com/docs/3/minihtml.html. Compare below example (using Github's Primer palette of colors): <key>phantomCss</key><string>
html {
background-color: #e1e1e1;
color: #393939;
--bg: #e1e1e1;
--redish: #bd2c00;
--orangish: #ed6a43;
--yellowish: #ef9700;
--greenish: #55a532;
--cyanish: #0086b3;
--bluish: #183691;
--purplish: #a71d5d;
--brownish: #693a17;
}
a {
color: var(--cyanish);
text-decoration: underline;
}
b, strong {
font-weight: bold;
}
i, em {
font-style: italic;
}
h1 {
font-size: 2rem;
border-bottom: 1px solid color(var(--bg) blend(#393939 3%));
}
h2 {
font-size: 1.5rem;
border-bottom: 1px solid color(var(--bg) blend(#393939 3%));
}
h3 {
font-size: 1.25rem;
}
.error, .deleted {
background-color: color(var(--bg) blend(var(--redish) 50%));
}
.success, .inserted {
background-color: color(var(--bg) blend(var(--greenish) 50%));
}
.warning, .modified {
background-color: color(var(--bg) blend(var(--orangish) 50%));
}
</string>
<key>popupCss</key><string>
html {
background-color: #e1e1e1;
color: #393939;
--bg: #e1e1e1;
--redish: #bd2c00;
--orangish: #ed6a43;
--yellowish: #ef9700;
--greenish: #55a532;
--cyanish: #0086b3;
--bluish: #183691;
--purplish: #a71d5d;
--brownish: #693a17;
}
a {
color: var(--cyanish);
text-decoration: underline;
}
b, strong {
font-weight: bold;
}
i, em {
font-style: italic;
}
h1 {
font-size: 2rem;
border-bottom: 1px solid color(var(--bg) blend(#393939 3%));
}
h2 {
font-size: 1.5rem;
border-bottom: 1px solid color(var(--bg) blend(#393939 3%));
}
h3 {
font-size: 1.25rem;
}
.error, .deleted {
background-color: color(var(--bg) blend(var(--redish) 50%));
}
.success, .inserted {
background-color: color(var(--bg) blend(var(--greenish) 50%));
}
.warning, .modified {
background-color: color(var(--bg) blend(var(--orangish) 50%));
}
</string> |
Summary
Popup UI for Definition font style and background style is incorrect
Expected behavior
Modify the config to "theme": "Material-Theme-Palenight.sublime-theme",
The Popup UI is correct
Actual behavior
The default Theme "theme": "Material-Theme.sublime-theme",
Environment
The text was updated successfully, but these errors were encountered: