-
Notifications
You must be signed in to change notification settings - Fork 251
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
Text rendering is altered #708
Comments
Hi @ghivert, It's a styling issue. What styles do you have in |
/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed and saved.
*
* Add your own CSS or Less to fully customize Atom.
* If you are unfamiliar with Less, you can read more about it here:
* http://lesscss.org
*/
/*
* Examples
* (To see them, uncomment and save)
*/
// style the background color of the tree view
.tree-view {
// background-color: whitesmoke;
}
// style the background and foreground colors on the atom-text-editor-element itself
atom-text-editor {
// color: white;
// background-color: hsl(180, 24%, 12%);
text-rendering: optimizeLegibility;
}
// To style other content in the text editor's shadow DOM, use the ::shadow expression
atom-text-editor.cursor {
// border-color: red;
}
atom-text-editor .vertical-scrollbar,
atom-text-editor.editor .vertical-scrollbar {
opacity: 0;
width: 0;
}
.syntax--comment {
font-style: normal;
}
atom-text-editor .syntax--comment {
font-style: normal;
}
[data-font='hasklig-medium'] atom-text-editor .syntax--comment {
font-style: normal;
}
atom-text-editor .syntax--underline {
text-decoration: none;
}
.lisp-paredit-status {
display: none;
}
atom-text-editor, html {
atom-text-editor-minimap {
.minimap-visible-area {
background-color: #7c7c7c;
// Color of Visible area.
opacity: 0;
// Default 0 when you not working with minimap
cursor: default;
// Change cursor style to pointer.
transition: 0.5s opacity;
// Better UI.
&:hover {
opacity: 0.2;
} // Only display Minimap visible area when working.
&:active {
cursor: default;
} // Change cursor when dragging.
}
&:hover {
.minimap-visible-area {
opacity: 0.2;
transition: opacity 1s;
} // When Hover to all minimap area, visible area will display.
}
&:active {
.minimap-visible-area {
opacity: 0.2;
transition: opacity 0.5s;
} // Display Minimap visible area when dragging.
}
}
}
atom-text-editor {
.syntax--source.syntax--js.syntax--jsx {
.syntax--graphql {
.syntax--alias {
font-style: normal
}
.syntax--support.syntax--type.syntax--builtin {
-webkit-filter: brightness(80%);
}
}
.syntax--jsx {
.syntax--entity {
&.syntax--other {
&.syntax--attribute-name {
font-style: normal // color: @cyan;
}
}
}
.syntax--constant.syntax--character.syntax--entity {
font-style: normal
}
}
}
.syntax--source.syntax--css.syntax--styled {
.syntax--support.syntax--type.syntax--property-name.syntax--unknown {
-webkit-filter: brightness(75%);
}
}
}
.linter-elm-make-inferred-type-annotation {
font-style: normal;
} |
Have you installed If so, check what styles are being applied to the affected tabs:
|
I'm also having this same issue with atom It seems that this happens with the As a quick fix, I've modified .ruby-icon {
font-family: inherit;
font-size: inherit;
} |
Hey @kencruz07, It seems like a theme or package is applying its own styling to |
Thanks @Alhadis ! You're right, this seems to be the case. Tried inspecting where this new Thanks for your help! |
Seems likely, given he recently filed an issue to an Ethereum-related repository. I also noticed there's a PR still sitting open at No recent activity from the owner for the last year, and the repository was last modified July 2016. Think it's safe to consider the package unmaintained at this point... 😕 |
Hi! Sorry for not responding, I completely forgot about it… 😳 I ended up with uninstalling
It definitely was a problem from other package, not from |
No problem! Gonna close this now as there's really nothing we can do on our end. It's strange that the package would even add this styling in the first place, though... 🤔 |
It's unlikely caktux/language-ethereum#13 will ever be merged, since the package appears well-and-truly abandoned by its author. References: #708, #718
@ghivert thanks for solution! |
Hi!
I'm a huge fan of the package, but I noticed some bugs with the last version of atom: the name of a file is not always good.
For instance:
Any idea?
The text was updated successfully, but these errors were encountered: