mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-27 18:43:30 +08:00
[SSE] Fix Bug 62975
This commit is contained in:
committed by
catbasilio
parent
f28288f15f
commit
702f38dbee
@ -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({
|
||||
|
||||
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -297,7 +297,7 @@
|
||||
.rtl & {
|
||||
text-align: left;
|
||||
padding-left: 0;
|
||||
padding-right: 100px;
|
||||
padding-right: 125px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user