mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-07 15:46:20 +01:00
36 lines
985 B
Plaintext
36 lines
985 B
Plaintext
// Alliance Auth customisations of the bootswatch Flatly theme
|
|
// To build a new CSS file you need to `npm install -g less less-plugin-clean-css`
|
|
// Then `lessc --clean-css="--advanced" flatly.less flatly.min.css`
|
|
|
|
@import "https://raw.githubusercontent.com/thomaspark/bootswatch/v3/bower_components/bootstrap/less/bootstrap.less";
|
|
@import "https://raw.githubusercontent.com/thomaspark/bootswatch/v3/flatly/variables.less";
|
|
@import "https://raw.githubusercontent.com/thomaspark/bootswatch/fa207fbbc80bd74339e179b054a322b092be98f6/flatly/bootswatch.less";
|
|
@import "../bootstrap-locals.less";
|
|
@import "../flatly-shared.less";
|
|
|
|
.nav-tabs > li > a,
|
|
.nav-pills > li > a {
|
|
color: #000;
|
|
}
|
|
|
|
// From bootswatch Superhero
|
|
@brand-info: #5bc0de;
|
|
|
|
@table-bg-fade-percent: 40%;
|
|
|
|
// Fixup table colors to match fade
|
|
.table {
|
|
.active,
|
|
.success,
|
|
.info,
|
|
.warning,
|
|
.danger {
|
|
color: @gray-darker;
|
|
> td {
|
|
> a:not(.btn) {
|
|
color: @link-color;
|
|
}
|
|
}
|
|
}
|
|
}
|