mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Increase .entityName col width Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Adjust catalog menu paddings Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Fix table head border color Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
62 lines
1.1 KiB
SCSS
62 lines
1.1 KiB
SCSS
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
/* This file overwrites basic Material UI TreeView styles. Can contain only following
|
|
classnames: root, expanded, selected, content, iconContainer, label, group
|
|
*/
|
|
|
|
.root {
|
|
color: var(--textColorTertiary);
|
|
}
|
|
|
|
.label {
|
|
font-size: var(--font-size)!important;
|
|
background-color: transparent!important;
|
|
|
|
&:hover {
|
|
background-color: transparent;
|
|
}
|
|
}
|
|
|
|
.content {
|
|
min-height: 26px;
|
|
line-height: 1.3;
|
|
padding: 2px var(--padding) 2px 0;
|
|
|
|
&:hover {
|
|
background-color: var(--sidebarItemHoverBackground);
|
|
border-radius: 2px;
|
|
}
|
|
|
|
&:active {
|
|
color: white;
|
|
background-color: var(--blue);
|
|
}
|
|
}
|
|
|
|
.group {
|
|
margin-left: 0px;
|
|
|
|
.iconContainer {
|
|
margin-left: 28px;
|
|
margin-top: 2px;
|
|
align-self: flex-start;
|
|
}
|
|
}
|
|
|
|
.selected {
|
|
& > *:first-child {
|
|
background-color: var(--blue);
|
|
color: white;
|
|
border-radius: 2px;
|
|
}
|
|
}
|
|
|
|
.iconContainer {
|
|
width: 21px;
|
|
margin-left: 5px;
|
|
margin-right: 0;
|
|
}
|