mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-12-27 08:32:30 +03:00
47 lines
754 B
Plaintext
47 lines
754 B
Plaintext
@import "ui-variables";
|
|
|
|
// Override bootstrap styles here.
|
|
.panel {
|
|
border-radius: 0;
|
|
border: none;
|
|
background-color: transparent;
|
|
box-shadow: none;
|
|
|
|
&.bordered {
|
|
.panel-heading {
|
|
border-radius: @component-border-radius @component-border-radius 0 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.inset-panel {
|
|
.panel-heading {
|
|
border-radius: @component-border-radius @component-border-radius 0 0;
|
|
}
|
|
}
|
|
|
|
.focusable-panel {
|
|
opacity: 0.8;
|
|
&:focus {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|