mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
59 lines
1000 B
SCSS
59 lines
1000 B
SCSS
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
.ClusterIssues {
|
|
min-height: 350px;
|
|
position: relative;
|
|
grid-area: issues;
|
|
padding: calc(var(--margin) * 2) 0;
|
|
background: var(--contentColor);
|
|
|
|
&:global(.OnlyClusterIssues) {
|
|
grid-row: row1-start / row2-end;
|
|
}
|
|
|
|
@media (max-width: 1150px) {
|
|
grid-area: unset;
|
|
|
|
&:global(.OnlyClusterIssues) {
|
|
grid-row: auto;
|
|
}
|
|
}
|
|
|
|
.SubHeader {
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
|
|
:global(.Icon) {
|
|
font-size: 130%;
|
|
color: var(--colorError);
|
|
}
|
|
}
|
|
|
|
.message {
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
flex-grow: 3;
|
|
}
|
|
|
|
.object {
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
flex-grow: 2;
|
|
}
|
|
|
|
.noIssues {
|
|
.Icon {
|
|
color: white;
|
|
}
|
|
|
|
.title {
|
|
font-size: large;
|
|
color: var(--textColorAccent);
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
}
|