openrat-cms

OpenRat Content Management System
git clone http://git.code.weiherhei.de/openrat-cms.git
Log | Files | Refs | README

commit 911e3956977611dcb6f83ef04f4c7f03db71c482
parent cb6674be3149b9efc4d05a6a15a0e0f191a0b3e0
Author: Jan Dankert <develop@jandankert.de>
Date:   Sat, 14 Nov 2020 23:19:41 +0100

Open the QRcode on click (for touch devices).

Diffstat:
Amodules/cms/ui/themes/default/style/openrat-info.less | 33+++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+), 0 deletions(-)

diff --git a/modules/cms/ui/themes/default/style/openrat-info.less b/modules/cms/ui/themes/default/style/openrat-info.less @@ -0,0 +1,33 @@ + +.or { + &-info { + + position: relative; + + &:hover, + &--open { + .or-info-popup { + display: block; + } + } + + &-popup { + display: none; + position: absolute; + top: 1.2em; + left: -2em; + overflow: visible; + border: 0.5em; + font-size: 2em; + + border-radius: 0.3em; + padding: 1.0em; + //text-align: center; + z-index: 6; + + > div { + display: inline-block; + } + } + } +}