mirror of
https://github.com/Rnhmjoj/solarized-dark-ui
synced 2025-01-10 09:24:21 +01:00
50 lines
871 B
Plaintext
50 lines
871 B
Plaintext
@import "ui-mixins";
|
|
@import "ui-variables";
|
|
@import "buttons";
|
|
|
|
.panel {
|
|
&.bordered {
|
|
border-radius: @component-border-radius;
|
|
}
|
|
}
|
|
|
|
.atom-panel {
|
|
.text(normal);
|
|
position: relative;
|
|
background-color: @tool-panel-background-color;
|
|
}
|
|
|
|
.inset-panel {
|
|
position: relative;
|
|
background-color: @inset-panel-background-color;
|
|
}
|
|
|
|
.is-blurred {
|
|
.atom-panel,
|
|
.inset-panel {
|
|
}
|
|
}
|
|
|
|
.panel-heading {
|
|
.text(normal);
|
|
|
|
background-color: transparent;
|
|
|
|
.btn {
|
|
padding-left: 8px;
|
|
padding-right: 8px;
|
|
|
|
@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);
|
|
}
|
|
}
|
|
|
|
.status-bar {
|
|
color: @text-color-info;
|
|
height: 36px;
|
|
line-height: 36px;
|
|
}
|