mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-16 13:21:32 +08:00

* feat: added an option to create channel when no Channels are availabel in alert config * feat: added tooltip for the case when nochannel * feat: opened notification channel creation in new tab * feat: added role permission on create-notification-btn and disabled on loading * feat: added admin permission required message in tooltip --------- Co-authored-by: Vishal Sharma <makeavish786@gmail.com>
78 lines
1.3 KiB
SCSS
78 lines
1.3 KiB
SCSS
.create-alert-modal {
|
|
.ant-modal-content {
|
|
background-color: var(--bg-ink-300);
|
|
.ant-modal-confirm-title {
|
|
color: var(--bg-vanilla-100);
|
|
}
|
|
|
|
.ant-modal-confirm-content {
|
|
.ant-typography {
|
|
color: var(--bg-vanilla-100);
|
|
}
|
|
}
|
|
|
|
.ant-modal-confirm-btns {
|
|
button:nth-of-type(1) {
|
|
background-color: var(--bg-slate-400);
|
|
border: none;
|
|
color: var(--bg-vanilla-100);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.info-help-btns {
|
|
display: grid;
|
|
grid-template-columns: auto auto;
|
|
gap: 12px;
|
|
margin-top: 20px;
|
|
|
|
.doc-redirection-btn {
|
|
color: var(--bg-aqua-500) !important;
|
|
border-color: var(--bg-aqua-500) !important;
|
|
}
|
|
|
|
.facing-issue-btn {
|
|
width: 100% !important;
|
|
}
|
|
}
|
|
|
|
.lightMode {
|
|
.main-container {
|
|
.plot-tag {
|
|
background: var(--bg-vanilla-300);
|
|
}
|
|
}
|
|
.ant-modal-content {
|
|
background-color: var(--bg-vanilla-100);
|
|
.ant-modal-confirm-title {
|
|
color: var(--bg-ink-500);
|
|
}
|
|
|
|
.ant-modal-confirm-content {
|
|
.ant-typography {
|
|
color: var(--bg-ink-500);
|
|
}
|
|
}
|
|
|
|
.ant-modal-confirm-btns {
|
|
button:nth-of-type(1) {
|
|
background-color: var(--bg-vanilla-300);
|
|
border: none;
|
|
color: var(--bg-ink-500);
|
|
}
|
|
}
|
|
}
|
|
|
|
.info-help-btns {
|
|
.doc-redirection-btn {
|
|
color: var(--bg-aqua-600) !important;
|
|
border-color: var(--bg-aqua-600) !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
.create-notification-btn {
|
|
box-shadow: none;
|
|
}
|