mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 21:19:13 +00:00

* Add logic to enable generic hook expiry * Add storage for hook expiry warnings. * Migrate generic hooks / add expiry field * Allow reporting a specific error and status code for generic webhooks * Report the specific error when a message fails to send * Refactor input class to better support datetime * Remove single use of innerChild * Add UI support for expiry configuration * Add new packages * Add warnings when the timer is about to expire. * Add send expiry notice config option * lint * document new option s * Fixup test * Add tests for expiry * Add textual command for setting a duration on a webhook. * Add e2e test for inbound hooks. * changelog * Add a configuration option to force webhooks to expire. * update config.sample.yml * fix field not working
40 lines
727 B
SCSS
40 lines
727 B
SCSS
:root {
|
|
--background-color: #FFFFFF;
|
|
--foreground-color: #17191C;
|
|
--primary-color: #0DBD8B;
|
|
--primary-color-disabled: #0dbd8baf;
|
|
|
|
background-color: #F4F6FA;
|
|
color: var(--foreground-color);
|
|
min-height: 100%;
|
|
width: 100%;
|
|
font-family: 'Inter', 'Twemoji', 'Apple Color Emoji', 'Segoe UI Emoji', 'Arial', 'Helvetica', sans-serif, 'Noto Color Emoji';
|
|
}
|
|
|
|
// @media (prefers-color-scheme: dark) {
|
|
// :root {
|
|
// --background-color: #111111;
|
|
// --foreground-color: #f2f5f8;
|
|
// }
|
|
// }
|
|
|
|
a {
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
a:visited {
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
height: fit-content;
|
|
block-size: fit-content !important;
|
|
}
|
|
|
|
|
|
button {
|
|
font-weight: 600;
|
|
margin-right: 8px;
|
|
}
|