From 08a32bedcefd9d5f7288e0142b28a99b3a466ac8 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Wed, 29 Mar 2017 15:24:42 -0400 Subject: [PATCH 1/3] fixed user icon in moderation notes section --- templates/account/info.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/account/info.tpl b/templates/account/info.tpl index 82bd157..d29535d 100644 --- a/templates/account/info.tpl +++ b/templates/account/info.tpl @@ -158,7 +158,7 @@ -
{moderationNotes.user.icon:text}
+
{moderationNotes.user.icon:text}
From 7e3a7ab7f30e8d7057e23f4f20efde5d5c1a1ed1 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Wed, 29 Mar 2017 15:24:48 -0400 Subject: [PATCH 2/3] 4.2.7 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 9a1edbe..a13ff91 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nodebb-theme-persona", - "version": "4.2.6", + "version": "4.2.7", "nbbpm": { "compatibility": "^1.4.4" }, From 8319d04156ce69b7337c25fc49b2517dec125b66 Mon Sep 17 00:00:00 2001 From: Peter Jaszkowiak Date: Thu, 6 Apr 2017 12:45:55 -0600 Subject: [PATCH 3/3] Fix bottom sheets not showing in IE11 --- less/modules/bottom-sheet.less | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/less/modules/bottom-sheet.less b/less/modules/bottom-sheet.less index 53a98b6..546e537 100644 --- a/less/modules/bottom-sheet.less +++ b/less/modules/bottom-sheet.less @@ -3,16 +3,16 @@ .dropdown-menu { display: block; visibility: hidden; - + position: fixed; left: 0; right: 0; bottom: 0; - + margin: 0; padding: 0 5px; max-height: 60%; - + box-shadow: 0 2px 6px rgba(0,0,0,0.35); overflow: auto; -webkit-overflow-scrolling: touch; @@ -20,32 +20,32 @@ transition: transform 0.3s, visibility 0s 0.3s; z-index: 995; padding: 5px 0 10px; - - li { + + li { a { padding: 10px 20px; } - + &.divider { padding: 0; } - + &.active { background-color: @btn-primary-bg; color: @btn-primary-color; } } } - + &.open { .dropdown-menu { transform: none; visibility: visible; transition-delay: 0s; - top: initial; + top: auto; } } - + .dropdown-backdrop { background-color: rgba(0, 0, 0, .3); }