mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Show runtimeClassName in pods view Signed-off-by: Piotr Roszatycki <piotr.roszatycki@gmail.com> * Runtime Classes view Signed-off-by: Piotr Roszatycki <piotr.roszatycki@gmail.com> * Reverted formatting Signed-off-by: Piotr Roszatycki <piotr.roszatycki@gmail.com> Signed-off-by: Piotr Roszatycki <piotr.roszatycki@gmail.com>
28 lines
563 B
SCSS
28 lines
563 B
SCSS
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
.RuntimeClassDetailsTolerations {
|
|
grid-template-columns: auto;
|
|
|
|
.RuntimeClassTolerations {
|
|
margin-top: var(--margin);
|
|
}
|
|
|
|
// Expanding value cell to cover 2 columns (whole Drawer width)
|
|
|
|
>.name {
|
|
grid-row-start: 1;
|
|
grid-column-start: 1;
|
|
}
|
|
|
|
>.value {
|
|
grid-row-start: 1;
|
|
grid-column-start: 1;
|
|
}
|
|
|
|
.DrawerParamToggler>.params {
|
|
margin-left: var(--drawer-item-title-width);
|
|
}
|
|
} |