mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
47 lines
804 B
SCSS
47 lines
804 B
SCSS
@mixin namespaceSelectCommon {
|
|
.Icon {
|
|
margin-right: $margin / 2;
|
|
}
|
|
}
|
|
|
|
.GradientValueContainer {
|
|
width: 8px;
|
|
height: var(--font-size);
|
|
position: absolute;
|
|
z-index: 20;
|
|
|
|
&.front {
|
|
left: 0px;
|
|
background: linear-gradient(to right, var(--contentColor) 0px, transparent);
|
|
}
|
|
|
|
&.back {
|
|
right: 0px;
|
|
background: linear-gradient(to left, var(--contentColor) 0px, transparent);
|
|
}
|
|
}
|
|
|
|
.NamespaceSelect {
|
|
@include namespaceSelectCommon;
|
|
|
|
.Select {
|
|
&__placeholder {
|
|
width: 100%;
|
|
white-space: nowrap;
|
|
overflow: scroll;
|
|
margin-left: -8px;
|
|
padding-left: 8px;
|
|
margin-right: -8px;
|
|
padding-right: 8px;
|
|
|
|
&::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.NamespaceSelectMenu {
|
|
@include namespaceSelectCommon;
|
|
}
|