mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* tweaks workspace overview layout Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * cluster settings on top Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * header logo for add cluster page Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * tweak landing page Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * combine left menu icons Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * always show bottom status bar Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * tweak Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * integration test fixes Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * change cluster menu Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * first attempt to fix integration test Signed-off-by: Jim Ehrismann <jehrismann@mirantis.com> * lint Signed-off-by: Jim Ehrismann <jehrismann@mirantis.com> * get selectors right for integration test Signed-off-by: Jim Ehrismann <jehrismann@miranits.com> Co-authored-by: Jim Ehrismann <jehrismann@mirantis.com> Co-authored-by: Jim Ehrismann <jehrismann@miranits.com>
64 lines
1.1 KiB
SCSS
64 lines
1.1 KiB
SCSS
.ClustersMenu {
|
|
$spacing: $padding * 2;
|
|
|
|
position: relative;
|
|
text-align: center;
|
|
background: $clusterMenuBackground;
|
|
border-right: 1px solid $clusterMenuBorderColor;
|
|
padding: $spacing 0;
|
|
min-width: 75px;
|
|
|
|
.is-mac &:before {
|
|
content: "";
|
|
height: 20px; // extra spacing for mac-os "traffic-light" buttons
|
|
}
|
|
|
|
.clusters {
|
|
@include hidden-scrollbar;
|
|
padding: 0 $spacing; // extra spacing for cluster-icon's badge
|
|
margin-bottom: $margin;
|
|
|
|
.ClusterIcon {
|
|
margin-bottom: $margin * 1.5;
|
|
}
|
|
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
> .WorkspaceMenu {
|
|
position: relative;
|
|
margin-bottom: $margin;
|
|
|
|
.Icon {
|
|
margin-bottom: $margin * 1.5;
|
|
border-radius: $radius;
|
|
padding: $padding / 3;
|
|
color: #ffffff66;
|
|
background: unset;
|
|
cursor: pointer;
|
|
|
|
&.active {
|
|
opacity: 1;
|
|
}
|
|
|
|
&:hover {
|
|
box-shadow: none;
|
|
color: #ffffff;
|
|
background-color: unset;
|
|
}
|
|
}
|
|
}
|
|
|
|
> .extensions {
|
|
&:not(:empty) {
|
|
padding-top: $spacing;
|
|
}
|
|
|
|
.Icon {
|
|
--size: 40px;
|
|
}
|
|
}
|
|
}
|