1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/dashboard/client/components/+apps-releases/release-details.scss
Jari Kolehmainen 1d0815abd2
Lens app source code (#119)
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
2020-03-15 09:52:02 +02:00

86 lines
1.3 KiB
SCSS

@import "./release.mixins.scss";
.ReleaseDetails {
&.light {
.AceEditor {
border: 1px solid gainsboro;
border-radius: $radius;
}
}
.DrawerItem {
align-items: center;
}
.status {
.Badge {
@include release-status-bgs;
&:first-child {
margin-left: 0;
}
}
}
.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;
@include custom-scrollbar();
.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 {
.AceEditor {
min-height: 300px;
}
.AceEditor + .Button {
align-self: flex-start;
}
}
}