Modify the description in fun ways.
diff --git a/apps/home/templates/home/modals/editSub.html b/apps/home/templates/home/modals/editSub.html
index c472684..4fc96f1 100644
--- a/apps/home/templates/home/modals/editSub.html
+++ b/apps/home/templates/home/modals/editSub.html
@@ -29,7 +29,7 @@
-
@@ -44,21 +44,21 @@
-
+
Send content to these channels.
-
+
Filter out unwanted content.
-
+
Rules on telling content apart.
diff --git a/static/css/select2.css b/static/css/select2.css
index c13abe5..59a53ee 100644
--- a/static/css/select2.css
+++ b/static/css/select2.css
@@ -1,5 +1,10 @@
/* Select 2 */
+/* Keep the select2 options visible above modals */
+.select2-container--open {
+ z-index: 9999;
+}
+
.select2-selection {
background-color: var(--bs-body-bg) !important;
font-size: 1rem !important;
diff --git a/static/js/base.js b/static/js/base.js
index 7ebe236..fdfb8ed 100644
--- a/static/js/base.js
+++ b/static/js/base.js
@@ -52,11 +52,9 @@ $(document).ready(function() {
// Activate select2s
$(".select-2").each(function() {
- var dropdownParent = $(this).attr("data-dropdownparent");
$(this).select2({
theme: "bootstrap",
- minimumResultsForSearch: 10,
- dropdownParent: dropdownParent
+ minimumResultsForSearch: 10
});
});