diff --git a/app/assets/stylesheets/filters.css b/app/assets/stylesheets/filters.css
index d89ad57f1..45be28002 100644
--- a/app/assets/stylesheets/filters.css
+++ b/app/assets/stylesheets/filters.css
@@ -98,7 +98,7 @@
}
.quick-filter {
- &:has(input:not(.default-value):checked) {
+ &:not(.default-value):has(.checked) {
.input--select {
--input-background: var(--color-selected);
}
diff --git a/app/assets/stylesheets/popup.css b/app/assets/stylesheets/popup.css
index 0d1c27807..addd87f2d 100644
--- a/app/assets/stylesheets/popup.css
+++ b/app/assets/stylesheets/popup.css
@@ -94,7 +94,7 @@
}
&:has(input:checked) {
- --btn-background: var(--color-ink-lightest);
+ --btn-background: transparent;
--btn-color: var(--color-ink);
.icon {
diff --git a/app/views/filters/_assignees.html.erb b/app/views/filters/_assignees.html.erb
index 9dc4a87a0..1a1e33926 100644
--- a/app/views/filters/_assignees.html.erb
+++ b/app/views/filters/_assignees.html.erb
@@ -5,53 +5,81 @@
<% if filter.assignment_status.unassigned? %>
No one
<% elsif filter.assignees.any? %>
- Assigned to <%= filter.assignees.map(&:familiar_name).to_sentence %>
+ Assigned to <%= filter.assignees.map(&:familiar_name).to_sentence(two_words_connector: " or ", last_word_connector: ", or ") %>
<% else %>
Assigned to…
<% end %>
-
+
+
+ <% end %>
<% end %>
diff --git a/app/views/filters/_creators.html.erb b/app/views/filters/_creators.html.erb
index 3db8d63d6..9ba8954e7 100644
--- a/app/views/filters/_creators.html.erb
+++ b/app/views/filters/_creators.html.erb
@@ -4,57 +4,59 @@
-
+
+
+ <% end %>
<% end %>
diff --git a/app/views/filters/_indexed_by.html.erb b/app/views/filters/_indexed_by.html.erb
index 091252cf5..37a22388f 100644
--- a/app/views/filters/_indexed_by.html.erb
+++ b/app/views/filters/_indexed_by.html.erb
@@ -1,36 +1,44 @@
<% if !filter.indexed_by.latest? || @expand_all %>
-
+
" data-controller="dialog" data-action="keydown.esc->dialog#close click@document->dialog#closeOnClickOutside">
-
+
+ <% end %>
<% end %>
diff --git a/app/views/filters/_tags.html.erb b/app/views/filters/_tags.html.erb
index 2cc76c340..665d1f048 100644
--- a/app/views/filters/_tags.html.erb
+++ b/app/views/filters/_tags.html.erb
@@ -3,42 +3,59 @@
-
+
+
+ <% end %>
<% end %>