From cfe7d6ee1db459739e89b0626091d515f8206eb5 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Thu, 2 Jul 2020 15:11:54 +0200 Subject: [PATCH] fix #3760 @0:10 --- js/libs/fluidbook/fluidbook.nav.js | 2 +- style/footer.less | 9 +-------- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/js/libs/fluidbook/fluidbook.nav.js b/js/libs/fluidbook/fluidbook.nav.js index fc37ae13..f98d7454 100644 --- a/js/libs/fluidbook/fluidbook.nav.js +++ b/js/libs/fluidbook/fluidbook.nav.js @@ -604,7 +604,7 @@ FluidbookNav.prototype = { // Copy credits var credits = $("footer#credits").clone().attr('id', 'mobile-credits'); var a = credits.find('a'); - var t = a.text().replace('TM', '™'); + var t = a.text(); credits.find('a').text(t); $("#menuList").append(credits); diff --git a/style/footer.less b/style/footer.less index 4c0c0f39..db1ca1fd 100644 --- a/style/footer.less +++ b/style/footer.less @@ -1,8 +1,7 @@ /* Credits */ footer { font-family: @font; - font-size: 8px; - text-transform: uppercase; + font-size: 10.4px; position: absolute; bottom: 2px; z-index: 20; @@ -11,12 +10,6 @@ footer { a { display: inline-block; text-decoration: none; - transform-origin: 100% 100%; - transform: scale(1.08, 0.95) !important; - - .rtl & { - transform-origin: 0% 100%; - } } .ltr & { -- 2.39.5