mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-17 15:36:48 +00:00
* feat: standardise header to include share and feedback sections * feat: add unit test cases * feat: handle click outside to close open modals * fix: handle click outside to close modals * chore: update event name and placeholder * fix: test cases * feat: show success / failure message on feedback submit, fix test cases * feat: add test cases to check if toast messages are shown on feedback submit * feat: address review comments * feat: update test cases --------- Co-authored-by: makeavish <makeavish786@gmail.com>
104 lines
2.0 KiB
SCSS
104 lines
2.0 KiB
SCSS
.settings-page {
|
|
max-height: 100vh;
|
|
overflow: hidden;
|
|
|
|
.settings-page-header {
|
|
border-bottom: 1px solid var(--Slate-500, #161922);
|
|
background: rgba(11, 12, 14, 0.7);
|
|
backdrop-filter: blur(20px);
|
|
|
|
.settings-page-header-title {
|
|
color: var(--Vanilla-100, #fff);
|
|
text-align: center;
|
|
font-family: Inter;
|
|
font-size: 13px;
|
|
font-style: normal;
|
|
line-height: 14px;
|
|
letter-spacing: 0.4px;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 16px;
|
|
}
|
|
}
|
|
|
|
.settings-page-content-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: flex-start;
|
|
|
|
.settings-page-sidenav {
|
|
width: 240px;
|
|
height: calc(100vh - 48px);
|
|
border-right: 1px solid var(--Slate-500, #161922);
|
|
background: var(--Ink-500, #0b0c0e);
|
|
}
|
|
|
|
.settings-page-content {
|
|
flex: 1;
|
|
height: calc(100vh - 48px);
|
|
background: var(--Ink-500, #0b0c0e);
|
|
padding: 10px 8px;
|
|
overflow-y: auto;
|
|
|
|
&::-webkit-scrollbar {
|
|
width: 0.3rem;
|
|
height: 0.3rem;
|
|
}
|
|
|
|
&::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
background: var(--bg-slate-300);
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb:hover {
|
|
background: var(--bg-slate-200);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.lightMode {
|
|
.settings-page {
|
|
.settings-page-header {
|
|
border-bottom: 1px solid var(--bg-vanilla-300);
|
|
background: #fff;
|
|
backdrop-filter: blur(20px);
|
|
|
|
.settings-page-header-title {
|
|
color: var(--bg-ink-400);
|
|
|
|
background: var(--bg-vanilla-100);
|
|
border-right: 1px solid var(--bg-vanilla-300);
|
|
}
|
|
}
|
|
|
|
.settings-page-content-container {
|
|
.settings-page-sidenav {
|
|
border-right: 1px solid var(--bg-vanilla-300);
|
|
background: var(--bg-vanilla-100);
|
|
}
|
|
|
|
.settings-page-content {
|
|
background: var(--bg-vanilla-100);
|
|
|
|
&::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
background: var(--bg-slate-300);
|
|
}
|
|
|
|
&::-webkit-scrollbar-thumb:hover {
|
|
background: var(--bg-slate-200);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|