[Rt-commit] rt branch, 4.6/modals-background, created. rt-4.4.4-372-g48742beec
Michel Rodriguez
michel at bestpractical.com
Mon Sep 9 16:42:41 EDT 2019
The branch, 4.6/modals-background has been created
at 48742beecfb74edf83f60b1fc61166b7ba28477e (commit)
- Log -----------------------------------------------------------------
commit 5157ddc622644261a62e1620f89045248db12b81
Author: michel <michel at bestpractical.com>
Date: Mon Sep 9 22:10:29 2019 +0200
Fixes modal boxes background (make it black with opacity 70%)
diff --git a/share/static/css/elevator-light/misc.css b/share/static/css/elevator-light/misc.css
index a6e12b26f..f296c3dfe 100644
--- a/share/static/css/elevator-light/misc.css
+++ b/share/static/css/elevator-light/misc.css
@@ -44,3 +44,9 @@ table.myday td {
font-size: 0.8em;
white-space: normal;
}
+
+.modal {
+ background: rgb(0, 0, 0, .70);
+ z-index: 10000;
+}
+
commit 48742beecfb74edf83f60b1fc61166b7ba28477e
Author: michel <michel at bestpractical.com>
Date: Mon Sep 9 22:40:07 2019 +0200
Fixes the modal boxes in the elevator-dark theme
The second CSS rule is required for my Firefox 68.0 on Linux
diff --git a/share/static/css/elevator-dark/main.css b/share/static/css/elevator-dark/main.css
index 0ce5e757d..5921fe50a 100644
--- a/share/static/css/elevator-dark/main.css
+++ b/share/static/css/elevator-dark/main.css
@@ -153,3 +153,13 @@
.darkmode .btn-outline:hover svg {
fill: #171A1F;
}
+
+.darkmode div.modal
+ {
+ background: rgba(0, 0, 0, .70) !important;
+ z-index: 10000;
+}
+.darkmode div.modal-dialog-centered {
+ background: rgba(0, 0, 0, 0) !important;
+
+}
-----------------------------------------------------------------------
More information about the rt-commit
mailing list