diff options
Diffstat (limited to 'apps')
-rw-r--r-- | apps/updatenotification/css/admin.css | 15 | ||||
-rw-r--r-- | apps/updatenotification/js-src/components/popoverMenu/popoverItem.vue | 2 |
2 files changed, 3 insertions, 14 deletions
diff --git a/apps/updatenotification/css/admin.css b/apps/updatenotification/css/admin.css index 714056dadfc..9ebf8021545 100644 --- a/apps/updatenotification/css/admin.css +++ b/apps/updatenotification/css/admin.css @@ -53,20 +53,9 @@ position: relative; } -#updatenotification .item-wrapper { - display: flex; - align-items: flex-start; - padding-right: 10px; -} - -#updatenotification .item-wrapper p { +#updatenotification .popovermenu p { margin-bottom: 0; - padding-top: 10px; -} - -#updatenotification .item-wrapper span[class^="icon-"] { - padding: 19px 0 19px 22px; - line-height: 38px; + width: 100%; } #updatenotification .popovermenu { diff --git a/apps/updatenotification/js-src/components/popoverMenu/popoverItem.vue b/apps/updatenotification/js-src/components/popoverMenu/popoverItem.vue index 6d743a8d3a6..0d6113251dd 100644 --- a/apps/updatenotification/js-src/components/popoverMenu/popoverItem.vue +++ b/apps/updatenotification/js-src/components/popoverMenu/popoverItem.vue @@ -13,7 +13,7 @@ <p v-else-if="item.longtext">{{item.longtext}}</p> </button> <!-- If item.longtext is set AND the item does not have an action --> - <span class="item-wrapper" v-else> + <span v-else> <span :class="item.icon"></span> <span v-if="item.text">{{item.text}}</span> <p v-else-if="item.longtext">{{item.longtext}}</p> |