2013-09-12 01:29:14 +02:00
|
|
|
@import "ui-mixins";
|
|
|
|
@import "ui-variables";
|
|
|
|
@import "buttons";
|
|
|
|
|
|
|
|
.panel {
|
|
|
|
&.bordered {
|
|
|
|
border-radius: @component-border-radius;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-05 21:31:07 +01:00
|
|
|
.atom-panel {
|
2013-09-12 01:29:14 +02:00
|
|
|
.text(normal);
|
|
|
|
position: relative;
|
|
|
|
background-color: @tool-panel-background-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.inset-panel {
|
|
|
|
position: relative;
|
|
|
|
background-color: @inset-panel-background-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-blurred {
|
2015-02-05 21:31:07 +01:00
|
|
|
.atom-panel,
|
2013-09-12 01:29:14 +02:00
|
|
|
.inset-panel {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.panel-heading {
|
|
|
|
.text(normal);
|
|
|
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
|
|
|
.btn {
|
2013-09-23 21:29:05 +02:00
|
|
|
padding-left: 8px;
|
|
|
|
padding-right: 8px;
|
2013-09-12 01:29:14 +02:00
|
|
|
|
|
|
|
@bg: lighten(@button-background-color, 10%);
|
|
|
|
@hover: lighten(@button-background-color-hover, 10%);
|
|
|
|
@selected: lighten(@button-background-color-selected, 10%);
|
|
|
|
@text: lighten(@text-color, 10%);
|
|
|
|
.btn-background(@bg, @hover, @selected, @text);
|
|
|
|
}
|
|
|
|
}
|
2014-03-12 14:30:47 +01:00
|
|
|
|
|
|
|
.status-bar {
|
|
|
|
height: 36px;
|
|
|
|
line-height: 36px;
|
|
|
|
}
|