]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1798166 - Fix color contrast to be compliant with WCAG AA 2.0 (#159)
authorDanny Colin <dannycolin@users.noreply.github.com>
Wed, 3 Jan 2024 22:15:57 +0000 (17:15 -0500)
committerGitHub <noreply@github.com>
Wed, 3 Jan 2024 22:15:57 +0000 (17:15 -0500)
.gitignore
skins/contrib/Dusk/admin.css [new file with mode: 0644]
skins/contrib/Dusk/bug.css [new file with mode: 0644]
skins/contrib/Dusk/buglist.css
skins/contrib/Dusk/global.css

index ba98f70c2e07c6eaffc66070e54fe125c9efb434..55221c1c020b14d1f85eb58230ca7f2c7131029d 100644 (file)
@@ -9,6 +9,3 @@
 /data
 /localconfig
 /index.html
-
-/skins/contrib/Dusk/admin.css
-/skins/contrib/Dusk/bug.css
diff --git a/skins/contrib/Dusk/admin.css b/skins/contrib/Dusk/admin.css
new file mode 100644 (file)
index 0000000..741447a
--- /dev/null
@@ -0,0 +1,15 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This Source Code Form is "Incompatible With Secondary Licenses", as
+ * defined by the Mozilla Public License, v. 2.0.
+ */
+
+#menu td.selected_section {
+    color: #008a00;
+}
+
+.sortlist_separator {
+  color: #333;
+}
diff --git a/skins/contrib/Dusk/bug.css b/skins/contrib/Dusk/bug.css
new file mode 100644 (file)
index 0000000..846cea1
--- /dev/null
@@ -0,0 +1,11 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This Source Code Form is "Incompatible With Secondary Licenses", as
+ * defined by the Mozilla Public License, v. 2.0.
+ */
+
+.bz_short_desc_container {
+  background-color: #e0e0e0;
+}
index a9cbfd0fe22f0fb1124be8cb4fe7b23106f5d906..8acc00809cda034feaa264498aa1c690749d5f31 100644 (file)
@@ -9,3 +9,7 @@
 tr.bz_bugitem:hover {
     background-color: #ccccff;
 }
+
+.bz_sort_order_secondary {
+  color: #555;
+}
index 7ffb910144bb2a2c7f56ede06583566eb9c25f3f..6b609ac3f306d8edbffbc6ef78d3b58790f40fde 100644 (file)
@@ -21,8 +21,8 @@ body {
 }
 
 #header .links, #footer {
-    background-color: #929bb1;
-    color: #ddd;
+    background-color: #667089;
+    color: #fff;
 }
 
 #header {
@@ -51,7 +51,7 @@ body {
 }
 
 a {
-    color: #6070cf;
+    color: #4659c7;
 }
 a:hover {
     color: #8090ef;
@@ -190,7 +190,7 @@ hr {
 }
 
 .tabs td {
-    background: #c8c8c8;
+    background: #e2e2e2;
     border-width: 1px;
 }
 
@@ -235,3 +235,11 @@ hr {
         padding: 0;
     }
 }
+
+/**************/
+/* Bug Fields */
+/**************/
+
+th.required:before, span.required_star {
+    color: #cc3333;
+}