Skip to content
Snippets Groups Projects
Commit f8cbf231 authored by Michael Hamann's avatar Michael Hamann Committed by Simon Urli
Browse files

XWIKI-22115: Filter boxes for Notifications Custom Filters LiveData are...

XWIKI-22115: Filter boxes for Notifications Custom Filters LiveData are displayed in larger size in Chrome and Edge

* Adjust the styles of boolean filters to match those of list filters.

(cherry picked from commit df0baae0)
parent 6c9132dc
No related branches found
No related tags found
No related merge requests found
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
<!-- BooleanFilter is a custom filter that allow to filter boolean values. --> <!-- BooleanFilter is a custom filter that allow to filter boolean values. -->
<template> <template>
<select :value="filterValue" class="xwiki-selectize livedata-selectize" ref="input" <select :value="filterValue" class="xwiki-selectize livedata-selectize filter-boolean" ref="input"
:aria-label="$t('livedata.filter.boolean.label')"> :aria-label="$t('livedata.filter.boolean.label')">
<option value=""></option> <option value=""></option>
<option :value="trueValue">{{ $t('livedata.displayer.boolean.true') }}</option> <option :value="trueValue">{{ $t('livedata.displayer.boolean.true') }}</option>
...@@ -87,7 +87,8 @@ export default { ...@@ -87,7 +87,8 @@ export default {
</script> </script>
<style> <style>
.livedata-selectize.xwiki-selectize { .livedata-filter.filter-boolean .selectize-input {
margin-top: 6px; height: 100%;
vertical-align: middle;
} }
</style> </style>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment