pulsar/static/panels.less

51 lines
908 B
Plaintext
Raw Normal View History

@import "ui-variables";
atom-panel-container[location="left"],
atom-panel-container[location="right"] {
display: -webkit-flex;
-webkit-flex-direction: row;
-webkit-align-items: stretch;
height: 100%;
atom-panel {
height: 100%;
}
}
// Override bootstrap styles here.
.panel {
border-radius: 0;
border: none;
background-color: transparent;
box-shadow: none;
2013-09-23 23:29:38 +04:00
&.bordered {
.panel-heading {
border-radius: @component-border-radius @component-border-radius 0 0;
}
}
}
.inset-panel {
.panel-heading {
2013-09-23 23:29:38 +04:00
border-radius: @component-border-radius @component-border-radius 0 0;
}
}
.panel-heading {
margin: 0;
border-radius: 0;
font-size: @font-size;
line-height: 1;
.btn {
@btn-height: @component-line-height - 5px;
height: @btn-height;
line-height: @btn-height;
font-size: @font-size - 2px;
position: relative;
top: -5px;
}
}