Skip to content

Commit 69a4ee0

Browse files
ETLaurentEtienne Laurent
and
Etienne Laurent
authored
fix clipped text in select elements (#4907)
Co-authored-by: Etienne Laurent <[email protected]>
1 parent 74f82b7 commit 69a4ee0

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
* Fixes missing wording on images batch operations.
2929
* Fixes rich text toolbar width being limited to parent width.
3030
* Fixes rich text insert menu focused item text color easily overridable.
31+
* Fixes clipped text in the pager and in the relationship filters of piece manager.
3132

3233
## 4.14.2 (2025-04-02)
3334

modules/@apostrophecms/ui/ui/apos/components/AposFilterMenu.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ export default {
138138
min-width: 140px;
139139
140140
:deep(.apos-input--select) {
141-
padding-top: 10px;
142-
padding-bottom: 10px;
141+
padding-top: 0;
142+
padding-bottom: 0;
143143
background-color: var(--a-base-10);
144144
font-style: italic;
145145
}

modules/@apostrophecms/ui/ui/apos/components/AposPager.vue

+1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ export default {
110110
111111
.apos-input--select {
112112
background-color: transparent;
113+
line-height: normal;
113114
height: 32px;
114115
padding: 0 $spacing-double 0 $spacing-base;
115116
}

0 commit comments

Comments
 (0)