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 | 7517178 | 2017-03-08 14:17:01 -0800 | [diff] [blame] | 13 | body { |
| 14 | min-height: 90%; |
| 15 | } |
| 16 | |
| 17 | ui-view, xos, .wrapper, .content { |
| 18 | display: block; |
| 19 | min-height: 100%; |
| 20 | } |
| 21 | |
Matteo Scandolo | 266907e | 2016-12-20 13:41:42 -0800 | [diff] [blame] | 22 | .content > div { |
| 23 | opacity: 1 !important; |
Matteo Scandolo | 8b2370c | 2017-02-02 17:19:07 -0800 | [diff] [blame] | 24 | } |
| 25 | |
| 26 | // BOOTSTRAP OVERRIDES |
| 27 | // TODO Clean app/style/style.scss |
| 28 | |
Matteo Scandolo | 042ea63 | 2017-03-01 19:02:34 -0800 | [diff] [blame] | 29 | // ngProgress |
| 30 | #ngProgress-container { |
| 31 | position: absolute; |
| 32 | width: 100%; |
| 33 | top: 0; |
| 34 | z-index: 10000; |
| 35 | } |
| 36 | |
Matteo Scandolo | 8b2370c | 2017-02-02 17:19:07 -0800 | [diff] [blame] | 37 | // Alternate styles |
| 38 | // |
| 39 | // Generate contextual modifier classes for colorizing the alert. |
| 40 | |
| 41 | .alert-success { |
| 42 | @include alert-variant($background-dark-color, $alert-success-text, $alert-success-text); |
| 43 | } |
| 44 | |
| 45 | .alert-info { |
| 46 | @include alert-variant($background-dark-color, $alert-info-border, $alert-info-border); |
| 47 | } |
| 48 | |
| 49 | .alert-warning { |
| 50 | @include alert-variant($background-dark-color, $alert-warning-border, $alert-warning-border); |
| 51 | } |
| 52 | |
| 53 | .alert-danger { |
| 54 | @include alert-variant($background-dark-color, $alert-danger-text, $alert-danger-border); |
| 55 | } |