[SSE] Fix Bug 62975

This commit is contained in:
Julia Radzhabova
2023-06-09 13:50:03 +03:00
committed by catbasilio
parent f28288f15f
commit 702f38dbee
3 changed files with 6 additions and 6 deletions

View File

@ -677,8 +677,8 @@ define([
var numFormatTemplate = _.template('<a id="<%= id %>" tabindex="-1" type="menuitem">'+
'<div style="position: relative;">'+
'<div style="position: absolute; left: 0; width: 100px;"><%= caption %></div>' +
'<label style="width: 100%; max-width: 300px; overflow: hidden; text-overflow: ellipsis; text-align: right; vertical-align: bottom; padding-left: 100px; color: silver;cursor: pointer;"><%= options.exampleval ? options.exampleval : "" %></label>' +
'<div style="position: absolute; left: 0; width: 125px;"><%= caption %></div>' +
'<label style="width: 100%; max-width: 300px; overflow: hidden; text-overflow: ellipsis; text-align: right; vertical-align: bottom; padding-left: 125px; color: silver;cursor: pointer;"><%= options.exampleval ? options.exampleval : "" %></label>' +
'</div></a>');
me.pmiNumFormat = new Common.UI.MenuItem({

View File

@ -729,7 +729,7 @@
.item-container {
position: relative;
.name {
width: 100px;
width: 125px;
position: absolute;
left: 0;
.rtl & {
@ -745,13 +745,13 @@
text-overflow: ellipsis;
text-align: right;
vertical-align: bottom;
padding-left: 100px;
padding-left: 125px;
color: silver;
white-space: nowrap;
.rtl & {
text-align: left;
padding-left: 0;
padding-right: 100px;
padding-right: 125px;
}
}
}

View File

@ -297,7 +297,7 @@
.rtl & {
text-align: left;
padding-left: 0;
padding-right: 100px;
padding-right: 125px;
}
}
}