Skip to content

Commit

Permalink
[SSE] Fix Bug 62975
Browse files Browse the repository at this point in the history
  • Loading branch information
JuliaRadzhabova authored and catbasilio committed Jun 9, 2023
1 parent f28288f commit 702f38d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions apps/spreadsheeteditor/main/app/view/DocumentHolder.js
Original file line number Diff line number Diff line change
Expand Up @@ -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({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@
.item-container {
position: relative;
.name {
width: 100px;
width: 125px;
position: absolute;
left: 0;
.rtl & {
Expand All @@ -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;
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion apps/spreadsheeteditor/main/resources/less/toolbar.less
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@
.rtl & {
text-align: left;
padding-left: 0;
padding-right: 100px;
padding-right: 125px;
}
}
}
Expand Down

0 comments on commit 702f38d

Please sign in to comment.