Skip to content

Commit

Permalink
Merge branch '1.next-cake4' into 2.next-cake5
Browse files Browse the repository at this point in the history
  • Loading branch information
skie committed Oct 11, 2024
2 parents fb33449 + dd1b4f3 commit a265cb0
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/element/Search/v_templates.php
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,8 @@ class="form-control value"
</script>

<script type="text/x-template" id="search-select2-template">
<div>
<select class="form-control" :id="id" :name="name" :disabled="disabled" :required="required"></select>
<div class="select2-wrapper">
<select class="form-control select2-control" :id="id" :name="name" :disabled="disabled" :required="required"></select>
</div>
</script>

Expand Down
25 changes: 25 additions & 0 deletions webroot/css/default.css
Original file line number Diff line number Diff line change
Expand Up @@ -390,3 +390,28 @@
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}

.select2-container {
min-width: 150px;
width: auto !important;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
min-width: 150px;
width: auto;
}

.select2-dropdown {
min-width: 150px;
width: auto !important;
}

.select2-results__options {
white-space: nowrap;
}

.select2-wrapper {
display: inline-block;
vertical-align: middle;
}
25 changes: 25 additions & 0 deletions webroot/css/inline.css
Original file line number Diff line number Diff line change
Expand Up @@ -408,3 +408,28 @@
.hidden {
display: none !important;
}

.search-filter-item .select2-container {
width: auto !important;
min-width: 150px;
}

.search-filter-item .select2-selection {
width: 100%;
}

.select2-dropdown {
max-width: none !important;
}

.select2-results__options {
max-height: 150px;
overflow-y: auto;
white-space: normal;
word-break: break-word;
}

.select2-results__option {
white-space: normal;
word-wrap: break-word;
}

0 comments on commit a265cb0

Please sign in to comment.