Files
atom/static/atom-ui/styles/panels.less
2018-11-27 21:01:41 +09:00

39 lines
806 B
Plaintext

@import "ui-variables";
//
// Panels
// --------------------------------------------------
.tool-panel, // deprecated: .tool-panel
.panel, // deprecated: .panel
atom-panel {
background-color: @tool-panel-background-color;
}
.inset-panel {
border-radius: @component-border-radius;
background-color: @inset-panel-background-color;
}
.panel-heading {
margin: 0;
padding: @component-padding;
border-radius: 0;
font-size: @font-size;
line-height: 1;
background-color: @panel-heading-background-color;
.inset-panel & {
border-radius: @component-border-radius @component-border-radius 0 0;
}
.btn {
@btn-height: @component-line-height - 5px;
height: @btn-height;
line-height: @btn-height;
font-size: @font-size - 2px;
position: relative;
top: -5px;
}
}