mirror of
https://github.com/zulip/zulip.git
synced 2026-07-12 21:04:41 +08:00
This commit adds a new developer tool: The "integrations dev panel" which will serve as a replacement for the send_webhook_fixture_message management command as a way to test integrations with much greater ease.
30 lines
354 B
CSS
30 lines
354 B
CSS
#panel_div {
|
|
margin: auto;
|
|
width: 720px;
|
|
margin-top: 50px;
|
|
border: 3px solid;
|
|
border-color: rgb(0, 128, 0);
|
|
padding: 10px;
|
|
}
|
|
|
|
#fixture_body {
|
|
height: 500px;
|
|
width: 700px;
|
|
}
|
|
|
|
#send_fixture_button {
|
|
float: right;
|
|
}
|
|
|
|
#URL {
|
|
width: 90%;
|
|
}
|
|
|
|
.center-text {
|
|
text-align: center;
|
|
}
|
|
|
|
.pad-top {
|
|
padding-top: 30px;
|
|
}
|