-
Notifications
You must be signed in to change notification settings - Fork 0
/
webfront.css
55 lines (48 loc) · 1.61 KB
/
webfront.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* Minimale Breite der Buttons. Zentrierte Ausrichtung der Schrift */
.ipsCategory > .container .content .visual > .enum > div,
.ipsCategory > .container .content .visual > .selector > div,
.ipsCategory > .container .extended > .textBox > div {
min-width: 50px;
text-align: center;
}
/* Logo austauschen */
.ipsLogin>.logo {
background-image: url(logo.svg);
margin-left: -74px;
margin-top: -160px;
background-size: initial;
height: 80px;
width: 180px;
}
/* Farbe verändern */
.ipsLogin,
.ipsWebFront {
background-color: #7BA669;
}
.ipsTabPane > .navigation ,
.ipsContentChanger > .navigation {
background-color: #557D44;
}
/* Animation für alle Graphen deaktivieren */
.ipsChart,
.ipsChartDialog .content .ipsContainer {
-webkit-animation-name: none !important;
-moz-animation-name: none !important;
-ms-animation-name: none !important;
animation-name: none !important;
}
/* 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;
}