1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/drawer/drawer.scss
Alex Andreev a92ed46f0d
Fixing tolerations list layout (#2002)
* Expanding tolerations div width

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>

* Adding tolerations table

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>

* Fixing tolerations table styles

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>

* Adding <PodTolerations/> tests

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>

* Add new line at the end of the file for linter

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
2021-01-22 10:27:54 +03:00

81 lines
1.2 KiB
SCSS

.Drawer {
--size: 50%;
--full-size: 75%;
--spacing: #{$padding * 3};
--icon-focus-color: white;
position: absolute;
background: $contentColor;
box-shadow: 0 0 $unit * 2 $boxShadow;
z-index: $zIndex-drawer;
&.left {
left: 0;
}
&.right {
right: 0;
}
&.top {
top: 0;
}
&.bottom {
bottom: 0;
}
&.left,
&.right {
top: 0;
width: var(--size);
height: 100%;
}
&.top,
&.bottom {
left: 0;
width: 100%;
height: var(--size);
}
.drawer-wrapper {
height: 100%;
min-height: 100%;
}
.drawer-title {
background: $lensBlue;
color: $drawerTitleText;
padding: $padding $padding * 2.5;
word-break: break-all;
position: relative;
min-height: 54px;
.drawer-title-text {
font-weight: bold;
flex-grow: 2;
padding-right: $padding;
}
.MenuActions.toolbar .Icon {
color: $drawerTitleText;
}
}
.drawer-content {
overflow: auto;
padding: var(--spacing);
.Table .TableHead {
border-bottom: 1px solid $borderFaintColor;
}
}
@include media("<=900px") {
&.left, &.right {
width: var(--full-size)
}
}
}