Fixed alignment issue under preferences for the German language. Fixes #4014

This commit is contained in:
Nikhil Mohite
2021-03-12 13:33:04 +05:30
committed by Akshay Joshi
parent 7bad4ca535
commit 8031961205
3 changed files with 5 additions and 1 deletions

View File

@@ -1950,7 +1950,7 @@ define([
helpMessage: null,
},
template: _.template([
'<label for="<%=cId%>" class="<%=Backform.controlLabelClassName%>"><%=label%></label>',
'<label for="<%=cId%>" class="<%=Backform.controlLabelClassName%> text-wrap"><%=label%></label>',
'<div class="<%=Backform.controlsClassName%>">',
' <input type="<%=type%>" id="<%=cId%>" class="<%=Backform.controlClassName%> <%=extraClasses.join(\' \')%>" name="<%=name%>" min="<%=min%>" max="<%=max%>"maxlength="<%=maxlength%>" value="<%-value%>" placeholder="<%-placeholder%>" <%=disabled ? "disabled" : ""%> <%=readonly ? "readonly aria-readonly=true" : ""%> <%=required ? "required" : ""%> />',
' <% if (helpMessage && helpMessage.length) { %>',

View File

@@ -1131,3 +1131,6 @@ select:-webkit-autofill:focus {
#myDropdown a:hover {background-color: $dropdown-link-hover-bg; color:$white !important;}
.text-wrap {
word-break: break-word;
}