fix triggers panel rendering with phantomjs, fix #605

This commit is contained in:
Alexander Zobnin
2018-09-14 21:06:15 +03:00
parent e0f2f08074
commit 61380be318
2 changed files with 29 additions and 11 deletions

View File

@@ -55,6 +55,10 @@
opacity: 0.4;
}
}
.alert-rule-item__icon .icon-gf {
right: 0.4rem;
}
}
.zbx-trigger-card {
@@ -181,3 +185,17 @@
font-size: 200%;
}
}
// fix for phantomjs (it has troubles with flex blocks rendering)
.body--phantomjs {
.triggers-panel-container {
.alert-rule-list {
display: block;
}
.alert-rule-item__body,
.alert-rule-item__icon {
display: block;
}
}
}