From b91ca44d7c2f29bbb1a2c57235dca27ea46cae80 Mon Sep 17 00:00:00 2001 From: anapnoe <124302297+anapnoe@users.noreply.github.com> Date: Sun, 5 Feb 2023 01:22:15 +0200 Subject: [PATCH] fixed no newline at the end of file --- style.css | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/style.css b/style.css index 39aaa59e..289ff8cb 100644 --- a/style.css +++ b/style.css @@ -1936,7 +1936,6 @@ input:focus { } - /* Firefox */ input[type=range]::-moz-range-progress { @@ -1949,14 +1948,6 @@ input[type=range]::-moz-range-track { background-color: #202124; } -input[type=range]::-ms-fill-lower { - background-color: #03d0a8; -} - -input[type=range]::-ms-fill-upper { - background-color: #202124; -} - #txt2img_results, #img2img_results, @@ -2002,3 +1993,14 @@ input[type="number"]:hover, input[type="number"]:focus { -moz-appearance: initial; } + + +/* IE maybe later */ + +input[type=range]::-ms-fill-lower { + background-color: #03d0a8; +} + +input[type=range]::-ms-fill-upper { + background-color: #202124; +}