Skip to content

Commit

Permalink
add workaround to partially disable selector/enum dialogs
Browse files Browse the repository at this point in the history
  • Loading branch information
paresy committed Jan 30, 2017
1 parent 728407a commit e480944
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions webfront.css
Expand Up @@ -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;
}

0 comments on commit e480944

Please sign in to comment.