f9d87c5c71
Renamed /themes/core to /themes/daux Updated /themes/{theme}/less/theme.less to allow for bootstrap overrides Added /themes/daux/less/theme.less to allow daux to function as theme - used daux-navy colors Moved fonts from themes variants into /themes/daux/fonts
25 lines
537 B
Plaintext
25 lines
537 B
Plaintext
// Panels
|
|
|
|
.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {
|
|
border-color: @border;
|
|
|
|
& > .panel-heading {
|
|
color: @heading-text-color;
|
|
background-color: @heading-bg-color;
|
|
border-color: @heading-border;
|
|
|
|
+ .panel-collapse > .panel-body {
|
|
border-top-color: @border;
|
|
}
|
|
.badge {
|
|
color: @heading-bg-color;
|
|
background-color: @heading-text-color;
|
|
}
|
|
}
|
|
& > .panel-footer {
|
|
+ .panel-collapse > .panel-body {
|
|
border-bottom-color: @border;
|
|
}
|
|
}
|
|
}
|