Skip to content
Snippets Groups Projects
Commit 66cae7c8 authored by Michael Hamann's avatar Michael Hamann
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 ddcf5cf3
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@
<!-- BooleanFilter is a custom filter that allow to filter boolean values. -->
<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')">
<option value=""></option>
<option :value="trueValue">{{ $t('livedata.displayer.boolean.true') }}</option>
......@@ -87,7 +87,8 @@ export default {
</script>
<style>
.livedata-selectize.xwiki-selectize {
margin-top: 6px;
.livedata-filter.filter-boolean .selectize-input {
height: 100%;
vertical-align: middle;
}
</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