在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:lightradius/firefox-dark-theme-fix开源软件地址:https://github.com/lightradius/firefox-dark-theme-fix开源编程语言:CSS 100.0%开源软件介绍:Firefox dark theme fix for UbuntuUse the follwing CSS to fix some appearance problems on Firefox when using a dark theme on UbuntuCopy the following to the userContent.css file located in "~/.mozilla/firefox/randomstring.default/chrome". If the directory does not exist, create one. If the file does not exist, create one. These settings will override some (not all, but most) of the conflicts on Firefox when using a dark theme. 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;
} |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论