From 62ef7a705424584cc3577b266e7f9d12654969f1 Mon Sep 17 00:00:00 2001 From: daria Date: Thu, 29 Aug 2024 12:13:26 +0300 Subject: [PATCH 1/3] add margin to icons #1612 --- customize.dist/src/less2/include/dropdown.less | 1 + 1 file changed, 1 insertion(+) diff --git a/customize.dist/src/less2/include/dropdown.less b/customize.dist/src/less2/include/dropdown.less index 4a5099ee3..ce147d940 100644 --- a/customize.dist/src/less2/include/dropdown.less +++ b/customize.dist/src/less2/include/dropdown.less @@ -65,6 +65,7 @@ button { .fa-caret-down { margin-right: 0.5em !important; + margin-left: 0.5em; } * { .tools_unselectable(); From 12b0ac44cb482873643aeb4ece7f55e9e24f2869 Mon Sep 17 00:00:00 2001 From: daria Date: Thu, 29 Aug 2024 12:26:13 +0300 Subject: [PATCH 2/3] fix uneven spacing between reminder buttons #1612 --- www/calendar/app-calendar.less | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/www/calendar/app-calendar.less b/www/calendar/app-calendar.less index 91974d210..3154ae89e 100644 --- a/www/calendar/app-calendar.less +++ b/www/calendar/app-calendar.less @@ -420,10 +420,7 @@ // margin-bottom: 20px; input { width: 80px; - margin-right: 0.3rem; - } - .fa-plus{ - margin-left:0.3rem; + margin-right: 0.5rem; } } } From 07174aa34bf6052821b5770e622794aa39311a39 Mon Sep 17 00:00:00 2001 From: yflory Date: Mon, 2 Sep 2024 17:27:38 +0200 Subject: [PATCH 3/3] Fix dropdown issue introduced in commit 67cdadc --- customize.dist/src/less2/include/dropdown.less | 1 - www/common/common-ui-elements.js | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/customize.dist/src/less2/include/dropdown.less b/customize.dist/src/less2/include/dropdown.less index ce147d940..4a5099ee3 100644 --- a/customize.dist/src/less2/include/dropdown.less +++ b/customize.dist/src/less2/include/dropdown.less @@ -65,7 +65,6 @@ button { .fa-caret-down { margin-right: 0.5em !important; - margin-left: 0.5em; } * { .tools_unselectable(); diff --git a/www/common/common-ui-elements.js b/www/common/common-ui-elements.js index 10db8c37c..57b495197 100644 --- a/www/common/common-ui-elements.js +++ b/www/common/common-ui-elements.js @@ -1607,10 +1607,10 @@ define([ ])); if (config.caretDown) { - $button.append(h('i.fa.fa-caret-down')); + $button.prepend(h('i.fa.fa-caret-down')); } if (config.angleDown) { - $button.append(h('i.fa.fa-angle-down')); + $button.prepend(h('i.fa.fa-angle-down')); } // Menu