-
Notifications
You must be signed in to change notification settings - Fork 48
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
Some textfields have hard to read text with Arc Dark #44
Comments
Apparently it's a bug with Firefox. However Numix has solved this problem so I think it's solvable with Arc as well. In the meantime, I put this script into my https://gist.github.com/xHN35RQ/999c4c861a9506dfd507 |
Thanks Nick! That'll work for now. On Wed, Dec 23, 2015 at 5:56 PM, Nick [email protected] wrote:
|
Cool. You can do that by modifying On Thu, Feb 4, 2016 at 1:23 PM, Alexandre Lion [email protected]
|
Of course. I don't like to override directly the files, an update could broke everything (I don't really know for user profile). |
@lnalex do you have the css from that gist somewhere? the link appears to be broken (ends in a 404) |
@tostiheld Yes sorry, I've deleted it inadvertently but I don't use it anymore (it was not a real fix). I'm waiting for a real fix for that issue... |
so this
is the 'dirty' fix you can do in stylish or userchrome (at least it works perfectly for me) i have also tracked down the culprit with the inspector (not that hard). the stylesheet where the colors come from is resource://gre-resources/forms.css and the specific colors for the back- and foreground are -moz-Field and -moz-FieldText respectively. i tried overriding them in chome/global/in-content/common.css, but that didn't work. i tried overriding the colors directly as wel as assigning new colors to the input and textarea elements. i'm stuck now. i'm also not a css expert. |
According to ArchWiki , you can fix the problem by creating a new Stylish theme:
|
Same problem here as mimf. Using Arc-Dark GTK theme with Xubuntu 16.04 and Arc-Dark in Firefox 49 makes checkboxes, radiobuttons, "resize-grip" of textarea, scrollbars, textarea itself ugly. Dark-grey background and black text. E. g. Google Calendar entries are hard to edit. The workarounds as mentioned by Inalex leave radio, checkboxes and "resize-grip" of untouched and ugly. Changing only Firefox Theme to Arc-Darker makes bookmark-iconbar hard to read. The combination of Firefox Arc-Darker theme and the linux commandline "env GTK_THEME=Arc-Darker firefox" to start firefox works. Unfortunately firefox only is "half-dark". The optimum solution would be to modify Arc-Dark GTK-theme to display Firefox "content window" with Arc (the bright one) theme settings. Most webpages that don't theme controls like checkboxes or radios themselves seem to expect a light/bright gtk theme. |
This problem still persist for me, is there any optimum solution for it ? yet. |
is this the same issue as this? #108 |
Heads up: If you add an "inherit" after each css line, it fixes some css elements which are implicitly set to a color through CSS. For example, if a textbox is implied to be purple by its parent, this new css snippet won't force it to be white. Don't ask me why it works, but it does and it works well.
|
Where shall I make this changes !? please let me know the location of this
CSS files.
…On Thu, Apr 13, 2017 at 5:53 AM, Alex Hulbert ***@***.***> wrote:
Heads up: If you add an "inherit" after each css line, it fixes some css
elements which are implicitly set to a color through CSS. For example, if a
textbox is implied to be purple by its parent, this new css snippet won't
force it to be white. Don't ask me why it works, but it does and it works
well.
input:not(.urlbar-input):not(.textbox-input):not(.form-control):not([type='checkbox']) {
-moz-appearance: none !important;
background-color: white;
background-color: inherit;
color: black;
color: inherit;
}
#downloads-indicator-counter {
color: white;
color: inherit;
}
textarea {
-moz-appearance: none !important;
background-color: white;
background-color: inherit;
color: black;
color: inherit;
}
select {
-moz-appearance: none !important;
background-color: white;
background-color: inherit;
color: black;
color: inherit;
}
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#44 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AA9vMMFSkHV4zxurn9yvNCEpafNXG8MVks5rvWr4gaJpZM4G64Wo>
.
|
@teslaji You need Stylish addon |
There's also this addon on, which works with current Nightly (there's a short flickr when it re-paints the input field though, at least for me), which is suppose to work with other "dark" themes. https://addons.mozilla.org/en-US/firefox/addon/text-contrast-for-dark-themes/ |
The stylish fix also still leaves some style issues in forms and iframes, so it still doesn't fix everything unfortunately. Tested this on my own website that uses buttons for forms, and they all get messed up with the fix on, and look normal with it off. |
Updated @Taconut 's style to not hide radio buttons:
|
Using @Legogris style above. Any way to show the drop down arrow for a selection box?... |
I can confirm this issue still exists with the latest of version of the arc and firefox. Still no out-of-the-box solution. |
I am having the same issue with dark text being rendered on dark background. |
The issues still persist for me. I found the best fix by following this tutorial: Steps (All credit to Moritz Kammerer):
|
Some text fields have either light text on a light background or dark text on a dark background. I've attached a few examples. I'm using Firefox 43.0.1 and Ark Dark 43.20151213 in Firefox. I'm using arc-theme 1450051815.946cbf5 in Debian Testing with Openbox.
The text was updated successfully, but these errors were encountered: