@esfaenza/core 15.2.41 → 15.2.42-beta2
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/assets/fontawesome/css/all.css +27093 -0
- package/assets/fontawesome/css/all.min.css +9 -0
- package/assets/fontawesome/css/brands.css +1522 -0
- package/assets/fontawesome/css/brands.min.css +6 -0
- package/assets/fontawesome/css/duotone.css +12491 -0
- package/assets/fontawesome/css/duotone.min.css +6 -0
- package/assets/fontawesome/css/fontawesome.css +12984 -0
- package/assets/fontawesome/css/fontawesome.min.css +9 -0
- package/assets/fontawesome/css/light.css +19 -0
- package/assets/fontawesome/css/light.min.css +6 -0
- package/assets/fontawesome/css/regular.css +19 -0
- package/assets/fontawesome/css/regular.min.css +6 -0
- package/assets/fontawesome/css/sharp-regular.css +19 -0
- package/assets/fontawesome/css/sharp-regular.min.css +6 -0
- package/assets/fontawesome/css/sharp-solid.css +19 -0
- package/assets/fontawesome/css/sharp-solid.min.css +6 -0
- package/assets/fontawesome/css/solid.css +19 -0
- package/assets/fontawesome/css/solid.min.css +6 -0
- package/assets/fontawesome/css/svg-with-js.css +638 -0
- package/assets/fontawesome/css/svg-with-js.min.css +6 -0
- package/assets/fontawesome/css/thin.css +19 -0
- package/assets/fontawesome/css/thin.min.css +6 -0
- package/assets/fontawesome/css/v4-font-face.css +26 -0
- package/assets/fontawesome/css/v4-font-face.min.css +6 -0
- package/assets/fontawesome/css/v4-shims.css +2194 -0
- package/assets/fontawesome/css/v4-shims.min.css +6 -0
- package/assets/fontawesome/css/v5-font-face.css +34 -0
- package/assets/fontawesome/css/v5-font-face.min.css +6 -0
- package/assets/fontawesome/webfonts/fa-brands-400.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-brands-400.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-duotone-900.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-duotone-900.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-light-300.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-light-300.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-regular-400.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-regular-400.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-sharp-regular-400.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-sharp-regular-400.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-sharp-solid-900.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-sharp-solid-900.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-solid-900.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-solid-900.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-thin-100.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-thin-100.woff2 +0 -0
- package/assets/fontawesome/webfonts/fa-v4compatibility.ttf +0 -0
- package/assets/fontawesome/webfonts/fa-v4compatibility.woff2 +0 -0
- package/components/components.module.d.ts +22 -16
- package/components/page-structure/breadcrumb/breadcrumb.component.d.ts +23 -0
- package/components/{navbar → page-structure/navbar}/navbar.component.d.ts +6 -16
- package/components/{sidebar → page-structure/sidebar}/sidebar.component.d.ts +32 -5
- package/components/public-api.d.ts +20 -15
- package/components/search/es-filters/es-filters.component.d.ts +27 -0
- package/components/search/es-filters/es-filters.service.d.ts +6 -0
- package/components/search/filters-sidebar/filters-sidebar.component.d.ts +20 -0
- package/components/search/filters-sidebar-item/filters-sidebar-item.component.d.ts +16 -0
- package/components/search/filters-sidebar-section/filters-sidebar-section.component.d.ts +9 -0
- package/components/search/filters-topbar/filters-topbar.component.d.ts +38 -0
- package/domain/models/decorators/decorators.d.ts +1 -0
- package/domain/models/jace/ActiveModuleView.d.ts +8 -8
- package/domain/models/user/ChangePasswordDto.d.ts +9 -0
- package/domain/models/user/ChangeProfilePictureDto.d.ts +4 -0
- package/domain/models/user/UpdateAccountRecoverySettingsDto.d.ts +6 -0
- package/domain/public-api.d.ts +4 -0
- package/esm2020/components/components.module.mjs +74 -20
- package/esm2020/components/page-structure/back-top/back-top.component.mjs +43 -0
- package/esm2020/components/page-structure/base/base.component.mjs +55 -0
- package/esm2020/components/page-structure/base/reactive.component.mjs +26 -0
- package/esm2020/components/page-structure/breadcrumb/breadcrumb.component.mjs +70 -0
- package/esm2020/components/page-structure/error/404/pagenotfound.component.mjs +30 -0
- package/esm2020/components/page-structure/error/500/servererror.component.mjs +39 -0
- package/esm2020/components/page-structure/error/Angular/angularerror.component.mjs +55 -0
- package/esm2020/components/page-structure/external-page/external_pages.component.mjs +47 -0
- package/esm2020/components/{jace-login → page-structure/jace-login}/jace-login.component.mjs +1 -1
- package/esm2020/components/page-structure/jace-resource/jace-resource.component.mjs +65 -0
- package/esm2020/components/page-structure/navbar/modules-board/jace-modules-board.component.mjs +40 -0
- package/esm2020/components/page-structure/navbar/navbar.component.loc.mjs +36 -0
- package/esm2020/components/page-structure/navbar/navbar.component.mjs +161 -0
- package/esm2020/components/page-structure/page/pages.component.mjs +60 -0
- package/esm2020/components/page-structure/redirecter/redirecter.component.mjs +53 -0
- package/esm2020/components/page-structure/sidebar/sidebar.component.mjs +302 -0
- package/esm2020/components/public-api.mjs +21 -16
- package/esm2020/components/search/es-filters/es-filters.component.mjs +56 -0
- package/esm2020/components/search/es-filters/es-filters.service.mjs +19 -0
- package/esm2020/components/search/filters-sidebar/filters-sidebar.component.mjs +65 -0
- package/esm2020/components/search/filters-sidebar-item/filters-sidebar-item.component.mjs +39 -0
- package/esm2020/components/search/filters-sidebar-section/filters-sidebar-section.component.mjs +22 -0
- package/esm2020/components/search/filters-topbar/filters-topbar.component.mjs +94 -0
- package/esm2020/domain/models/decorators/decorators.mjs +6 -0
- package/esm2020/domain/models/jace/ActiveModuleView.mjs +1 -1
- package/esm2020/domain/models/user/ChangePasswordDto.mjs +11 -0
- package/esm2020/domain/models/user/ChangeProfilePictureDto.mjs +6 -0
- package/esm2020/domain/models/user/UpdateAccountRecoverySettingsDto.mjs +8 -0
- package/esm2020/domain/public-api.mjs +5 -1
- package/esm2020/lib/app.component.mjs +3 -3
- package/esm2020/lib/core.module.mjs +1 -1
- package/esm2020/services/classes/preferences/user/app.userpreferences.base.mjs +76 -0
- package/esm2020/services/public-api.mjs +2 -1
- package/fesm2015/esfaenza-core-components.mjs +532 -161
- package/fesm2015/esfaenza-core-components.mjs.map +1 -1
- package/fesm2015/esfaenza-core-domain.mjs +32 -1
- package/fesm2015/esfaenza-core-domain.mjs.map +1 -1
- package/fesm2015/esfaenza-core-services.mjs +85 -5
- package/fesm2015/esfaenza-core-services.mjs.map +1 -1
- package/fesm2015/esfaenza-core.mjs +2 -2
- package/fesm2015/esfaenza-core.mjs.map +1 -1
- package/fesm2020/esfaenza-core-components.mjs +527 -160
- package/fesm2020/esfaenza-core-components.mjs.map +1 -1
- package/fesm2020/esfaenza-core-domain.mjs +32 -1
- package/fesm2020/esfaenza-core-domain.mjs.map +1 -1
- package/fesm2020/esfaenza-core-services.mjs +72 -5
- package/fesm2020/esfaenza-core-services.mjs.map +1 -1
- package/fesm2020/esfaenza-core.mjs +2 -2
- package/fesm2020/esfaenza-core.mjs.map +1 -1
- package/lib/core.module.d.ts +2 -1
- package/package.json +2 -2
- package/services/classes/preferences/user/app.userpreferences.base.d.ts +23 -0
- package/services/public-api.d.ts +1 -0
- package/theme/styles/_base.scss +8 -23
- package/theme/styles/_bootstrap-override.scss +36 -62
- package/theme/styles/_libs-override.scss +43 -6
- package/theme/styles/_project-override.scss +66 -0
- package/theme/styles/_variables.scss +14 -42
- package/theme/styles/skins/enuma.scss +60 -0
- package/theme/styles/skins/etnograph.scss +52 -0
- package/theme/styles/skins/jace.scss +63 -0
- package/assets/fonts/fontawesome/FontAwesome.otf +0 -0
- package/assets/fonts/fontawesome/fontawesome-webfont.eot +0 -0
- package/assets/fonts/fontawesome/fontawesome-webfont.svg +0 -2671
- package/assets/fonts/fontawesome/fontawesome-webfont.ttf +0 -0
- package/assets/fonts/fontawesome/fontawesome-webfont.woff +0 -0
- package/assets/fonts/fontawesome/fontawesome-webfont.woff2 +0 -0
- package/assets/styles/font-awesome.min.css +0 -2929
- package/components/breadcrumb/breadcrumb.component.d.ts +0 -19
- package/esm2020/components/back-top/back-top.component.mjs +0 -43
- package/esm2020/components/base/base.component.mjs +0 -55
- package/esm2020/components/base/reactive.component.mjs +0 -26
- package/esm2020/components/breadcrumb/breadcrumb.component.mjs +0 -60
- package/esm2020/components/error/404/pagenotfound.component.mjs +0 -30
- package/esm2020/components/error/500/servererror.component.mjs +0 -39
- package/esm2020/components/error/Angular/angularerror.component.mjs +0 -55
- package/esm2020/components/external-page/external_pages.component.mjs +0 -47
- package/esm2020/components/jace-resource/jace-resource.component.mjs +0 -65
- package/esm2020/components/navbar/modules-board/jace-modules-board.component.mjs +0 -40
- package/esm2020/components/navbar/navbar.component.loc.mjs +0 -36
- package/esm2020/components/navbar/navbar.component.mjs +0 -208
- package/esm2020/components/page/pages.component.mjs +0 -60
- package/esm2020/components/redirecter/redirecter.component.mjs +0 -53
- package/esm2020/components/sidebar/sidebar.component.mjs +0 -210
- package/theme/styles/skins/_blue.scss +0 -16
- /package/components/{back-top → page-structure/back-top}/back-top.component.d.ts +0 -0
- /package/components/{base → page-structure/base}/base.component.d.ts +0 -0
- /package/components/{base → page-structure/base}/reactive.component.d.ts +0 -0
- /package/components/{error → page-structure/error}/404/pagenotfound.component.d.ts +0 -0
- /package/components/{error → page-structure/error}/500/servererror.component.d.ts +0 -0
- /package/components/{error → page-structure/error}/Angular/angularerror.component.d.ts +0 -0
- /package/components/{external-page → page-structure/external-page}/external_pages.component.d.ts +0 -0
- /package/components/{jace-login → page-structure/jace-login}/jace-login.component.d.ts +0 -0
- /package/components/{jace-resource → page-structure/jace-resource}/jace-resource.component.d.ts +0 -0
- /package/components/{navbar → page-structure/navbar}/modules-board/jace-modules-board.component.d.ts +0 -0
- /package/components/{navbar → page-structure/navbar}/navbar.component.loc.d.ts +0 -0
- /package/components/{page → page-structure/page}/pages.component.d.ts +0 -0
- /package/components/{redirecter → page-structure/redirecter}/redirecter.component.d.ts +0 -0
|
@@ -1,52 +1,24 @@
|
|
|
1
|
-
@import "skins/
|
|
1
|
+
@import "skins/jace";
|
|
2
2
|
|
|
3
|
+
/**** Base ****/
|
|
3
4
|
$body-bg-color: #e9ebee;
|
|
4
5
|
$text-color: #242424;
|
|
6
|
+
|
|
7
|
+
/*** Utilizzati da Azimuth ***/
|
|
8
|
+
$main-color: $primary-dual-color;
|
|
9
|
+
$dark-color: $secondary-color;
|
|
10
|
+
$default-color: $fill-color;
|
|
11
|
+
|
|
12
|
+
/**** Bootstrap ****/
|
|
5
13
|
$gray: #555;
|
|
6
14
|
$gray-light: #ccc;
|
|
7
15
|
|
|
8
|
-
/****
|
|
9
|
-
$assets-root: '/assets/';
|
|
16
|
+
/**** Roots ****/
|
|
17
|
+
$assets-root: '/dist/assets/';
|
|
10
18
|
$images-root: $assets-root + 'img/';
|
|
11
19
|
$fonts-root: $assets-root + 'fonts/';
|
|
12
20
|
|
|
13
21
|
/**** General ****/
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
$navbar-text-color: $default-color;
|
|
18
|
-
$navbar-height: 60px;
|
|
19
|
-
|
|
20
|
-
/**** Sidebar ****/
|
|
21
|
-
$sidebar-width: 230px;
|
|
22
|
-
|
|
23
|
-
/**** Progress ****/
|
|
24
|
-
$progress-border-radius: 0;
|
|
25
|
-
$progress-height: 20px;
|
|
26
|
-
|
|
27
|
-
/**** Fonts ****/
|
|
28
|
-
$font-thin: 100;
|
|
29
|
-
$font-light: 300;
|
|
30
|
-
$font-normal: 400;
|
|
31
|
-
$font-bold: 500;
|
|
32
|
-
$font-bolder: 700;
|
|
33
|
-
$font-ultraBold: 900;
|
|
34
|
-
|
|
35
|
-
/**** Social icons ****/
|
|
36
|
-
$facebook-color: #3b5998;
|
|
37
|
-
$twitter-color: #55acee;
|
|
38
|
-
$instagram-color: #8a3ab9;
|
|
39
|
-
$pinterest-color: #c92228;
|
|
40
|
-
$google-color: #dd4b39;
|
|
41
|
-
$linkedin-color: #0177B5;
|
|
42
|
-
$github-color: #6b6b6b;
|
|
43
|
-
$stackoverflow-color: #2F96E8;
|
|
44
|
-
$dribble-color: #F26798;
|
|
45
|
-
$behace-color: #0093FA;
|
|
46
|
-
|
|
47
|
-
/**** Glyphicons ****/
|
|
48
|
-
$glyphicons-halflings-class-prefix: glyphicon !default;
|
|
49
|
-
$glyphicons-halflings-font-base-size: 12px !default;
|
|
50
|
-
$glyphicons-halflings-include-bonus: false !default;
|
|
51
|
-
/***tooltip arrow override ***/
|
|
52
|
-
$tooltip-arrow-color: #842a30;
|
|
22
|
+
@import url('https://fonts.googleapis.com/css2?family=Lato&family=Sora&display=swap');
|
|
23
|
+
$font-fam-normal: 'Lato', sans-serif;
|
|
24
|
+
$font-fam-important: 'Sora', sans-serif;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/* PALETTE */
|
|
2
|
+
$white-color: #FFFFFF;
|
|
3
|
+
$gray-color: #F2F2F2;
|
|
4
|
+
$black-color: black;
|
|
5
|
+
|
|
6
|
+
$shade-tone: 5%;
|
|
7
|
+
|
|
8
|
+
$primary-color: #01C38D;
|
|
9
|
+
$primary-light-color: lighten($primary-color, $shade-tone);
|
|
10
|
+
$primary-dark-color: darken($primary-color, $shade-tone);
|
|
11
|
+
|
|
12
|
+
$primary-dual-color: #07adec;
|
|
13
|
+
$primary-dual-light-color: lighten($primary-dual-color, $shade-tone);
|
|
14
|
+
$primary-dual-dark-color: darken($primary-dual-color, $shade-tone);
|
|
15
|
+
|
|
16
|
+
$secondary-color: #132D46;
|
|
17
|
+
$secondary-light-color: lighten($secondary-color, $shade-tone);
|
|
18
|
+
$secondary-dark-color: darken($secondary-color, $shade-tone);
|
|
19
|
+
|
|
20
|
+
$fill-color: #191E29;
|
|
21
|
+
$fill-light-color: lighten($fill-color, $shade-tone);
|
|
22
|
+
$fill-dark-color: darken($fill-color, $shade-tone);
|
|
23
|
+
|
|
24
|
+
/* SEMANTICA */
|
|
25
|
+
$navbar-height: 60px;
|
|
26
|
+
$navbar-color: $secondary-color;
|
|
27
|
+
$navbar-light-color: $secondary-light-color;
|
|
28
|
+
$navbar-dark-color: $secondary-dark-color;
|
|
29
|
+
$navbar-border-color: $fill-color;
|
|
30
|
+
$navbar-text-color: $white-color;
|
|
31
|
+
$navbar-text-cta: $primary-color;
|
|
32
|
+
|
|
33
|
+
$sidebar-width: 230px;
|
|
34
|
+
$sidebar-color: $secondary-color;
|
|
35
|
+
$sidebar-light-color: $secondary-light-color;
|
|
36
|
+
$sidebar-dark-color: $secondary-dark-color;
|
|
37
|
+
$sidebar-border-color: $fill-color;
|
|
38
|
+
$sidebar-text-color: $white-color;
|
|
39
|
+
|
|
40
|
+
$table-color: $gray-color;
|
|
41
|
+
$table-light-color: lighten($table-color, $shade-tone);
|
|
42
|
+
$table-dark-color: $secondary-dark-color;
|
|
43
|
+
$table-border-color: $gray-color;
|
|
44
|
+
$table-text-color: $black-color;
|
|
45
|
+
|
|
46
|
+
$filters-bar-color: $secondary-color;
|
|
47
|
+
$filters-bar-light-color: $secondary-light-color;
|
|
48
|
+
$filters-bar-dark-color: $secondary-dark-color;
|
|
49
|
+
$filters-bar-border-color: $fill-dark-color;
|
|
50
|
+
$filters-bar-text-color: $white-color;
|
|
51
|
+
|
|
52
|
+
/* SHADOW */
|
|
53
|
+
$box-shadow-md: 0px 8px 6px rgba(19, 19, 19, 0.04), 0px 12px 16px rgba(19, 19, 19, 0.05);
|
|
54
|
+
$backdrop-color: rgba(0, 0, 0, 0.6);
|
|
55
|
+
|
|
56
|
+
/* STATES */
|
|
57
|
+
$info-color: #248dad;
|
|
58
|
+
$success-color: #84CC16;
|
|
59
|
+
$warning-color: #FBBF24;
|
|
60
|
+
$danger-color: #EF4444;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/* PALETTE */
|
|
2
|
+
$white-color: #FFFFFF;
|
|
3
|
+
$gray-color: #F2F2F2;
|
|
4
|
+
$black-color: #36454F;
|
|
5
|
+
|
|
6
|
+
$shade-tone: 5%;
|
|
7
|
+
|
|
8
|
+
$primary-color: #5D47FF;
|
|
9
|
+
$primary-light-color: lighten($primary-color, $shade-tone);
|
|
10
|
+
$primary-dark-color: darken($primary-color, $shade-tone);
|
|
11
|
+
|
|
12
|
+
$primary-dual-color: #5D47FF;
|
|
13
|
+
$primary-dual-light-color: lighten($primary-dual-color, $shade-tone);
|
|
14
|
+
$primary-dual-dark-color: darken($primary-dual-color, $shade-tone);
|
|
15
|
+
|
|
16
|
+
$secondary-color: #EAEDF2;
|
|
17
|
+
$secondary-light-color: lighten($secondary-color, $shade-tone);
|
|
18
|
+
$secondary-dark-color: darken($secondary-color, $shade-tone);
|
|
19
|
+
|
|
20
|
+
$fill-color: #191E29;
|
|
21
|
+
$fill-light-color: lighten($fill-color, $shade-tone);
|
|
22
|
+
$fill-dark-color: darken($fill-color, $shade-tone);
|
|
23
|
+
|
|
24
|
+
/* SEMANTICA */
|
|
25
|
+
$navbar-height: 60px;
|
|
26
|
+
$navbar-color: lighten($secondary-color, $shade-tone);
|
|
27
|
+
$navbar-light-color: #ededed;
|
|
28
|
+
$navbar-dark-color: darken($navbar-color, $shade-tone);
|
|
29
|
+
$navbar-border-color: $gray-color;
|
|
30
|
+
$navbar-text-color: $black-color;
|
|
31
|
+
|
|
32
|
+
$sidebar-width: 230px;
|
|
33
|
+
$sidebar-color: lighten($secondary-color, $shade-tone);
|
|
34
|
+
$sidebar-light-color: lighten($navbar-color, $shade-tone);
|
|
35
|
+
$sidebar-dark-color: darken($sidebar-color, $shade-tone);
|
|
36
|
+
$sidebar-border-color: $gray-color;
|
|
37
|
+
$sidebar-text-color: $black-color;
|
|
38
|
+
|
|
39
|
+
$table-color: $gray-color;
|
|
40
|
+
$table-light-color: lighten($table-color, $shade-tone);
|
|
41
|
+
$table-dark-color: $black-color;
|
|
42
|
+
$table-border-color: $gray-color;
|
|
43
|
+
$table-text-color: $black-color;
|
|
44
|
+
|
|
45
|
+
/* SHADOW */
|
|
46
|
+
$box-shadow-md: 0px 8px 6px rgba(19, 19, 19, 0.04), 0px 12px 16px rgba(19, 19, 19, 0.05);
|
|
47
|
+
|
|
48
|
+
/* STATES */
|
|
49
|
+
$info-color: #248dad;
|
|
50
|
+
$success-color: #84CC16;
|
|
51
|
+
$warning-color: #FBBF24;
|
|
52
|
+
$danger-color: #EF4444;
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
/* PALETTE */
|
|
2
|
+
$white-color: #FFFFFF;
|
|
3
|
+
$gray-color: #F2F2F2;
|
|
4
|
+
$black-color: black;
|
|
5
|
+
|
|
6
|
+
$shade-tone: 5%;
|
|
7
|
+
|
|
8
|
+
// Utilizzato per CTA su sfondo scuro (Link, Bottoni, Operazioni,...)
|
|
9
|
+
$primary-color: #fffac2;
|
|
10
|
+
$primary-light-color: lighten($primary-color, $shade-tone);
|
|
11
|
+
$primary-dark-color: darken($primary-color, $shade-tone);
|
|
12
|
+
|
|
13
|
+
// Utilizzato per CTA su sfondo chiaro (Link, Bottoni, Operazioni...)
|
|
14
|
+
$primary-dual-color: #0056b3;
|
|
15
|
+
$primary-dual-light-color: lighten($primary-dual-color, $shade-tone);
|
|
16
|
+
$primary-dual-dark-color: darken($primary-dual-color, $shade-tone);
|
|
17
|
+
|
|
18
|
+
$secondary-color: #344154;
|
|
19
|
+
$secondary-light-color: lighten($secondary-color, $shade-tone);
|
|
20
|
+
$secondary-dark-color: darken($secondary-color, $shade-tone);
|
|
21
|
+
|
|
22
|
+
$fill-color: #191E29;
|
|
23
|
+
$fill-light-color: lighten($fill-color, $shade-tone);
|
|
24
|
+
$fill-dark-color: darken($fill-color, $shade-tone);
|
|
25
|
+
|
|
26
|
+
/* SEMANTICA */
|
|
27
|
+
$navbar-height: 60px;
|
|
28
|
+
$navbar-color: darken($secondary-color, 5%);
|
|
29
|
+
$navbar-light-color: $secondary-light-color;
|
|
30
|
+
$navbar-dark-color: $secondary-dark-color;
|
|
31
|
+
$navbar-border-color: $fill-color;
|
|
32
|
+
$navbar-text-color: $white-color;
|
|
33
|
+
$navbar-text-cta: $white-color;
|
|
34
|
+
|
|
35
|
+
$sidebar-width: 230px;
|
|
36
|
+
$sidebar-color: $secondary-color;
|
|
37
|
+
$sidebar-light-color: $secondary-light-color;
|
|
38
|
+
$sidebar-dark-color: $secondary-dark-color;
|
|
39
|
+
$sidebar-border-color: lighten($secondary-light-color, 5%);
|
|
40
|
+
$sidebar-text-color: $white-color;
|
|
41
|
+
|
|
42
|
+
$table-color: $gray-color;
|
|
43
|
+
$table-light-color: lighten($table-color, $shade-tone);
|
|
44
|
+
$table-dark-color: $secondary-dark-color;
|
|
45
|
+
$table-border-color: $gray-color;
|
|
46
|
+
$table-text-color: $black-color;
|
|
47
|
+
|
|
48
|
+
$filters-bar-color: $white-color;
|
|
49
|
+
$filters-bar-light-color: $secondary-light-color;
|
|
50
|
+
$filters-bar-dark-color: $secondary-color;
|
|
51
|
+
$filters-bar-border-color: #eeeeee;
|
|
52
|
+
$filters-bar-text-color: $black-color;
|
|
53
|
+
$filters-bar-header-text-color: $white-color;
|
|
54
|
+
|
|
55
|
+
/* SHADOW */
|
|
56
|
+
$box-shadow-md: 0px 8px 6px rgba(19, 19, 19, 0.04), 0px 12px 16px rgba(19, 19, 19, 0.05);
|
|
57
|
+
$backdrop-color: rgba(0, 0, 0, 0.6);
|
|
58
|
+
|
|
59
|
+
/* STATES */
|
|
60
|
+
$info-color: #248dad;
|
|
61
|
+
$success-color: #84CC16;
|
|
62
|
+
$warning-color: #FBBF24;
|
|
63
|
+
$danger-color: #EF4444;
|
|
Binary file
|
|
Binary file
|