mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-08-06 08:06:03 +08:00

* feat: support multi ingestion keys * fix: remove unwanted changes * feat: limits ui * feat: handle limit updates from component * feat: handle limit updates per signal * feat: integrate multiple ingestion key api * feat: handle crud for limits * fix: lint errors * feat: support query search for ingestion name * feat: show utilized size in limits * feat: show multiple ingestions ui only if gateway is enabled * feat: handle decimal values for ingestion size * feat: enable multiple ingestion keys for all users with gateway enabled * chore: remove yarn.lock --------- Co-authored-by: Yunus A M <younix@Yunuss-MacBook-Pro.local> Co-authored-by: Prashant Shahi <prashant@signoz.io>
54 lines
874 B
SCSS
54 lines
874 B
SCSS
.periscope-btn-group {
|
|
display: inline-flex;
|
|
|
|
.ant-btn {
|
|
border-radius: 0;
|
|
}
|
|
}
|
|
|
|
.periscope-btn {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
padding: 6px;
|
|
|
|
border: 1px solid var(--bg-slate-400, #1d212d);
|
|
border-radius: 3px;
|
|
background: var(--bg-ink-400, #121317);
|
|
box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
|
|
color: var(--bg-vanilla-400, #c0c1c3);
|
|
|
|
&.ghost {
|
|
box-shadow: none;
|
|
border: none;
|
|
}
|
|
|
|
cursor: pointer;
|
|
|
|
&.primary {
|
|
color: var(--bg-vanilla-100) !important;
|
|
background-color: var(--bg-robin-500) !important;
|
|
border: none;
|
|
box-shadow: 0 2px 0 rgba(62, 86, 245, 0.09);
|
|
}
|
|
|
|
&:disabled {
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
|
|
.periscope-tab {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
}
|
|
|
|
.lightMode {
|
|
.periscope-btn {
|
|
border-color: var(--bg-vanilla-300);
|
|
background: var(--bg-vanilla-100);
|
|
color: var(--bg-ink-200);
|
|
}
|
|
}
|