From e480944379890630f66a576645f683056dc77d1e Mon Sep 17 00:00:00 2001 From: Michael Maroszek Date: Mon, 30 Jan 2017 16:17:08 +0100 Subject: [PATCH] add workaround to partially disable selector/enum dialogs --- webfront.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/webfront.css b/webfront.css index 6d90cff..7a94760 100644 --- a/webfront.css +++ b/webfront.css @@ -35,4 +35,17 @@ /* Spezielle HTMLBox ohne Titel (Profil: HTMLBox.NoTitle) */ [class~="ipsVariableProfile[HTMLBox.NoTitle]"] .content.tr { display: none!important; +} + +/* Alle Elemente aus Enums/Selectors für das Variablenprofil "VieleAssoziationen" anzeigen */ +[class~="ipsVariableProfile[VieleAssoziationen]"] .content .visual > .enum.overflowing, +[class~="ipsVariableProfile[VieleAssoziationen]"] .content .visual > .selector.overflowing { + height: initial; + white-space: normal; +} + +[class~="ipsVariableProfile[VieleAssoziationen]"] .content .visual > .enum.overflowing > div, +[class~="ipsVariableProfile[VieleAssoziationen]"] .content .visual > .selector.overflowing > div { + display: inline-block!important; + pointer-events: auto!important; } \ No newline at end of file