Matteo Scandolo | 8b2370c | 2017-02-02 17:19:07 -0800 | [diff] [blame] | 1 | @import './app/style/vars'; |
| 2 | @import '../node_modules/bootstrap-sass/assets/stylesheets/_bootstrap.scss'; |
| 3 | @import './app/style/style.scss'; |
| 4 | @import './app/style/stroke-icons/style.css'; |
| 5 | @import './app/style/pe-icons/pe-icon-7-stroke.css'; |
Matteo Scandolo | 042ea63 | 2017-03-01 19:02:34 -0800 | [diff] [blame] | 6 | @import '../node_modules/ngprogress/ngProgress.css'; |
Matteo Scandolo | 8b2370c | 2017-02-02 17:19:07 -0800 | [diff] [blame] | 7 | |
Matteo Scandolo | a8a6fbb | 2016-12-21 16:59:08 -0800 | [diff] [blame] | 8 | html, body.blank { |
| 9 | height: 100%; |
| 10 | min-height: 100%; |
| 11 | } |
| 12 | |
Matteo Scandolo | 266907e | 2016-12-20 13:41:42 -0800 | [diff] [blame] | 13 | .content > div { |
| 14 | opacity: 1 !important; |
Matteo Scandolo | 8b2370c | 2017-02-02 17:19:07 -0800 | [diff] [blame] | 15 | } |
| 16 | |
| 17 | // BOOTSTRAP OVERRIDES |
| 18 | // TODO Clean app/style/style.scss |
| 19 | |
Matteo Scandolo | 042ea63 | 2017-03-01 19:02:34 -0800 | [diff] [blame] | 20 | // ngProgress |
| 21 | #ngProgress-container { |
| 22 | position: absolute; |
| 23 | width: 100%; |
| 24 | top: 0; |
| 25 | z-index: 10000; |
| 26 | } |
| 27 | |
Matteo Scandolo | 8b2370c | 2017-02-02 17:19:07 -0800 | [diff] [blame] | 28 | // Alternate styles |
| 29 | // |
| 30 | // Generate contextual modifier classes for colorizing the alert. |
| 31 | |
| 32 | .alert-success { |
| 33 | @include alert-variant($background-dark-color, $alert-success-text, $alert-success-text); |
| 34 | } |
| 35 | |
| 36 | .alert-info { |
| 37 | @include alert-variant($background-dark-color, $alert-info-border, $alert-info-border); |
| 38 | } |
| 39 | |
| 40 | .alert-warning { |
| 41 | @include alert-variant($background-dark-color, $alert-warning-border, $alert-warning-border); |
| 42 | } |
| 43 | |
| 44 | .alert-danger { |
| 45 | @include alert-variant($background-dark-color, $alert-danger-text, $alert-danger-border); |
| 46 | } |