From a5fe01a07a1f7cf53a61a5b27cfe48c2cddcaff0 Mon Sep 17 00:00:00 2001 From: Martin Artnik Date: Mon, 29 May 2023 09:33:18 +0200 Subject: [PATCH] Add 'no actions' message to action toolbar [SCI-8525] --- app/assets/stylesheets/shared/action_toolbar.scss | 4 ++++ app/javascript/vue/components/action_toolbar.vue | 15 ++++++++++++++- config/locales/en.yml | 3 +++ 3 files changed, 21 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/shared/action_toolbar.scss b/app/assets/stylesheets/shared/action_toolbar.scss index d76f29050..7d75f18c0 100644 --- a/app/assets/stylesheets/shared/action_toolbar.scss +++ b/app/assets/stylesheets/shared/action_toolbar.scss @@ -15,6 +15,10 @@ margin-bottom: -2px; width: 16px; } + + .sn-action-toolbar__message { + padding: 8px; + } } @media (max-width: 1000px) { diff --git a/app/javascript/vue/components/action_toolbar.vue b/app/javascript/vue/components/action_toolbar.vue index 8554109f0..0fb424950 100644 --- a/app/javascript/vue/components/action_toolbar.vue +++ b/app/javascript/vue/components/action_toolbar.vue @@ -1,9 +1,12 @@