mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Co-authored-by: Mikko Aspiala <mikko.aspiala@gmail.com> Co-authored-by: Janne Savolainen <janne.savolainen@live.fi>
77 lines
1.3 KiB
SCSS
77 lines
1.3 KiB
SCSS
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
@import "../release.mixins";
|
|
|
|
.ReleaseDetails {
|
|
.DrawerItem {
|
|
align-items: center;
|
|
}
|
|
|
|
.loading-error {
|
|
color: red;
|
|
text-align: center;
|
|
}
|
|
|
|
.status {
|
|
@include release-status-bgs;
|
|
}
|
|
|
|
.chart {
|
|
.upgrade {
|
|
min-width: 150px;
|
|
}
|
|
}
|
|
|
|
.resources {
|
|
.SubTitle {
|
|
text-transform: none;
|
|
padding-left: 0;
|
|
}
|
|
|
|
.Table {
|
|
margin-bottom: $margin * 4;
|
|
border: 1px solid var(--drawerSubtitleBackground);
|
|
border-radius: $radius;
|
|
overflow: auto;
|
|
|
|
.TableHead {
|
|
border-bottom: none;
|
|
|
|
.TableCell {
|
|
background-color: var(--drawerSubtitleBackground);
|
|
word-break: unset;
|
|
}
|
|
}
|
|
|
|
.TableCell {
|
|
text-overflow: unset;
|
|
word-break: break-word;
|
|
min-width: 100px;
|
|
|
|
&.name {
|
|
flex-basis: auto;
|
|
flex-grow: 0;
|
|
width: 230px;
|
|
}
|
|
|
|
&.volume {
|
|
flex-basis: 30%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.notes {
|
|
white-space: pre-line;
|
|
font-family: "RobotoMono", monospace;
|
|
font-size: small;
|
|
}
|
|
|
|
.values + .Button {
|
|
align-self: flex-start;
|
|
}
|
|
}
|