mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-21 09:26:52 +00:00
43 lines
868 B
SCSS
43 lines
868 B
SCSS
.metrics-select-container {
|
|
margin-bottom: 8px;
|
|
|
|
.ant-select-selector {
|
|
width: 100%;
|
|
border-radius: 2px;
|
|
border: 1px solid #1d212d !important;
|
|
background: #16181d;
|
|
color: #fff;
|
|
font-family: 'Geist Mono';
|
|
font-size: 13px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: 20px; /* 142.857% */
|
|
min-height: 36px;
|
|
}
|
|
|
|
.ant-select-dropdown {
|
|
border-radius: 4px;
|
|
border: 1px solid var(--bg-slate-400);
|
|
background: linear-gradient(
|
|
139deg,
|
|
rgba(18, 19, 23, 0.8) 0%,
|
|
rgba(18, 19, 23, 0.9) 98.68%
|
|
);
|
|
box-shadow: 4px 10px 16px 2px rgba(0, 0, 0, 0.2);
|
|
backdrop-filter: blur(20px);
|
|
|
|
.ant-select-item {
|
|
color: #fff;
|
|
font-family: 'Geist Mono';
|
|
font-size: 13px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: 20px; /* 142.857% */
|
|
|
|
&:hover {
|
|
background: rgba(171, 189, 255, 0.04) !important;
|
|
}
|
|
}
|
|
}
|
|
}
|