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