@esfaenza/core 15.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/components/back-top/back-top.component.d.ts +12 -0
- package/components/breadcrumb/breadcrumb.component.d.ts +15 -0
- package/components/components.module.d.ts +25 -0
- package/components/error/404/pagenotfound.component.d.ts +13 -0
- package/components/error/500/servererror.component.d.ts +17 -0
- package/components/error/Angular/angularerror.component.d.ts +24 -0
- package/components/external-page/external_pages.component.d.ts +21 -0
- package/components/index.d.ts +5 -0
- package/components/jace-login/jace-login.component.d.ts +7 -0
- package/components/navbar/modules-board/jace-modules-board.component.d.ts +13 -0
- package/components/navbar/navbar.component.d.ts +60 -0
- package/components/navbar/navbar.component.loc.d.ts +8 -0
- package/components/page/pages.component.d.ts +23 -0
- package/components/public-api.d.ts +13 -0
- package/components/redirecter/redirecter.component.d.ts +19 -0
- package/components/sidebar/sidebar.component.d.ts +39 -0
- package/components/sidebar/sidebar.component.service.d.ts +27 -0
- package/directives/directives.module.d.ts +9 -0
- package/directives/draggable/draggable.directive.d.ts +13 -0
- package/directives/index.d.ts +5 -0
- package/directives/public-api.d.ts +4 -0
- package/directives/slim-scroll/slim-scroll.directive.d.ts +15 -0
- package/directives/widget/widget.directive.d.ts +9 -0
- package/domain/index.d.ts +5 -0
- package/domain/models/core/classes/ApplicationMenu.d.ts +16 -0
- package/domain/models/core/classes/EnvOptions.d.ts +14 -0
- package/domain/models/jace/classes/AccountScope.d.ts +9 -0
- package/domain/models/jace/classes/ActiveModuleView.d.ts +15 -0
- package/domain/models/jace/classes/JaceAccount.d.ts +26 -0
- package/domain/models/jace/classes/JaceIdentity.d.ts +17 -0
- package/domain/models/jace/classes/JaceModule.d.ts +6 -0
- package/domain/models/jace/classes/JacePermission.d.ts +9 -0
- package/domain/models/jace/classes/JaceRole.d.ts +11 -0
- package/domain/models/jace/classes/User.d.ts +4 -0
- package/domain/public-api.d.ts +11 -0
- package/domain/tokens.d.ts +16 -0
- package/esm2020/components/back-top/back-top.component.mjs +43 -0
- package/esm2020/components/breadcrumb/breadcrumb.component.mjs +55 -0
- package/esm2020/components/components.module.mjs +74 -0
- package/esm2020/components/error/404/pagenotfound.component.mjs +27 -0
- package/esm2020/components/error/500/servererror.component.mjs +35 -0
- package/esm2020/components/error/Angular/angularerror.component.mjs +50 -0
- package/esm2020/components/esfaenza-core-components.mjs +5 -0
- package/esm2020/components/external-page/external_pages.component.mjs +46 -0
- package/esm2020/components/jace-login/jace-login.component.mjs +17 -0
- package/esm2020/components/navbar/modules-board/jace-modules-board.component.mjs +40 -0
- package/esm2020/components/navbar/navbar.component.loc.mjs +36 -0
- package/esm2020/components/navbar/navbar.component.mjs +179 -0
- package/esm2020/components/page/pages.component.mjs +57 -0
- package/esm2020/components/public-api.mjs +14 -0
- package/esm2020/components/redirecter/redirecter.component.mjs +53 -0
- package/esm2020/components/sidebar/sidebar.component.mjs +179 -0
- package/esm2020/components/sidebar/sidebar.component.service.mjs +58 -0
- package/esm2020/directives/directives.module.mjs +18 -0
- package/esm2020/directives/draggable/draggable.directive.mjs +48 -0
- package/esm2020/directives/esfaenza-core-directives.mjs +5 -0
- package/esm2020/directives/public-api.mjs +5 -0
- package/esm2020/directives/slim-scroll/slim-scroll.directive.mjs +40 -0
- package/esm2020/directives/widget/widget.directive.mjs +36 -0
- package/esm2020/domain/esfaenza-core-domain.mjs +5 -0
- package/esm2020/domain/models/core/classes/ApplicationMenu.mjs +26 -0
- package/esm2020/domain/models/core/classes/EnvOptions.mjs +4 -0
- package/esm2020/domain/models/jace/classes/AccountScope.mjs +8 -0
- package/esm2020/domain/models/jace/classes/ActiveModuleView.mjs +9 -0
- package/esm2020/domain/models/jace/classes/JaceAccount.mjs +5 -0
- package/esm2020/domain/models/jace/classes/JaceIdentity.mjs +16 -0
- package/esm2020/domain/models/jace/classes/JaceModule.mjs +3 -0
- package/esm2020/domain/models/jace/classes/JacePermission.mjs +3 -0
- package/esm2020/domain/models/jace/classes/JaceRole.mjs +3 -0
- package/esm2020/domain/models/jace/classes/User.mjs +3 -0
- package/esm2020/domain/public-api.mjs +12 -0
- package/esm2020/domain/tokens.mjs +11 -0
- package/esm2020/esfaenza-core.mjs +5 -0
- package/esm2020/helpers/classes/ResizeListener.mjs +38 -0
- package/esm2020/helpers/esfaenza-core-helpers.mjs +5 -0
- package/esm2020/helpers/public-api.mjs +2 -0
- package/esm2020/lib/app.component.mjs +26 -0
- package/esm2020/lib/core.module.mjs +227 -0
- package/esm2020/modules/classes/_base.module.mjs +27 -0
- package/esm2020/modules/classes/t_c.module.mjs +85 -0
- package/esm2020/modules/esfaenza-core-modules.mjs +5 -0
- package/esm2020/modules/public-api.mjs +3 -0
- package/esm2020/pipes/esfaenza-core-pipes.mjs +5 -0
- package/esm2020/pipes/included_in/included_in.pipe.mjs +17 -0
- package/esm2020/pipes/pipes.module.mjs +20 -0
- package/esm2020/pipes/public-api.mjs +7 -0
- package/esm2020/pipes/safe_html/safe_html.pipe.mjs +18 -0
- package/esm2020/pipes/safe_script/safe_script.pipe.mjs +18 -0
- package/esm2020/pipes/safe_style/safe_style.pipe.mjs +18 -0
- package/esm2020/pipes/safe_url/safe_url.pipe.mjs +18 -0
- package/esm2020/public-api.mjs +4 -0
- package/esm2020/services/classes/app.accesstoken.mjs +51 -0
- package/esm2020/services/classes/app.errorhandler.mjs +41 -0
- package/esm2020/services/classes/app.event.mjs +27 -0
- package/esm2020/services/classes/app.httpextensions.loc.mjs +15 -0
- package/esm2020/services/classes/app.httpextensions.mjs +90 -0
- package/esm2020/services/classes/app.routeguard.mjs +22 -0
- package/esm2020/services/classes/app.session.mjs +33 -0
- package/esm2020/services/classes/app.state.mjs +172 -0
- package/esm2020/services/classes/preferences/app.cache.persistor.mjs +94 -0
- package/esm2020/services/classes/preferences/app.preference.persistor.mjs +94 -0
- package/esm2020/services/esfaenza-core-services.mjs +5 -0
- package/esm2020/services/public-api.mjs +10 -0
- package/fesm2015/esfaenza-core-components.mjs +870 -0
- package/fesm2015/esfaenza-core-components.mjs.map +1 -0
- package/fesm2015/esfaenza-core-directives.mjs +138 -0
- package/fesm2015/esfaenza-core-directives.mjs.map +1 -0
- package/fesm2015/esfaenza-core-domain.mjs +99 -0
- package/fesm2015/esfaenza-core-domain.mjs.map +1 -0
- package/fesm2015/esfaenza-core-helpers.mjs +44 -0
- package/fesm2015/esfaenza-core-helpers.mjs.map +1 -0
- package/fesm2015/esfaenza-core-modules.mjs +112 -0
- package/fesm2015/esfaenza-core-modules.mjs.map +1 -0
- package/fesm2015/esfaenza-core-pipes.mjs +97 -0
- package/fesm2015/esfaenza-core-pipes.mjs.map +1 -0
- package/fesm2015/esfaenza-core-services.mjs +598 -0
- package/fesm2015/esfaenza-core-services.mjs.map +1 -0
- package/fesm2015/esfaenza-core.mjs +251 -0
- package/fesm2015/esfaenza-core.mjs.map +1 -0
- package/fesm2020/esfaenza-core-components.mjs +863 -0
- package/fesm2020/esfaenza-core-components.mjs.map +1 -0
- package/fesm2020/esfaenza-core-directives.mjs +138 -0
- package/fesm2020/esfaenza-core-directives.mjs.map +1 -0
- package/fesm2020/esfaenza-core-domain.mjs +98 -0
- package/fesm2020/esfaenza-core-domain.mjs.map +1 -0
- package/fesm2020/esfaenza-core-helpers.mjs +44 -0
- package/fesm2020/esfaenza-core-helpers.mjs.map +1 -0
- package/fesm2020/esfaenza-core-modules.mjs +112 -0
- package/fesm2020/esfaenza-core-modules.mjs.map +1 -0
- package/fesm2020/esfaenza-core-pipes.mjs +97 -0
- package/fesm2020/esfaenza-core-pipes.mjs.map +1 -0
- package/fesm2020/esfaenza-core-services.mjs +595 -0
- package/fesm2020/esfaenza-core-services.mjs.map +1 -0
- package/fesm2020/esfaenza-core.mjs +251 -0
- package/fesm2020/esfaenza-core.mjs.map +1 -0
- package/helpers/classes/ResizeListener.d.ts +12 -0
- package/helpers/index.d.ts +5 -0
- package/helpers/public-api.d.ts +1 -0
- package/index.d.ts +5 -0
- package/lib/app.component.d.ts +12 -0
- package/lib/core.module.d.ts +82 -0
- package/modules/classes/_base.module.d.ts +4 -0
- package/modules/classes/t_c.module.d.ts +19 -0
- package/modules/index.d.ts +5 -0
- package/modules/public-api.d.ts +2 -0
- package/package.json +115 -0
- package/pipes/included_in/included_in.pipe.d.ts +7 -0
- package/pipes/index.d.ts +5 -0
- package/pipes/pipes.module.d.ts +11 -0
- package/pipes/public-api.d.ts +6 -0
- package/pipes/safe_html/safe_html.pipe.d.ts +10 -0
- package/pipes/safe_script/safe_script.pipe.d.ts +10 -0
- package/pipes/safe_style/safe_style.pipe.d.ts +10 -0
- package/pipes/safe_url/safe_url.pipe.d.ts +10 -0
- package/public-api.d.ts +3 -0
- package/services/classes/app.accesstoken.d.ts +15 -0
- package/services/classes/app.errorhandler.d.ts +11 -0
- package/services/classes/app.event.d.ts +10 -0
- package/services/classes/app.httpextensions.d.ts +34 -0
- package/services/classes/app.httpextensions.loc.d.ts +8 -0
- package/services/classes/app.routeguard.d.ts +10 -0
- package/services/classes/app.session.d.ts +14 -0
- package/services/classes/app.state.d.ts +59 -0
- package/services/classes/preferences/app.cache.persistor.d.ts +25 -0
- package/services/classes/preferences/app.preference.persistor.d.ts +25 -0
- package/services/index.d.ts +5 -0
- package/services/public-api.d.ts +9 -0
- package/theme/initial.scss +48 -0
- package/theme/styles/_base.scss +257 -0
- package/theme/styles/_bootstrap-override.scss +1624 -0
- package/theme/styles/_font.scss +86 -0
- package/theme/styles/_fullcalendar-override.scss +86 -0
- package/theme/styles/_libs-override.scss +97 -0
- package/theme/styles/_material-override.scss +231 -0
- package/theme/styles/_mixins.scss +50 -0
- package/theme/styles/_preloader.scss +119 -0
- package/theme/styles/_project-override.scss +2383 -0
- package/theme/styles/_variables.scss +52 -0
- package/theme/styles/skins/_blue.scss +16 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { HttpClient } from "@angular/common/http";
|
|
2
|
+
import { BaseSessionRetriever, PreferencesPersistor } from "@esfaenza/preferences";
|
|
3
|
+
import { LocalizationService } from "@esfaenza/localizations";
|
|
4
|
+
import { TokenService } from "../app.accesstoken";
|
|
5
|
+
import { Observable } from "rxjs";
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class ApplicationPreferencesPersistor extends PreferencesPersistor {
|
|
8
|
+
private lc;
|
|
9
|
+
private http;
|
|
10
|
+
private tks;
|
|
11
|
+
constructor(lc: LocalizationService, http: HttpClient, tks: TokenService, session: BaseSessionRetriever);
|
|
12
|
+
persist<T>(key: string, item: T): Observable<boolean>;
|
|
13
|
+
recover<T>(key?: string): Observable<T>;
|
|
14
|
+
recoverAll(): Observable<{
|
|
15
|
+
[index: string]: any;
|
|
16
|
+
}>;
|
|
17
|
+
remove(key?: string): Observable<boolean>;
|
|
18
|
+
clear(): Observable<boolean>;
|
|
19
|
+
private getHeaders;
|
|
20
|
+
private getSessionUrl;
|
|
21
|
+
private getItemsUrl;
|
|
22
|
+
private getItemUrl;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApplicationPreferencesPersistor, never>;
|
|
24
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApplicationPreferencesPersistor>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from './classes/app.accesstoken';
|
|
2
|
+
export * from './classes/app.errorhandler';
|
|
3
|
+
export * from './classes/app.event';
|
|
4
|
+
export * from './classes/app.httpextensions';
|
|
5
|
+
export * from './classes/app.session';
|
|
6
|
+
export * from './classes/app.state';
|
|
7
|
+
export * from './classes/preferences/app.cache.persistor';
|
|
8
|
+
export * from './classes/preferences/app.preference.persistor';
|
|
9
|
+
export * from './classes/app.routeguard';
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
//ATTENZIONE: Non scrivere nessun tipo di lettera accentata in questo file altrimenti schiatta tutto quanto
|
|
2
|
+
|
|
3
|
+
//Integrazione Angular Material. Dev'essere nel primissimo punto dove vengono caricati i CSS, cioe' qui
|
|
4
|
+
@use '@angular/material' as mat;
|
|
5
|
+
// TODO(v15): As of v15 mat.legacy-core no longer includes default typography styles.
|
|
6
|
+
// The following line adds:
|
|
7
|
+
// 1. Default typography styles for all components
|
|
8
|
+
// 2. Styles for typography hierarchy classes (e.g. .mat-headline-1)
|
|
9
|
+
// If you specify typography styles for the components you use elsewhere, you should delete this line.
|
|
10
|
+
// If you don't need the default component typographies but still want the hierarchy styles,
|
|
11
|
+
// you can delete this line and instead use:
|
|
12
|
+
// `@include mat.legacy-typography-hierarchy(mat.define-legacy-typography-config());`
|
|
13
|
+
@include mat.all-legacy-component-typographies();
|
|
14
|
+
@include mat.legacy-core();
|
|
15
|
+
$application-frontend-primary: mat.define-palette(mat.$indigo-palette);
|
|
16
|
+
$application-frontend-accent: mat.define-palette(mat.$pink-palette, A200, A100, A400);
|
|
17
|
+
$application-frontend-warn: mat.define-palette(mat.$red-palette);
|
|
18
|
+
$application-frontend-theme: mat.define-light-theme($application-frontend-primary, $application-frontend-accent, $application-frontend-warn);
|
|
19
|
+
@include mat.all-legacy-component-themes($application-frontend-theme);
|
|
20
|
+
|
|
21
|
+
//Sembra che il resolve di sta parte sia:
|
|
22
|
+
//Se esiste cartella qui --> prendila (tipo styles etc..)
|
|
23
|
+
//Se non esiste, cerca dalla root --> tipo i .css
|
|
24
|
+
//Per qualche motivo se si mettono path relative come c'erano prima non funziona na minchia... GG
|
|
25
|
+
|
|
26
|
+
@import 'styles/preloader';
|
|
27
|
+
@import 'styles/_fullcalendar-override';
|
|
28
|
+
|
|
29
|
+
body {
|
|
30
|
+
font-family: Roboto, "Helvetica Neue", sans-serif;
|
|
31
|
+
overflow: hidden !important;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
//font per la sezione dei moduli nella navbar
|
|
35
|
+
@font-face {
|
|
36
|
+
font-family: 'Passion One';
|
|
37
|
+
font-style: normal;
|
|
38
|
+
font-weight: 400;
|
|
39
|
+
src: local('Passion One Regular'), local('PassionOne-Regular'), url(https://fonts.gstatic.com/s/passionone/v10/PbynFmL8HhTPqbjUzux3JEuf9lvQ6Q.woff2) format('woff2');
|
|
40
|
+
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
41
|
+
}
|
|
42
|
+
@font-face {
|
|
43
|
+
font-family: 'Passion One';
|
|
44
|
+
font-style: normal;
|
|
45
|
+
font-weight: 400;
|
|
46
|
+
src: local('Passion One Regular'), local('PassionOne-Regular'), url(https://fonts.gstatic.com/s/passionone/v10/PbynFmL8HhTPqbjUzux3JEuR9ls.woff2) format('woff2');
|
|
47
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
|
48
|
+
}
|
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
html {
|
|
2
|
+
height: 100%;
|
|
3
|
+
min-height: 100%;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
body {
|
|
7
|
+
font-family: $font-family;
|
|
8
|
+
font-size: 14px;
|
|
9
|
+
color: $text-color;
|
|
10
|
+
|
|
11
|
+
&::before {
|
|
12
|
+
content: '';
|
|
13
|
+
position: fixed;
|
|
14
|
+
width: 100%;
|
|
15
|
+
height: 100%;
|
|
16
|
+
top: 0;
|
|
17
|
+
left: 0;
|
|
18
|
+
// @include theme-bg($body-bg-gradient-color-1, $body-bg-gradient-color-2);
|
|
19
|
+
background: $body-bg-color; // #5b6e8a;
|
|
20
|
+
will-change: transform;
|
|
21
|
+
z-index: -1;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
|
|
26
|
+
font-weight: normal;
|
|
27
|
+
|
|
28
|
+
small {
|
|
29
|
+
font-size: 70%;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
p {
|
|
34
|
+
// font-weight: 300;
|
|
35
|
+
// font-size: 14px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
::-webkit-scrollbar {
|
|
39
|
+
width: 8px;
|
|
40
|
+
height: 8px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
::-webkit-scrollbar-button {
|
|
44
|
+
width: 0px;
|
|
45
|
+
height: 0px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/*TODO: debez down v*/
|
|
49
|
+
::-webkit-scrollbar-thumb {
|
|
50
|
+
background: #e1e1e1;
|
|
51
|
+
border: 0px none #ffffff;
|
|
52
|
+
border-radius: 0px;
|
|
53
|
+
|
|
54
|
+
&:hover {
|
|
55
|
+
background: #cccccc;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
&:active {
|
|
59
|
+
background: #888888;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
::-webkit-scrollbar-track {
|
|
64
|
+
background: #666666;
|
|
65
|
+
border: 0px none #ffffff;
|
|
66
|
+
border-radius: 0px;
|
|
67
|
+
|
|
68
|
+
&:hover {
|
|
69
|
+
background: #666666;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
&:active {
|
|
73
|
+
background: #333333;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
/*TODO: debez up ^ */
|
|
77
|
+
|
|
78
|
+
::-webkit-scrollbar-corner {
|
|
79
|
+
background: transparent;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.transition {
|
|
83
|
+
-webkit-transition: .3s;
|
|
84
|
+
-moz-transition: .3s;
|
|
85
|
+
-ms-transition: .3s;
|
|
86
|
+
-o-transition: .3s;
|
|
87
|
+
transition: .3s;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
//---------widget---------------
|
|
91
|
+
.widget-controls {
|
|
92
|
+
position: absolute;
|
|
93
|
+
z-index: 1;
|
|
94
|
+
top: 0;
|
|
95
|
+
right: 0;
|
|
96
|
+
padding: 10px 20px;
|
|
97
|
+
font-size: 14px;
|
|
98
|
+
|
|
99
|
+
a {
|
|
100
|
+
color: $default-color;
|
|
101
|
+
margin-left: 7px;
|
|
102
|
+
line-height: 1;
|
|
103
|
+
vertical-align: top;
|
|
104
|
+
display: inline-block;
|
|
105
|
+
|
|
106
|
+
i.glyphicon-resize-full {
|
|
107
|
+
font-size: 13px;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
&:hover {
|
|
111
|
+
color: rgba($default-color, 0.7);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
&.dropdown-toggle:after {
|
|
115
|
+
display: none;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
ul.dropdown-menu {
|
|
120
|
+
min-width: 9rem;
|
|
121
|
+
padding: 0;
|
|
122
|
+
border-radius: 0;
|
|
123
|
+
|
|
124
|
+
li {
|
|
125
|
+
padding: 4px;
|
|
126
|
+
overflow: hidden;
|
|
127
|
+
|
|
128
|
+
a {
|
|
129
|
+
color: $main-color;
|
|
130
|
+
font-size: 13px;
|
|
131
|
+
width: 100%;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
&:hover {
|
|
135
|
+
background-color: $main-color;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
&:hover a {
|
|
139
|
+
color: $navbar-text-color;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.card.fullscreened {
|
|
146
|
+
// @include theme-bg($body-bg-gradient-color-1, $body-bg-gradient-color-2);
|
|
147
|
+
.card-header {
|
|
148
|
+
line-height: 35px;
|
|
149
|
+
|
|
150
|
+
.widget-controls {
|
|
151
|
+
padding: 20px;
|
|
152
|
+
|
|
153
|
+
a {
|
|
154
|
+
margin-left: 12px;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
a.setting {
|
|
158
|
+
display: none;
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
&.card-primary {
|
|
164
|
+
background: $primary-color;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
&.card-success {
|
|
168
|
+
background: $success-color;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
&.card-info {
|
|
172
|
+
background: $info-color;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
&.card-warning {
|
|
176
|
+
background: $warning-color;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
&.card-danger {
|
|
180
|
+
background: $danger-color;
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.scrolling {
|
|
185
|
+
height: 100%;
|
|
186
|
+
overflow-y: scroll;
|
|
187
|
+
padding-bottom: 60px;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.no-margin {
|
|
191
|
+
margin: 0;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.bottom-15 {
|
|
195
|
+
margin-bottom: 15px;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.m-t-5 {
|
|
199
|
+
margin-top: 5px;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.m-t-15 {
|
|
203
|
+
margin-top: 15px;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.res-img {
|
|
207
|
+
width: 100%;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.chart-outher {
|
|
211
|
+
width: 55%;
|
|
212
|
+
margin: 0 auto;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.p-t-10 {
|
|
216
|
+
padding-top: 10%;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.o-visible {
|
|
220
|
+
overflow: visible;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.w-150 {
|
|
224
|
+
width: 150px;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.w-200 {
|
|
228
|
+
width: 200px;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
@media (max-width: 543px) {
|
|
232
|
+
.chart-outher {
|
|
233
|
+
width: 100%;
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
// Small devices (landscape phones, 544px and up)
|
|
238
|
+
@media (min-width: 544px) and (max-width: 767px) {
|
|
239
|
+
.chart-outher {
|
|
240
|
+
width: 85%;
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
// Medium devices (tablets, 768px and up)
|
|
245
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
// Large devices (desktops, 992px and up)
|
|
249
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
|
250
|
+
.chart-outher {
|
|
251
|
+
width: 65%;
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
// Extra large devices (large desktops, 1200px and up)
|
|
256
|
+
@media (min-width: 1200px) {
|
|
257
|
+
}
|