mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-25 03:16:53 +00:00
74 lines
1.4 KiB
SCSS
74 lines
1.4 KiB
SCSS
.input-with-label {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
border-radius: 2px 0px 0px 2px;
|
|
|
|
.label {
|
|
color: var(--bg-vanilla-400);
|
|
font-size: 12px;
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
line-height: 18px; /* 128.571% */
|
|
letter-spacing: 0.56px;
|
|
|
|
max-width: 150px;
|
|
min-width: 120px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
|
|
padding: 0px 8px;
|
|
|
|
border-radius: 2px 0px 0px 2px;
|
|
border: 1px solid var(--bg-slate-400);
|
|
background: var(--bg-ink-300);
|
|
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
font-weight: var(--font-weight-light);
|
|
}
|
|
|
|
.input {
|
|
flex: 1;
|
|
min-width: 150px;
|
|
font-family: 'Space Mono', monospace !important;
|
|
|
|
border-radius: 2px 0px 0px 2px;
|
|
border: 1px solid var(--bg-slate-400);
|
|
background: var(--bg-ink-300);
|
|
|
|
border-right: none;
|
|
border-left: none;
|
|
border-top-right-radius: 0px;
|
|
border-bottom-right-radius: 0px;
|
|
border-top-left-radius: 0px;
|
|
border-bottom-left-radius: 0px;
|
|
}
|
|
|
|
.close-btn {
|
|
border-radius: 0px 2px 2px 0px;
|
|
border: 1px solid var(--bg-slate-400);
|
|
background: var(--bg-ink-300);
|
|
height: 38px;
|
|
width: 38px;
|
|
}
|
|
|
|
&.labelAfter {
|
|
.input {
|
|
border-radius: 0px 2px 2px 0px;
|
|
border: 1px solid var(--bg-slate-400);
|
|
background: var(--bg-ink-300);
|
|
border-top-right-radius: 0px;
|
|
border-bottom-right-radius: 0px;
|
|
}
|
|
|
|
.label {
|
|
border-left: none;
|
|
border-top-left-radius: 0px;
|
|
border-bottom-left-radius: 0px;
|
|
}
|
|
}
|
|
}
|