]> git.ipfire.org Git - thirdparty/rspamd.git/commitdiff
[Minor] Replace legacy rgba() alias
authorAlexander Moisseev <moiseev@mezonplus.ru>
Wed, 2 Jul 2025 10:42:10 +0000 (13:42 +0300)
committerAlexander Moisseev <moiseev@mezonplus.ru>
Wed, 2 Jul 2025 10:48:03 +0000 (13:48 +0300)
with modern rgb() notation

interface/css/rspamd.css

index a4335c07b9ea156535522c26184e03f06e717b77..9f97a668b28b44a8aaba79507d5d6753b8437b50 100644 (file)
@@ -441,10 +441,10 @@ table#symbolsTable input[type="number"] {
 }
 
 .scorebar-spam {
-    background-color: rgba(240 0 0 / 0.1) !important;
+    background-color: rgb(240 0 0 / 0.1) !important;
 }
 .scorebar-ham {
-    background: rgba(100 230 80 / 0.1) !important;
+    background: rgb(100 230 80 / 0.1) !important;
 }
 
 .danger .icon {
@@ -602,10 +602,10 @@ table#symbolsTable input[type="number"] {
     bottom: unset;
 }
 .codejar-linenumbers {
-    background: rgba(255 255 255 / 0.07) !important;
+    background: rgb(255 255 255 / 0.07) !important;
 }
 .codejar-linenumber {
-    color: rgba(120 120 120 / 1) !important;
+    color: rgb(120 120 120 / 1) !important;
     text-align: right;
 }
 .editor {