Files
atom/packages/incompatible-packages/styles/incompatible-packages.less
Jan T. Sott 2ae2ef1f52 Use UI variables on container
The `.incompatible-package` container looks quite awkward in dark themes, this PR adjusts its look to match that of the `settings-view` containers ([for reference](b6b27e949d/styles/package-card.less (L15-L16))).
2020-08-27 19:13:56 +03:00

43 lines
702 B
Plaintext

@import "ui-variables";
.incompatible-packages {
background-color: @pane-item-background-color;
overflow-y: scroll;
.incompatible-package {
padding: 15px;
margin-bottom: 10px;
border-radius: 6px;
border: 1px solid @base-border-color;
background-color: lighten(@tool-panel-background-color, 8%);
overflow: hidden;
.badge {
margin-left: 1em;
}
.heading {
margin-top: 0px;
}
ul {
padding-left: 1em;
}
li {
list-style-type: none;
}
pre {
margin-top: 2em;
max-height: 25em;
overflow: scroll;
color: @text-color-error;
}
}
}
.incompatible-packages-status {
padding-left: 2px;
}