fixed no newline at the end of file

This commit is contained in:
anapnoe 2023-02-05 01:22:15 +02:00
parent ee43876ade
commit b91ca44d7c

View File

@ -1936,7 +1936,6 @@ input:focus {
} }
/* Firefox */ /* Firefox */
input[type=range]::-moz-range-progress { input[type=range]::-moz-range-progress {
@ -1949,14 +1948,6 @@ input[type=range]::-moz-range-track {
background-color: #202124; background-color: #202124;
} }
input[type=range]::-ms-fill-lower {
background-color: #03d0a8;
}
input[type=range]::-ms-fill-upper {
background-color: #202124;
}
#txt2img_results, #txt2img_results,
#img2img_results, #img2img_results,
@ -2002,3 +1993,14 @@ input[type="number"]:hover,
input[type="number"]:focus { input[type="number"]:focus {
-moz-appearance: initial; -moz-appearance: initial;
} }
/* IE maybe later */
input[type=range]::-ms-fill-lower {
background-color: #03d0a8;
}
input[type=range]::-ms-fill-upper {
background-color: #202124;
}