Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Prevent select element in General settings overflowing in a room with very long room-id #11597

Merged
merged 8 commits into from
Oct 9, 2023
1 change: 1 addition & 0 deletions res/css/views/elements/_Field.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ limitations under the License.
.mx_Field select {
-moz-appearance: none;
-webkit-appearance: none;
text-overflow: ellipsis;
}

/* Can't add pseudo-elements to a select directly, so we use its parent. */
Expand Down
2 changes: 1 addition & 1 deletion res/css/views/settings/tabs/_SettingsSection.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ limitations under the License.

.mx_SettingsSection_subSections {
display: grid;
grid-template-columns: 1fr;
grid-template-columns: minmax(0, 1fr);
grid-gap: $spacing-32;

padding: $spacing-16 0;
Expand Down