2015-07-01 19:30:56 -07:00
|
|
|
// Based on Paper
|
|
|
|
// Bootswatch
|
|
|
|
// -----------------------------------------------------
|
2015-07-22 11:15:45 -06:00
|
|
|
@import "/horizon/lib/bootstrap_scss/scss/bootstrap/mixins/vendor-prefixes";
|
2015-12-22 10:41:43 -07:00
|
|
|
@import "/horizon/lib/bootswatch/paper/bootswatch";
|
2016-11-17 10:41:27 -07:00
|
|
|
@import "/horizon/lib/roboto_fontface/css/roboto/sass/roboto-fontface.scss";
|
2016-03-02 17:49:43 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Patch to Paper
|
|
|
|
// Inside alerts, the text color of buttons aren't properly ignored
|
|
|
|
// https://github.com/thomaspark/bootswatch/issues/552
|
|
|
|
.alert a:not(.close).btn-primary {
|
|
|
|
color: $btn-primary-color;
|
|
|
|
}
|
|
|
|
.alert a:not(.close).btn-default {
|
|
|
|
color: $btn-default-color;
|
|
|
|
}
|
|
|
|
.alert a:not(.close).btn-info {
|
|
|
|
color: $btn-info-color;
|
|
|
|
}
|
|
|
|
.alert a:not(.close).btn-warning {
|
|
|
|
color: $btn-warning-color;
|
|
|
|
}
|
|
|
|
.alert a:not(.close).btn-danger {
|
|
|
|
color: $btn-danger-color;
|
|
|
|
}
|
2017-04-18 13:19:08 -07:00
|
|
|
|
|
|
|
.alert a.close {
|
|
|
|
font-size: $font-size-h5;
|
|
|
|
}
|