من از تم تاریک استفاده میکنم(Numix) ولی بعد از آپدیت دیروز یه مشکل در فایرفاکس داشتم که text-input box ها و … رنگشون تیره شده بود و رنگ نوشته ها هم تیره شده بود و نمیشد موقع وارد کردن متن در بعضی سایت ها (مثل شیر کردن در توییتر و … ) متن رو دید .
برای حل این مشکل وارد این پوشه بشید
~/.mozilla/firefox
در این پوشه یه پوشه وجود داره که آخر اسمش کلمه .default هست . برای من اسمش این هست:
۳۱mqg501.default
وارد این پوشه بشید و داخل این پوشه یه پوشه به اسم chrome درست کنید و واردش بشید . داخل پوشه chrome یه فایل به اسم userContent.css درست کنید و با یه text-editor بازش کنید و این کدها رو داخلش بذارید
/*
* Use this css file to eliminate problems in Firefox
* when using dark themes that create dark on dark
* input boxes, selection menus and buttons. Put this
* in the ../firefox/default/chrome folder or your
* individual user firefox profile chrome folder.
*/
input {
border: 2px inset white;
background-color: white;
color: black;
-moz-appearance: none !important;
}
textarea {
border: 2px inset white;
background-color: white;
color: black;
-moz-appearance: none !important;
}
select {
border: 2px inset white;
background-color: white;
color: black;
-moz-appearance: none !important;
}
input[type="radio"],
input[type="checkbox"] {
border: 2px inset white ! important;
background-color: white ! important;
color: ThreeDFace ! important;
-moz-appearance: none !important;
}
*|*::-moz-radio {
background-color: white;
-moz-appearance: none !important;
}
button,
input[type="reset"],
input[type="button"],
input[type="submit"] {
border: 2px outset white;
background-color: #eeeeee;
color: black;
-moz-appearance: none !important;
}
body {
background-color: white;
color: black;
display: block;
margin: 8px;
-moz-appearance: none !important;
}
فایرفاکس رو باز و بسته کنید. مشکل حل میشه.

ثبت نظر