File: _styles.scss

package info (click to toggle)
openstack-dashboard-debian-theme 1.0.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 200 kB
  • sloc: makefile: 3
file content (31 lines) | stat: -rw-r--r-- 809 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Based on Paper
// Bootswatch
// -----------------------------------------------------
@import "/horizon/lib/bootstrap_scss/scss/bootstrap/mixins/vendor-prefixes";
@import "/horizon/lib/bootswatch/paper/bootswatch";
@import "/horizon/lib/roboto_fontface/css/roboto/sass/roboto-fontface.scss";



// 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;
}

.alert a.close {
  font-size: $font-size-h5;
}