Fix tip styles

This commit is contained in:
Julia Radzhabova
2024-06-07 13:43:26 +03:00
parent 5385deab30
commit c8eb6d65d0
2 changed files with 4 additions and 2 deletions

View File

@ -222,6 +222,8 @@ define([
// callback: function() {} // call when close tip,
// next: '' // show next tooltip on close
// prev: '' // don't show tooltip if the prev was not shown
// automove: false // applyPlacement on window resize
// maxwidth: 250 // 250 by default
// }
};
@ -268,7 +270,7 @@ define([
props.tip = new Common.UI.SynchronizeTip({
extCls: 'colored',
style: 'min-width:200px;',
style: 'min-width:200px;max-width:' + (props.maxwidth ? props.maxwidth : 250) + 'px;',
placement: placement,
target: target,
text: props.text,

View File

@ -29,7 +29,7 @@
&.closable {
.asc-synchronizetip {
.padding-x(15px, 30px);
.padding-x(15px, 25px);
}
}