diff --git a/apps/common/main/resources/less/combo-dataview.less b/apps/common/main/resources/less/combo-dataview.less index a1291141b..60932e41e 100644 --- a/apps/common/main/resources/less/combo-dataview.less +++ b/apps/common/main/resources/less/combo-dataview.less @@ -406,7 +406,7 @@ .view { margin-right: -@combo-dataview-button-width; - padding-right: @combo-dataview-button-width; + padding-right: calc(@combo-dataview-button-width - @scaled-one-px-value); } .view .dataview, .dropdown-menu { diff --git a/apps/presentationeditor/main/app/template/Toolbar.template b/apps/presentationeditor/main/app/template/Toolbar.template index 56bc70e0a..c3b8adb8e 100644 --- a/apps/presentationeditor/main/app/template/Toolbar.template +++ b/apps/presentationeditor/main/app/template/Toolbar.template @@ -153,7 +153,7 @@
-
+
@@ -189,7 +189,7 @@
-
+
diff --git a/apps/presentationeditor/main/app/view/Animation.js b/apps/presentationeditor/main/app/view/Animation.js index b971b32c6..b9cdfd8f9 100644 --- a/apps/presentationeditor/main/app/view/Animation.js +++ b/apps/presentationeditor/main/app/view/Animation.js @@ -203,7 +203,7 @@ define([ cls: 'combo-transitions combo-animation', itemWidth: itemWidth, itemHeight: itemHeight, - style: 'min-width:210px;', + style: 'min-width:201px;', itemTemplate: _.template([ '
', '
', @@ -219,6 +219,7 @@ define([ dataHintDirection: 'bottom', dataHintOffset: '-16, 0', delayRenderTips: true, + autoWidth: true, beforeOpenHandler: function (e) { var cmp = this, menu = cmp.openButton.menu; diff --git a/apps/presentationeditor/main/app/view/Transitions.js b/apps/presentationeditor/main/app/view/Transitions.js index 0823470f9..362914cdb 100644 --- a/apps/presentationeditor/main/app/view/Transitions.js +++ b/apps/presentationeditor/main/app/view/Transitions.js @@ -142,7 +142,7 @@ define([ cls: 'combo-transitions', itemWidth: itemWidth, itemHeight: itemHeight, - style: 'min-width:110px;', + style: 'min-width:108px;', itemTemplate: _.template([ '
', '
', @@ -155,6 +155,7 @@ define([ dataHintDirection: 'bottom', dataHintOffset: '-16, 0', delayRenderTips: true, + autoWidth: true, beforeOpenHandler: function (e) { var cmp = this, menu = cmp.openButton.menu;