Firefox 57 shows dark input boxes/dropdown menus with dark text on Gnome dark themes











up vote
15
down vote

favorite
6












Original Question (only about input boxes):



I use Arc-Dark theme on Ubuntu Gnome, and I know this issue existed on older Firefox versions too but it could be fixed with this Stylish script (which wasn't a great fix in itself as it screwed up the Downloads button).



Now the script doesn't work anymore, and I was thinking about reporting it to Mozilla, but they don't really have a GitHub repo for Firefox itself, only for separate components, so I don't really know where I should open the issue.



Is there a temporary fix for this? And could someone who knows how to properly do it report the issue to Mozilla or to the Gnome project (dunno what would be more appropriate)?



Edit:



While in the answers you can find a temporary workaround for the input boxes, the same dark text on dark background issue seems to happen in dropdown menus (not all of them though, which is weird, may be related to different HTML/CSS techniques to create them), and since it's not much discussed but the two issues are most likely linked, I'm adding it to this question. The way to fix it is probably similar to the ones provided below, only with a different entry in userContent.css, but it'd be nice if someone provided it here. I'm gonna edit my own answer if I have time to find it out myself.










share|improve this question




























    up vote
    15
    down vote

    favorite
    6












    Original Question (only about input boxes):



    I use Arc-Dark theme on Ubuntu Gnome, and I know this issue existed on older Firefox versions too but it could be fixed with this Stylish script (which wasn't a great fix in itself as it screwed up the Downloads button).



    Now the script doesn't work anymore, and I was thinking about reporting it to Mozilla, but they don't really have a GitHub repo for Firefox itself, only for separate components, so I don't really know where I should open the issue.



    Is there a temporary fix for this? And could someone who knows how to properly do it report the issue to Mozilla or to the Gnome project (dunno what would be more appropriate)?



    Edit:



    While in the answers you can find a temporary workaround for the input boxes, the same dark text on dark background issue seems to happen in dropdown menus (not all of them though, which is weird, may be related to different HTML/CSS techniques to create them), and since it's not much discussed but the two issues are most likely linked, I'm adding it to this question. The way to fix it is probably similar to the ones provided below, only with a different entry in userContent.css, but it'd be nice if someone provided it here. I'm gonna edit my own answer if I have time to find it out myself.










    share|improve this question


























      up vote
      15
      down vote

      favorite
      6









      up vote
      15
      down vote

      favorite
      6






      6





      Original Question (only about input boxes):



      I use Arc-Dark theme on Ubuntu Gnome, and I know this issue existed on older Firefox versions too but it could be fixed with this Stylish script (which wasn't a great fix in itself as it screwed up the Downloads button).



      Now the script doesn't work anymore, and I was thinking about reporting it to Mozilla, but they don't really have a GitHub repo for Firefox itself, only for separate components, so I don't really know where I should open the issue.



      Is there a temporary fix for this? And could someone who knows how to properly do it report the issue to Mozilla or to the Gnome project (dunno what would be more appropriate)?



      Edit:



      While in the answers you can find a temporary workaround for the input boxes, the same dark text on dark background issue seems to happen in dropdown menus (not all of them though, which is weird, may be related to different HTML/CSS techniques to create them), and since it's not much discussed but the two issues are most likely linked, I'm adding it to this question. The way to fix it is probably similar to the ones provided below, only with a different entry in userContent.css, but it'd be nice if someone provided it here. I'm gonna edit my own answer if I have time to find it out myself.










      share|improve this question















      Original Question (only about input boxes):



      I use Arc-Dark theme on Ubuntu Gnome, and I know this issue existed on older Firefox versions too but it could be fixed with this Stylish script (which wasn't a great fix in itself as it screwed up the Downloads button).



      Now the script doesn't work anymore, and I was thinking about reporting it to Mozilla, but they don't really have a GitHub repo for Firefox itself, only for separate components, so I don't really know where I should open the issue.



      Is there a temporary fix for this? And could someone who knows how to properly do it report the issue to Mozilla or to the Gnome project (dunno what would be more appropriate)?



      Edit:



      While in the answers you can find a temporary workaround for the input boxes, the same dark text on dark background issue seems to happen in dropdown menus (not all of them though, which is weird, may be related to different HTML/CSS techniques to create them), and since it's not much discussed but the two issues are most likely linked, I'm adding it to this question. The way to fix it is probably similar to the ones provided below, only with a different entry in userContent.css, but it'd be nice if someone provided it here. I'm gonna edit my own answer if I have time to find it out myself.







      gnome firefox themes gtk






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jun 26 at 6:03

























      asked Nov 19 '17 at 21:59









      Eärendil Baggins

      2141210




      2141210






















          4 Answers
          4






          active

          oldest

          votes

















          up vote
          18
          down vote













          I found the best solution was to add a string value in about:config for widget.content.gtk-theme-override to override the GTK theme. You can use a related theme with light text boxes (obviously this only works for consistency if said related theme exists). For example, using Arc-Dark set the override to Arc-Darker which has light widget elements.



          Credit for the solution here: https://www.mkammerer.de/blog/gtk-dark-theme-and-firefox/



          -- sss






          share|improve this answer























          • don't forget to restart firefox after applying this change! For linux mint users, a string value of "Mint-Y" or "Mint-X" should be fine!
            – ThorSummoner
            Oct 2 at 5:27


















          up vote
          4
          down vote













          Update:



          I think I just found a solution.



          Before Firefox version 46.0 you could set a theme by starting it like so:



          > GTK2_RC_FILES=/usr/share/themes/Adwaita/gtk-2.0/gtkrc firefox


          Since version 46.0 it required GTK-3:



          > GTK_THEME=Adwaita:light firefox


          Which hasn't been working anymore since version 57.



          So now, for version 57.0.4, I tried both and it worked beautifully:



          > GTK2_RC_FILES=/usr/share/themes/Adwaita/gtk-2.0/gtkrc GTK_THEME=Adwaita:light firefox


          You could probably use any other theme that targets both, GTK-2 and GTK-3.



          Then you may remove or rename the chrome/userContent.css




          Regarding to your questions:


          Is there a temporary fix for this? And could someone who knows how to properly do it report the issue to Mozilla or to the Gnome project (dunno what would be more appropriate)?




          IMHO they are well aware of this behavior and after finding a solution, I'm assuming that it is desired as you obviously can choose a theme you want it to have.






          Original Answer:



          Actually, it is better to leave the !important keywords out.



          The problem from your question arises on sites, that do not specifically set values for background resp. background-color css style tags so Firefox inserts default values.



          With the !important keyword, all of the inputs and textareas of almost all sites would have this same (background-)color. But what you actually want is to override the default (resp. fallback) behavior of Firefox.



          As text is almost never white but dark-grayish on websites, it would suffice to set background or background-color to some brighter value for dark gtk-themes. But as you're already at it you may also set the text color.



          So in the chrome/userContent.css file, in your Firefox profile directory just add



          input, textarea { color: #222; background: #eee; }


          instead of



          INPUT, TEXTAREA {color: black !important; background: #aaaaaa !important; }


          as mentioned in the answer you linked to.



          The colors #222 and #eee do work very well for me. However, you may change them according to your liking.



          I hope it helps.






          share|improve this answer























          • I honestly can't upvote you enough. I'm really grateful. It's finally working!
            – Oussema
            Jun 4 at 2:17


















          up vote
          2
          down vote













          I've found a temporary fix, but I hope someone will manage to make Mozilla and/or Gnome know about this and think of fixing it for good.



          Just do as this answer says, but use white in the CSS stylesheet instead of #aaaaaa, for some reason the latter displays as some strange grey on my browser.






          share|improve this answer




























            up vote
            1
            down vote













            The answer here https://askubuntu.com/a/8346/625256 explains how to disable GTK theming just for firefox and thereby fixing the dark text on dark background issue.






            share|improve this answer

















            • 2




              Problem is, some may like to have GTK theming on firefox to have it homogenous to their Gnome theme, but not the weird dark background on dark text in boxes.
              – Eärendil Baggins
              Nov 20 '17 at 13:25











            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "89"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f978184%2ffirefox-57-shows-dark-input-boxes-dropdown-menus-with-dark-text-on-gnome-dark-th%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            4 Answers
            4






            active

            oldest

            votes








            4 Answers
            4






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            18
            down vote













            I found the best solution was to add a string value in about:config for widget.content.gtk-theme-override to override the GTK theme. You can use a related theme with light text boxes (obviously this only works for consistency if said related theme exists). For example, using Arc-Dark set the override to Arc-Darker which has light widget elements.



            Credit for the solution here: https://www.mkammerer.de/blog/gtk-dark-theme-and-firefox/



            -- sss






            share|improve this answer























            • don't forget to restart firefox after applying this change! For linux mint users, a string value of "Mint-Y" or "Mint-X" should be fine!
              – ThorSummoner
              Oct 2 at 5:27















            up vote
            18
            down vote













            I found the best solution was to add a string value in about:config for widget.content.gtk-theme-override to override the GTK theme. You can use a related theme with light text boxes (obviously this only works for consistency if said related theme exists). For example, using Arc-Dark set the override to Arc-Darker which has light widget elements.



            Credit for the solution here: https://www.mkammerer.de/blog/gtk-dark-theme-and-firefox/



            -- sss






            share|improve this answer























            • don't forget to restart firefox after applying this change! For linux mint users, a string value of "Mint-Y" or "Mint-X" should be fine!
              – ThorSummoner
              Oct 2 at 5:27













            up vote
            18
            down vote










            up vote
            18
            down vote









            I found the best solution was to add a string value in about:config for widget.content.gtk-theme-override to override the GTK theme. You can use a related theme with light text boxes (obviously this only works for consistency if said related theme exists). For example, using Arc-Dark set the override to Arc-Darker which has light widget elements.



            Credit for the solution here: https://www.mkammerer.de/blog/gtk-dark-theme-and-firefox/



            -- sss






            share|improve this answer














            I found the best solution was to add a string value in about:config for widget.content.gtk-theme-override to override the GTK theme. You can use a related theme with light text boxes (obviously this only works for consistency if said related theme exists). For example, using Arc-Dark set the override to Arc-Darker which has light widget elements.



            Credit for the solution here: https://www.mkammerer.de/blog/gtk-dark-theme-and-firefox/



            -- sss







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Aug 24 at 8:35

























            answered Jul 10 at 9:08









            Sapient Saxon Saboo

            633411




            633411












            • don't forget to restart firefox after applying this change! For linux mint users, a string value of "Mint-Y" or "Mint-X" should be fine!
              – ThorSummoner
              Oct 2 at 5:27


















            • don't forget to restart firefox after applying this change! For linux mint users, a string value of "Mint-Y" or "Mint-X" should be fine!
              – ThorSummoner
              Oct 2 at 5:27
















            don't forget to restart firefox after applying this change! For linux mint users, a string value of "Mint-Y" or "Mint-X" should be fine!
            – ThorSummoner
            Oct 2 at 5:27




            don't forget to restart firefox after applying this change! For linux mint users, a string value of "Mint-Y" or "Mint-X" should be fine!
            – ThorSummoner
            Oct 2 at 5:27












            up vote
            4
            down vote













            Update:



            I think I just found a solution.



            Before Firefox version 46.0 you could set a theme by starting it like so:



            > GTK2_RC_FILES=/usr/share/themes/Adwaita/gtk-2.0/gtkrc firefox


            Since version 46.0 it required GTK-3:



            > GTK_THEME=Adwaita:light firefox


            Which hasn't been working anymore since version 57.



            So now, for version 57.0.4, I tried both and it worked beautifully:



            > GTK2_RC_FILES=/usr/share/themes/Adwaita/gtk-2.0/gtkrc GTK_THEME=Adwaita:light firefox


            You could probably use any other theme that targets both, GTK-2 and GTK-3.



            Then you may remove or rename the chrome/userContent.css




            Regarding to your questions:


            Is there a temporary fix for this? And could someone who knows how to properly do it report the issue to Mozilla or to the Gnome project (dunno what would be more appropriate)?




            IMHO they are well aware of this behavior and after finding a solution, I'm assuming that it is desired as you obviously can choose a theme you want it to have.






            Original Answer:



            Actually, it is better to leave the !important keywords out.



            The problem from your question arises on sites, that do not specifically set values for background resp. background-color css style tags so Firefox inserts default values.



            With the !important keyword, all of the inputs and textareas of almost all sites would have this same (background-)color. But what you actually want is to override the default (resp. fallback) behavior of Firefox.



            As text is almost never white but dark-grayish on websites, it would suffice to set background or background-color to some brighter value for dark gtk-themes. But as you're already at it you may also set the text color.



            So in the chrome/userContent.css file, in your Firefox profile directory just add



            input, textarea { color: #222; background: #eee; }


            instead of



            INPUT, TEXTAREA {color: black !important; background: #aaaaaa !important; }


            as mentioned in the answer you linked to.



            The colors #222 and #eee do work very well for me. However, you may change them according to your liking.



            I hope it helps.






            share|improve this answer























            • I honestly can't upvote you enough. I'm really grateful. It's finally working!
              – Oussema
              Jun 4 at 2:17















            up vote
            4
            down vote













            Update:



            I think I just found a solution.



            Before Firefox version 46.0 you could set a theme by starting it like so:



            > GTK2_RC_FILES=/usr/share/themes/Adwaita/gtk-2.0/gtkrc firefox


            Since version 46.0 it required GTK-3:



            > GTK_THEME=Adwaita:light firefox


            Which hasn't been working anymore since version 57.



            So now, for version 57.0.4, I tried both and it worked beautifully:



            > GTK2_RC_FILES=/usr/share/themes/Adwaita/gtk-2.0/gtkrc GTK_THEME=Adwaita:light firefox


            You could probably use any other theme that targets both, GTK-2 and GTK-3.



            Then you may remove or rename the chrome/userContent.css




            Regarding to your questions:


            Is there a temporary fix for this? And could someone who knows how to properly do it report the issue to Mozilla or to the Gnome project (dunno what would be more appropriate)?




            IMHO they are well aware of this behavior and after finding a solution, I'm assuming that it is desired as you obviously can choose a theme you want it to have.






            Original Answer:



            Actually, it is better to leave the !important keywords out.



            The problem from your question arises on sites, that do not specifically set values for background resp. background-color css style tags so Firefox inserts default values.



            With the !important keyword, all of the inputs and textareas of almost all sites would have this same (background-)color. But what you actually want is to override the default (resp. fallback) behavior of Firefox.



            As text is almost never white but dark-grayish on websites, it would suffice to set background or background-color to some brighter value for dark gtk-themes. But as you're already at it you may also set the text color.



            So in the chrome/userContent.css file, in your Firefox profile directory just add



            input, textarea { color: #222; background: #eee; }


            instead of



            INPUT, TEXTAREA {color: black !important; background: #aaaaaa !important; }


            as mentioned in the answer you linked to.



            The colors #222 and #eee do work very well for me. However, you may change them according to your liking.



            I hope it helps.






            share|improve this answer























            • I honestly can't upvote you enough. I'm really grateful. It's finally working!
              – Oussema
              Jun 4 at 2:17













            up vote
            4
            down vote










            up vote
            4
            down vote









            Update:



            I think I just found a solution.



            Before Firefox version 46.0 you could set a theme by starting it like so:



            > GTK2_RC_FILES=/usr/share/themes/Adwaita/gtk-2.0/gtkrc firefox


            Since version 46.0 it required GTK-3:



            > GTK_THEME=Adwaita:light firefox


            Which hasn't been working anymore since version 57.



            So now, for version 57.0.4, I tried both and it worked beautifully:



            > GTK2_RC_FILES=/usr/share/themes/Adwaita/gtk-2.0/gtkrc GTK_THEME=Adwaita:light firefox


            You could probably use any other theme that targets both, GTK-2 and GTK-3.



            Then you may remove or rename the chrome/userContent.css




            Regarding to your questions:


            Is there a temporary fix for this? And could someone who knows how to properly do it report the issue to Mozilla or to the Gnome project (dunno what would be more appropriate)?




            IMHO they are well aware of this behavior and after finding a solution, I'm assuming that it is desired as you obviously can choose a theme you want it to have.






            Original Answer:



            Actually, it is better to leave the !important keywords out.



            The problem from your question arises on sites, that do not specifically set values for background resp. background-color css style tags so Firefox inserts default values.



            With the !important keyword, all of the inputs and textareas of almost all sites would have this same (background-)color. But what you actually want is to override the default (resp. fallback) behavior of Firefox.



            As text is almost never white but dark-grayish on websites, it would suffice to set background or background-color to some brighter value for dark gtk-themes. But as you're already at it you may also set the text color.



            So in the chrome/userContent.css file, in your Firefox profile directory just add



            input, textarea { color: #222; background: #eee; }


            instead of



            INPUT, TEXTAREA {color: black !important; background: #aaaaaa !important; }


            as mentioned in the answer you linked to.



            The colors #222 and #eee do work very well for me. However, you may change them according to your liking.



            I hope it helps.






            share|improve this answer














            Update:



            I think I just found a solution.



            Before Firefox version 46.0 you could set a theme by starting it like so:



            > GTK2_RC_FILES=/usr/share/themes/Adwaita/gtk-2.0/gtkrc firefox


            Since version 46.0 it required GTK-3:



            > GTK_THEME=Adwaita:light firefox


            Which hasn't been working anymore since version 57.



            So now, for version 57.0.4, I tried both and it worked beautifully:



            > GTK2_RC_FILES=/usr/share/themes/Adwaita/gtk-2.0/gtkrc GTK_THEME=Adwaita:light firefox


            You could probably use any other theme that targets both, GTK-2 and GTK-3.



            Then you may remove or rename the chrome/userContent.css




            Regarding to your questions:


            Is there a temporary fix for this? And could someone who knows how to properly do it report the issue to Mozilla or to the Gnome project (dunno what would be more appropriate)?




            IMHO they are well aware of this behavior and after finding a solution, I'm assuming that it is desired as you obviously can choose a theme you want it to have.






            Original Answer:



            Actually, it is better to leave the !important keywords out.



            The problem from your question arises on sites, that do not specifically set values for background resp. background-color css style tags so Firefox inserts default values.



            With the !important keyword, all of the inputs and textareas of almost all sites would have this same (background-)color. But what you actually want is to override the default (resp. fallback) behavior of Firefox.



            As text is almost never white but dark-grayish on websites, it would suffice to set background or background-color to some brighter value for dark gtk-themes. But as you're already at it you may also set the text color.



            So in the chrome/userContent.css file, in your Firefox profile directory just add



            input, textarea { color: #222; background: #eee; }


            instead of



            INPUT, TEXTAREA {color: black !important; background: #aaaaaa !important; }


            as mentioned in the answer you linked to.



            The colors #222 and #eee do work very well for me. However, you may change them according to your liking.



            I hope it helps.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Jan 15 at 7:35

























            answered Jan 9 at 21:56









            myMethod

            1412




            1412












            • I honestly can't upvote you enough. I'm really grateful. It's finally working!
              – Oussema
              Jun 4 at 2:17


















            • I honestly can't upvote you enough. I'm really grateful. It's finally working!
              – Oussema
              Jun 4 at 2:17
















            I honestly can't upvote you enough. I'm really grateful. It's finally working!
            – Oussema
            Jun 4 at 2:17




            I honestly can't upvote you enough. I'm really grateful. It's finally working!
            – Oussema
            Jun 4 at 2:17










            up vote
            2
            down vote













            I've found a temporary fix, but I hope someone will manage to make Mozilla and/or Gnome know about this and think of fixing it for good.



            Just do as this answer says, but use white in the CSS stylesheet instead of #aaaaaa, for some reason the latter displays as some strange grey on my browser.






            share|improve this answer

























              up vote
              2
              down vote













              I've found a temporary fix, but I hope someone will manage to make Mozilla and/or Gnome know about this and think of fixing it for good.



              Just do as this answer says, but use white in the CSS stylesheet instead of #aaaaaa, for some reason the latter displays as some strange grey on my browser.






              share|improve this answer























                up vote
                2
                down vote










                up vote
                2
                down vote









                I've found a temporary fix, but I hope someone will manage to make Mozilla and/or Gnome know about this and think of fixing it for good.



                Just do as this answer says, but use white in the CSS stylesheet instead of #aaaaaa, for some reason the latter displays as some strange grey on my browser.






                share|improve this answer












                I've found a temporary fix, but I hope someone will manage to make Mozilla and/or Gnome know about this and think of fixing it for good.



                Just do as this answer says, but use white in the CSS stylesheet instead of #aaaaaa, for some reason the latter displays as some strange grey on my browser.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 19 '17 at 22:44









                Eärendil Baggins

                2141210




                2141210






















                    up vote
                    1
                    down vote













                    The answer here https://askubuntu.com/a/8346/625256 explains how to disable GTK theming just for firefox and thereby fixing the dark text on dark background issue.






                    share|improve this answer

















                    • 2




                      Problem is, some may like to have GTK theming on firefox to have it homogenous to their Gnome theme, but not the weird dark background on dark text in boxes.
                      – Eärendil Baggins
                      Nov 20 '17 at 13:25















                    up vote
                    1
                    down vote













                    The answer here https://askubuntu.com/a/8346/625256 explains how to disable GTK theming just for firefox and thereby fixing the dark text on dark background issue.






                    share|improve this answer

















                    • 2




                      Problem is, some may like to have GTK theming on firefox to have it homogenous to their Gnome theme, but not the weird dark background on dark text in boxes.
                      – Eärendil Baggins
                      Nov 20 '17 at 13:25













                    up vote
                    1
                    down vote










                    up vote
                    1
                    down vote









                    The answer here https://askubuntu.com/a/8346/625256 explains how to disable GTK theming just for firefox and thereby fixing the dark text on dark background issue.






                    share|improve this answer












                    The answer here https://askubuntu.com/a/8346/625256 explains how to disable GTK theming just for firefox and thereby fixing the dark text on dark background issue.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Nov 20 '17 at 11:12









                    lijodxl

                    192




                    192








                    • 2




                      Problem is, some may like to have GTK theming on firefox to have it homogenous to their Gnome theme, but not the weird dark background on dark text in boxes.
                      – Eärendil Baggins
                      Nov 20 '17 at 13:25














                    • 2




                      Problem is, some may like to have GTK theming on firefox to have it homogenous to their Gnome theme, but not the weird dark background on dark text in boxes.
                      – Eärendil Baggins
                      Nov 20 '17 at 13:25








                    2




                    2




                    Problem is, some may like to have GTK theming on firefox to have it homogenous to their Gnome theme, but not the weird dark background on dark text in boxes.
                    – Eärendil Baggins
                    Nov 20 '17 at 13:25




                    Problem is, some may like to have GTK theming on firefox to have it homogenous to their Gnome theme, but not the weird dark background on dark text in boxes.
                    – Eärendil Baggins
                    Nov 20 '17 at 13:25


















                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Ask Ubuntu!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f978184%2ffirefox-57-shows-dark-input-boxes-dropdown-menus-with-dark-text-on-gnome-dark-th%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Quarter-circle Tiles

                    build a pushdown automaton that recognizes the reverse language of a given pushdown automaton?

                    Mont Emei