[Rt-commit] rt branch, 4.6/fix-row-colouring-in-sys-config, created. rt-4.4.4-566-g8956be7bc5
Aaron Trevena
ast at bestpractical.com
Tue Dec 17 06:41:23 EST 2019
The branch, 4.6/fix-row-colouring-in-sys-config has been created
at 8956be7bc5f991d3a4624225b7d545cc80797647 (commit)
- Log -----------------------------------------------------------------
commit 8956be7bc5f991d3a4624225b7d545cc80797647
Author: Aaron Trevena <ast at bestpractical.com>
Date: Thu Nov 28 17:22:17 2019 +0000
Added css background for tr and form-row elements with oddline class
Updated light and dark themes, using transparency background to lighten/darken 5% as per bootstrap style
diff --git a/share/static/css/elevator-dark/main.css b/share/static/css/elevator-dark/main.css
index 0c70210634..77075cd541 100644
--- a/share/static/css/elevator-dark/main.css
+++ b/share/static/css/elevator-dark/main.css
@@ -175,3 +175,20 @@
.darkmode #rights-inspector .results .result .match {
background-color: #114 !important;
}
+
+/* row colouring */
+.oddline {
+ background: rgba(255, 255, 255, 0.1) !important;
+}
+
+.darkmode tr.oddline {
+ background: rgba(255, 255, 255, 0.1) !important;
+}
+
+.darkmode .oddline .collection-as-table {
+ background: rgba(255, 255, 255, 0.1) !important;
+}
+
+.darkmode tr.oddline td a {
+ background: rgba(255, 255, 255, 0) !important;
+}
diff --git a/share/static/css/elevator-light/misc.css b/share/static/css/elevator-light/misc.css
index f6ae3a1a18..b74d683679 100644
--- a/share/static/css/elevator-light/misc.css
+++ b/share/static/css/elevator-light/misc.css
@@ -123,3 +123,8 @@ svg.icon-helper {
padding-left: 0.2em;
color: #666;
}
+
+/* row colouring */
+.oddline {
+ background-color: rgba(0, 0, 0, 0.05);
+}
-----------------------------------------------------------------------
More information about the rt-commit
mailing list