@mediusinc/mng-commons-layout 5.0.0-rc.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 +13 -0
- package/assets/fonts/poppins-v20-latin-500.woff +0 -0
- package/assets/fonts/poppins-v20-latin-500.woff2 +0 -0
- package/assets/fonts/poppins-v20-latin-600.woff +0 -0
- package/assets/fonts/poppins-v20-latin-600.woff2 +0 -0
- package/assets/fonts/poppins-v20-latin-700.woff +0 -0
- package/assets/fonts/poppins-v20-latin-700.woff2 +0 -0
- package/assets/fonts/poppins-v20-latin-regular.woff +0 -0
- package/assets/fonts/poppins-v20-latin-regular.woff2 +0 -0
- package/assets/images/effect-ondark.png +0 -0
- package/assets/images/effect-ondark.svg +38 -0
- package/assets/images/effect-ondark@2x.png +0 -0
- package/assets/images/effect-onlight.png +0 -0
- package/assets/images/effect-onlight.svg +38 -0
- package/assets/images/effect-onlight@2x.png +0 -0
- package/assets/images/pages/exception-ondark.png +0 -0
- package/assets/images/pages/exception-onlight.png +0 -0
- package/assets/images/pages/login-ondark.png +0 -0
- package/assets/images/pages/login-onlight.png +0 -0
- package/esm2022/index.mjs +23 -0
- package/esm2022/lib/components/breadcrumb.component.mjs +30 -0
- package/esm2022/lib/components/footer.component.mjs +28 -0
- package/esm2022/lib/components/main-layout.component.mjs +99 -0
- package/esm2022/lib/components/menu-item.component.mjs +275 -0
- package/esm2022/lib/components/menu.component.mjs +40 -0
- package/esm2022/lib/components/sidebar.component.mjs +61 -0
- package/esm2022/lib/components/topbar-user.component.mjs +39 -0
- package/esm2022/lib/components/topbar.component.mjs +57 -0
- package/esm2022/lib/components/version.component.mjs +63 -0
- package/esm2022/lib/helpers/route-builder.mjs +11 -0
- package/esm2022/lib/models/layout-state.model.mjs +2 -0
- package/esm2022/lib/models/menu.model.mjs +2 -0
- package/esm2022/lib/provide.mjs +23 -0
- package/esm2022/lib/services/layout-feature-config.token.mjs +3 -0
- package/esm2022/lib/services/main-layout.component.service.mjs +71 -0
- package/esm2022/lib/services/menu.service.mjs +120 -0
- package/esm2022/lib/services/version.service.mjs +45 -0
- package/esm2022/mediusinc-mng-commons-layout.mjs +5 -0
- package/fesm2022/mediusinc-mng-commons-layout.mjs +878 -0
- package/fesm2022/mediusinc-mng-commons-layout.mjs.map +1 -0
- package/index.d.ts +17 -0
- package/lib/components/breadcrumb.component.d.ts +10 -0
- package/lib/components/footer.component.d.ts +12 -0
- package/lib/components/main-layout.component.d.ts +27 -0
- package/lib/components/menu-item.component.d.ts +40 -0
- package/lib/components/menu.component.d.ts +14 -0
- package/lib/components/sidebar.component.d.ts +19 -0
- package/lib/components/topbar-user.component.d.ts +15 -0
- package/lib/components/topbar.component.d.ts +22 -0
- package/lib/components/version.component.d.ts +18 -0
- package/lib/helpers/route-builder.d.ts +6 -0
- package/lib/models/layout-state.model.d.ts +10 -0
- package/lib/models/menu.model.d.ts +4 -0
- package/lib/provide.d.ts +8 -0
- package/lib/services/layout-feature-config.token.d.ts +18 -0
- package/lib/services/main-layout.component.service.d.ts +17 -0
- package/lib/services/menu.service.d.ts +22 -0
- package/lib/services/version.service.d.ts +14 -0
- package/package.json +35 -0
- package/scss/commons-dark.scss +9 -0
- package/scss/commons-light.scss +9 -0
- package/scss/layout/_animation.scss +53 -0
- package/scss/layout/_breadcrumb.scss +97 -0
- package/scss/layout/_config.scss +42 -0
- package/scss/layout/_content.scss +3 -0
- package/scss/layout/_fonts.scss +40 -0
- package/scss/layout/_layout_dark.scss +12 -0
- package/scss/layout/_layout_light.scss +12 -0
- package/scss/layout/_main.scss +54 -0
- package/scss/layout/_profile.scss +10 -0
- package/scss/layout/_responsive.scss +131 -0
- package/scss/layout/_sidebar_drawer.scss +285 -0
- package/scss/layout/_sidebar_horizontal.scss +168 -0
- package/scss/layout/_sidebar_reveal.scss +203 -0
- package/scss/layout/_sidebar_slim.scss +157 -0
- package/scss/layout/_sidebar_slim_plus.scss +166 -0
- package/scss/layout/_sidebar_vertical.scss +178 -0
- package/scss/layout/_topbar.scss +174 -0
- package/scss/layout/_typography.scss +67 -0
- package/scss/layout/_utils.scss +33 -0
- package/scss/layout/layout.scss +24 -0
- package/scss/layout/mng/_mng_layout_footer.scss +39 -0
- package/scss/layout/mng/_mng_layout_menu.scss +10 -0
- package/scss/layout/mng/_mng_layout_styles.scss +3 -0
- package/scss/layout/mng/_mng_layout_topbar.scss +18 -0
- package/scss/layout/preloading.scss +84 -0
- package/scss/theme/extensions/_fullcalendar.scss +328 -0
- package/scss/theme/theme-base/_colors.scss +17 -0
- package/scss/theme/theme-base/_common.scss +76 -0
- package/scss/theme/theme-base/_components.scss +110 -0
- package/scss/theme/theme-base/_mixins.scss +337 -0
- package/scss/theme/theme-base/components/button/_button.scss +576 -0
- package/scss/theme/theme-base/components/button/_speeddial.scss +96 -0
- package/scss/theme/theme-base/components/button/_splitbutton.scss +348 -0
- package/scss/theme/theme-base/components/data/_carousel.scss +37 -0
- package/scss/theme/theme-base/components/data/_datatable.scss +338 -0
- package/scss/theme/theme-base/components/data/_dataview.scss +46 -0
- package/scss/theme/theme-base/components/data/_filter.scss +137 -0
- package/scss/theme/theme-base/components/data/_orderlist.scss +114 -0
- package/scss/theme/theme-base/components/data/_organizationchart.scss +50 -0
- package/scss/theme/theme-base/components/data/_paginator.scss +92 -0
- package/scss/theme/theme-base/components/data/_picklist.scss +114 -0
- package/scss/theme/theme-base/components/data/_timeline.scss +35 -0
- package/scss/theme/theme-base/components/data/_tree.scss +150 -0
- package/scss/theme/theme-base/components/data/_treetable.scss +255 -0
- package/scss/theme/theme-base/components/data/_virtualscroller.scss +28 -0
- package/scss/theme/theme-base/components/file/_fileupload.scss +64 -0
- package/scss/theme/theme-base/components/input/_autocomplete.scss +136 -0
- package/scss/theme/theme-base/components/input/_calendar.scss +267 -0
- package/scss/theme/theme-base/components/input/_cascadeselect.scss +135 -0
- package/scss/theme/theme-base/components/input/_checkbox.scss +94 -0
- package/scss/theme/theme-base/components/input/_chips.scss +65 -0
- package/scss/theme/theme-base/components/input/_colorpicker.scss +19 -0
- package/scss/theme/theme-base/components/input/_dropdown.scss +151 -0
- package/scss/theme/theme-base/components/input/_editor.scss +122 -0
- package/scss/theme/theme-base/components/input/_inputgroup.scss +74 -0
- package/scss/theme/theme-base/components/input/_inputmask.scss +16 -0
- package/scss/theme/theme-base/components/input/_inputnumber.scss +28 -0
- package/scss/theme/theme-base/components/input/_inputswitch.scss +60 -0
- package/scss/theme/theme-base/components/input/_inputtext.scss +100 -0
- package/scss/theme/theme-base/components/input/_listbox.scss +97 -0
- package/scss/theme/theme-base/components/input/_multiselect.scss +177 -0
- package/scss/theme/theme-base/components/input/_password.scss +52 -0
- package/scss/theme/theme-base/components/input/_radiobutton.scss +78 -0
- package/scss/theme/theme-base/components/input/_rating.scss +60 -0
- package/scss/theme/theme-base/components/input/_selectbutton.scss +50 -0
- package/scss/theme/theme-base/components/input/_slider.scss +75 -0
- package/scss/theme/theme-base/components/input/_togglebutton.scss +48 -0
- package/scss/theme/theme-base/components/input/_treeselect.scss +139 -0
- package/scss/theme/theme-base/components/menu/_breadcrumb.scss +42 -0
- package/scss/theme/theme-base/components/menu/_contextmenu.scss +39 -0
- package/scss/theme/theme-base/components/menu/_dock.scss +95 -0
- package/scss/theme/theme-base/components/menu/_megamenu.scss +55 -0
- package/scss/theme/theme-base/components/menu/_menu.scss +37 -0
- package/scss/theme/theme-base/components/menu/_menubar.scss +140 -0
- package/scss/theme/theme-base/components/menu/_panelmenu.scss +153 -0
- package/scss/theme/theme-base/components/menu/_slidemenu.scss +59 -0
- package/scss/theme/theme-base/components/menu/_steps.scss +56 -0
- package/scss/theme/theme-base/components/menu/_tabmenu.scss +73 -0
- package/scss/theme/theme-base/components/menu/_tieredmenu.scss +43 -0
- package/scss/theme/theme-base/components/messages/_inlinemessage.scss +69 -0
- package/scss/theme/theme-base/components/messages/_message.scss +107 -0
- package/scss/theme/theme-base/components/messages/_toast.scss +99 -0
- package/scss/theme/theme-base/components/misc/_avatar.scss +30 -0
- package/scss/theme/theme-base/components/misc/_badge.scss +48 -0
- package/scss/theme/theme-base/components/misc/_blockui.scss +0 -0
- package/scss/theme/theme-base/components/misc/_chip.scss +42 -0
- package/scss/theme/theme-base/components/misc/_inplace.scss +16 -0
- package/scss/theme/theme-base/components/misc/_progressbar.scss +17 -0
- package/scss/theme/theme-base/components/misc/_scrolltop.scss +25 -0
- package/scss/theme/theme-base/components/misc/_skeleton.scss +8 -0
- package/scss/theme/theme-base/components/misc/_tag.scss +40 -0
- package/scss/theme/theme-base/components/misc/_terminal.scss +12 -0
- package/scss/theme/theme-base/components/multimedia/_galleria.scss +155 -0
- package/scss/theme/theme-base/components/multimedia/_image.scss +49 -0
- package/scss/theme/theme-base/components/overlay/_confirmpopup.scss +70 -0
- package/scss/theme/theme-base/components/overlay/_dialog.scss +69 -0
- package/scss/theme/theme-base/components/overlay/_overlaypanel.scss +62 -0
- package/scss/theme/theme-base/components/overlay/_sidebar.scss +27 -0
- package/scss/theme/theme-base/components/overlay/_tooltip.scss +33 -0
- package/scss/theme/theme-base/components/panel/_accordion.scss +119 -0
- package/scss/theme/theme-base/components/panel/_card.scss +30 -0
- package/scss/theme/theme-base/components/panel/_divider.scss +31 -0
- package/scss/theme/theme-base/components/panel/_fieldset.scss +47 -0
- package/scss/theme/theme-base/components/panel/_panel.scss +63 -0
- package/scss/theme/theme-base/components/panel/_scrollpanel.scss +6 -0
- package/scss/theme/theme-base/components/panel/_splitter.scss +19 -0
- package/scss/theme/theme-base/components/panel/_tabview.scss +82 -0
- package/scss/theme/theme-base/components/panel/_toolbar.scss +11 -0
- package/scss/theme/theme-base/mng/_mng_mixins.scss +69 -0
- package/scss/theme/theme-base/mng/_mng_theme_autocomplete.scss +34 -0
- package/scss/theme/theme-base/mng/_mng_theme_button.scss +68 -0
- package/scss/theme/theme-base/mng/_mng_theme_datatable.scss +153 -0
- package/scss/theme/theme-base/mng/_mng_theme_datepicker.scss +21 -0
- package/scss/theme/theme-base/mng/_mng_theme_dialog.scss +206 -0
- package/scss/theme/theme-base/mng/_mng_theme_dropdown.scss +32 -0
- package/scss/theme/theme-base/mng/_mng_theme_fileupload.scss +24 -0
- package/scss/theme/theme-base/mng/_mng_theme_forms.scss +66 -0
- package/scss/theme/theme-base/mng/_mng_theme_image.scss +27 -0
- package/scss/theme/theme-base/mng/_mng_theme_input.scss +31 -0
- package/scss/theme/theme-base/mng/_mng_theme_menu.scss +5 -0
- package/scss/theme/theme-base/mng/_mng_theme_multiselect.scss +20 -0
- package/scss/theme/theme-base/mng/_mng_theme_styles.scss +17 -0
- package/scss/theme/theme-base/mng/_mng_theme_tableview.scss +97 -0
- package/scss/theme/theme-base/mng/_mng_theme_tabview.scss +14 -0
- package/scss/theme/theme-base/mng/_mng_theme_toast.scss +3 -0
- package/scss/theme/theme-base/mng/_mng_theme_toolbar.scss +5 -0
- package/scss/theme/theme-base/mng/_mng_variables.scss +15 -0
- package/scss/theme/theme-dark/_extensions.scss +109 -0
- package/scss/theme/theme-dark/_variables.scss +940 -0
- package/scss/theme/theme-dark/blue/theme.scss +14 -0
- package/scss/theme/theme-light/_extensions.scss +109 -0
- package/scss/theme/theme-light/_variables.scss +936 -0
- package/scss/theme/theme-light/blue/theme.scss +14 -0
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
h1,
|
|
2
|
+
h2,
|
|
3
|
+
h3,
|
|
4
|
+
h4,
|
|
5
|
+
h5,
|
|
6
|
+
h6 {
|
|
7
|
+
margin: 1.5rem 0 1rem 0;
|
|
8
|
+
font-family: inherit;
|
|
9
|
+
font-weight: 600;
|
|
10
|
+
line-height: 1.2;
|
|
11
|
+
|
|
12
|
+
&:first-child {
|
|
13
|
+
margin-top: 0;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
h1 {
|
|
18
|
+
font-size: 2.5rem;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
h2 {
|
|
22
|
+
font-size: 2rem;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
h3 {
|
|
26
|
+
font-size: 1.75rem;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
h4 {
|
|
30
|
+
font-size: 1.5rem;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
h5 {
|
|
34
|
+
font-size: 1.25rem;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
h6 {
|
|
38
|
+
font-size: 1rem;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
mark {
|
|
42
|
+
background: #fff8e1;
|
|
43
|
+
padding: 0.25rem 0.4rem;
|
|
44
|
+
border-radius: var(--border-radius);
|
|
45
|
+
font-family: monospace;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
blockquote {
|
|
49
|
+
margin: 1rem 0;
|
|
50
|
+
padding: 0 2rem;
|
|
51
|
+
border-left: 4px solid #90a4ae;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
hr {
|
|
55
|
+
border-top: solid var(--surface-border);
|
|
56
|
+
border-width: 1px 0 0 0;
|
|
57
|
+
margin: 1rem 0;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
p {
|
|
61
|
+
margin: 0 0 1rem 0;
|
|
62
|
+
line-height: 1.5;
|
|
63
|
+
|
|
64
|
+
&:last-child {
|
|
65
|
+
margin-bottom: 0;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
.card {
|
|
2
|
+
border-radius: 8px;
|
|
3
|
+
background: var(--surface-card);
|
|
4
|
+
padding: 16px;
|
|
5
|
+
box-sizing: border-box;
|
|
6
|
+
margin-bottom: 16px;
|
|
7
|
+
|
|
8
|
+
.card-header {
|
|
9
|
+
font-weight: 500;
|
|
10
|
+
display: flex;
|
|
11
|
+
align-items: center;
|
|
12
|
+
justify-content: space-between;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.card-subtitle {
|
|
16
|
+
color: var(--text-color-secondary);
|
|
17
|
+
font-size: 0.857rem;
|
|
18
|
+
font-weight: 500;
|
|
19
|
+
margin: -1rem 0 1rem 0;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.p-toast {
|
|
24
|
+
&.p-toast-top-right,
|
|
25
|
+
&.p-toast-top-left,
|
|
26
|
+
&.p-toast-top-center {
|
|
27
|
+
top: 70px;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.ng-hidden {
|
|
32
|
+
display: none !important;
|
|
33
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
$breakpoint: 992px !default;
|
|
2
|
+
$scale: 14px !default;
|
|
3
|
+
|
|
4
|
+
//@import './_fonts';
|
|
5
|
+
@import './_animation';
|
|
6
|
+
@import './_layout_light';
|
|
7
|
+
@import './_layout_dark';
|
|
8
|
+
@import './_main';
|
|
9
|
+
@import './_sidebar_vertical';
|
|
10
|
+
@import './_sidebar_slim';
|
|
11
|
+
@import './_sidebar_slim_plus';
|
|
12
|
+
//@import './_sidebar_horizontal';
|
|
13
|
+
@import './_sidebar_reveal';
|
|
14
|
+
@import './_sidebar_drawer';
|
|
15
|
+
@import './_responsive';
|
|
16
|
+
@import './_topbar';
|
|
17
|
+
@import './_breadcrumb';
|
|
18
|
+
@import './_profile';
|
|
19
|
+
@import './_config';
|
|
20
|
+
@import './_content';
|
|
21
|
+
@import './_typography';
|
|
22
|
+
@import './_utils';
|
|
23
|
+
|
|
24
|
+
@import 'mng/mng_layout_styles';
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
.layout-footer {
|
|
2
|
+
height: 4rem;
|
|
3
|
+
display: -ms-flexbox;
|
|
4
|
+
display: flex;
|
|
5
|
+
-ms-flex-align: center;
|
|
6
|
+
align-items: center;
|
|
7
|
+
-ms-flex-pack: justify;
|
|
8
|
+
justify-content: space-between;
|
|
9
|
+
|
|
10
|
+
.footer-logo-container {
|
|
11
|
+
display: -ms-flexbox;
|
|
12
|
+
display: flex;
|
|
13
|
+
-ms-flex-align: center;
|
|
14
|
+
align-items: center;
|
|
15
|
+
|
|
16
|
+
img {
|
|
17
|
+
width: 2rem;
|
|
18
|
+
height: 2rem;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.app-name {
|
|
22
|
+
font-size: 1rem;
|
|
23
|
+
font-weight: 600;
|
|
24
|
+
letter-spacing: 0.2px;
|
|
25
|
+
margin-left: 0.5rem;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.version {
|
|
30
|
+
font-size: 0.875rem;
|
|
31
|
+
color: var(--text-color-secondary);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.copyright {
|
|
35
|
+
float: right;
|
|
36
|
+
font-size: 0.875rem;
|
|
37
|
+
color: var(--text-color-secondary);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
.layout-topbar .topbar-menu li.topbar-item a {
|
|
2
|
+
display: flex;
|
|
3
|
+
align-items: center;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.layout-topbar .topbar-menu li.topbar-item ul {
|
|
7
|
+
padding: 8px 0 8px 0;
|
|
8
|
+
background: $inputOverlayBg;
|
|
9
|
+
box-shadow: $inputOverlayShadow;
|
|
10
|
+
|
|
11
|
+
& li {
|
|
12
|
+
margin-left: 0;
|
|
13
|
+
|
|
14
|
+
a {
|
|
15
|
+
padding: 10px;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
}
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
.layout-preloader-container {
|
|
2
|
+
display: flex;
|
|
3
|
+
align-items: center;
|
|
4
|
+
justify-content: center;
|
|
5
|
+
height: 100vh;
|
|
6
|
+
width: 100vw;
|
|
7
|
+
background-color: #111417;
|
|
8
|
+
|
|
9
|
+
.layout-preloader {
|
|
10
|
+
position: relative;
|
|
11
|
+
width: 75px;
|
|
12
|
+
height: 75px;
|
|
13
|
+
background: transparent;
|
|
14
|
+
border: 3px solid #161a1f;
|
|
15
|
+
border-radius: 50%;
|
|
16
|
+
text-align: center;
|
|
17
|
+
line-height: 150px;
|
|
18
|
+
font-family: sans-serif;
|
|
19
|
+
font-size: 20px;
|
|
20
|
+
color: #6366f1;
|
|
21
|
+
letter-spacing: 4px;
|
|
22
|
+
text-transform: uppercase;
|
|
23
|
+
text-shadow: 0 0 10px #6366f1;
|
|
24
|
+
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
|
|
25
|
+
|
|
26
|
+
&:before {
|
|
27
|
+
content: '';
|
|
28
|
+
position: absolute;
|
|
29
|
+
top: -3px;
|
|
30
|
+
left: -3px;
|
|
31
|
+
width: 100%;
|
|
32
|
+
height: 100%;
|
|
33
|
+
border: 3px solid transparent;
|
|
34
|
+
border-top: 3px solid #6366f1;
|
|
35
|
+
border-right: 3px solid #6366f1;
|
|
36
|
+
border-radius: 50%;
|
|
37
|
+
animation: preloader-rotate-c 1s linear infinite;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
span {
|
|
41
|
+
display: block;
|
|
42
|
+
position: absolute;
|
|
43
|
+
top: calc(50% - 2px);
|
|
44
|
+
left: 50%;
|
|
45
|
+
width: 50%;
|
|
46
|
+
height: 4px;
|
|
47
|
+
background: transparent;
|
|
48
|
+
transform-origin: left;
|
|
49
|
+
animation: preloader-rotate 1s linear infinite;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
span:before {
|
|
53
|
+
content: '';
|
|
54
|
+
position: absolute;
|
|
55
|
+
width: 16px;
|
|
56
|
+
height: 16px;
|
|
57
|
+
border-radius: 50%;
|
|
58
|
+
background: #6366f1;
|
|
59
|
+
top: -6px;
|
|
60
|
+
right: -8px;
|
|
61
|
+
box-shadow: 0 0 20px #6366f1;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
@keyframes preloader-rotate-c {
|
|
67
|
+
0% {
|
|
68
|
+
transform: rotate(0deg);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
100% {
|
|
72
|
+
transform: rotate(360deg);
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
@keyframes preloader-rotate {
|
|
77
|
+
0% {
|
|
78
|
+
transform: rotate(45deg);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
100% {
|
|
82
|
+
transform: rotate(405deg);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
@@ -0,0 +1,328 @@
|
|
|
1
|
+
.fc {
|
|
2
|
+
/* FullCalendar 4 */
|
|
3
|
+
&.fc-unthemed {
|
|
4
|
+
.fc-view-container {
|
|
5
|
+
th {
|
|
6
|
+
background: $panelHeaderBg;
|
|
7
|
+
border: $panelHeaderBorder;
|
|
8
|
+
color: $panelHeaderTextColor;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
td {
|
|
12
|
+
&.fc-widget-content {
|
|
13
|
+
border: $panelContentBorder;
|
|
14
|
+
color: $panelContentTextColor;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
&.fc-head-container {
|
|
18
|
+
border: $panelHeaderBorder;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.fc-view {
|
|
23
|
+
background: $panelContentBg;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.fc-row {
|
|
27
|
+
border-right: $panelHeaderBorder;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.fc-event {
|
|
31
|
+
background: $fullCalendarEventBg;
|
|
32
|
+
border: $fullCalendarEventBorder;
|
|
33
|
+
color: $fullCalendarEventTextColor;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.fc-divider {
|
|
37
|
+
background: $panelHeaderBg;
|
|
38
|
+
border: $panelHeaderBorder;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.fc-toolbar {
|
|
43
|
+
.fc-button {
|
|
44
|
+
color: $buttonTextColor;
|
|
45
|
+
background: $buttonBg;
|
|
46
|
+
border: $buttonBorder;
|
|
47
|
+
font-size: $fontSize;
|
|
48
|
+
transition: $formElementTransition;
|
|
49
|
+
border-radius: $borderRadius;
|
|
50
|
+
display: flex;
|
|
51
|
+
align-items: center;
|
|
52
|
+
|
|
53
|
+
&:enabled:hover {
|
|
54
|
+
background: $buttonHoverBg;
|
|
55
|
+
color: $buttonTextHoverColor;
|
|
56
|
+
border-color: $buttonHoverBorderColor;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
&:enabled:active {
|
|
60
|
+
background: $buttonActiveBg;
|
|
61
|
+
color: $buttonTextActiveColor;
|
|
62
|
+
border-color: $buttonActiveBorderColor;
|
|
63
|
+
|
|
64
|
+
&:focus {
|
|
65
|
+
@include focused();
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.fc-icon-chevron-left {
|
|
70
|
+
font-family: 'PrimeIcons' !important;
|
|
71
|
+
text-indent: 0;
|
|
72
|
+
@include icon_override('\e900');
|
|
73
|
+
font-size: $primeIconFontSize;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.fc-icon-chevron-right {
|
|
77
|
+
font-family: 'PrimeIcons' !important;
|
|
78
|
+
text-indent: 0;
|
|
79
|
+
@include icon_override('\e901');
|
|
80
|
+
font-size: $primeIconFontSize;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
&:focus {
|
|
84
|
+
@include focused();
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
&.fc-dayGridMonth-button,
|
|
88
|
+
&.fc-timeGridWeek-button,
|
|
89
|
+
&.fc-timeGridDay-button {
|
|
90
|
+
background: $toggleButtonBg;
|
|
91
|
+
border: $toggleButtonBorder;
|
|
92
|
+
color: $toggleButtonTextColor;
|
|
93
|
+
transition: $formElementTransition;
|
|
94
|
+
|
|
95
|
+
&:hover {
|
|
96
|
+
background: $toggleButtonHoverBg;
|
|
97
|
+
border-color: $toggleButtonHoverBorderColor;
|
|
98
|
+
color: $toggleButtonTextHoverColor;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
&.fc-button-active {
|
|
102
|
+
background: $toggleButtonActiveBg;
|
|
103
|
+
border-color: $toggleButtonActiveBorderColor;
|
|
104
|
+
color: $toggleButtonTextActiveColor;
|
|
105
|
+
|
|
106
|
+
&:hover {
|
|
107
|
+
background: $toggleButtonActiveHoverBg;
|
|
108
|
+
border-color: $toggleButtonActiveHoverBorderColor;
|
|
109
|
+
color: $toggleButtonTextActiveHoverColor;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
&:focus {
|
|
114
|
+
@include focused();
|
|
115
|
+
z-index: 1;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.fc-button-group {
|
|
121
|
+
.fc-button {
|
|
122
|
+
border-radius: 0;
|
|
123
|
+
|
|
124
|
+
&:first-child {
|
|
125
|
+
border-top-left-radius: $borderRadius;
|
|
126
|
+
border-bottom-left-radius: $borderRadius;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
&:last-child {
|
|
130
|
+
border-top-right-radius: $borderRadius;
|
|
131
|
+
border-bottom-right-radius: $borderRadius;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
/* FullCalendar 5 */
|
|
139
|
+
&.fc-theme-standard {
|
|
140
|
+
.fc-view-harness {
|
|
141
|
+
.fc-scrollgrid {
|
|
142
|
+
border-color: $panelContentBorderColor;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
th {
|
|
146
|
+
background: $panelHeaderBg;
|
|
147
|
+
border-color: $panelHeaderBorderColor;
|
|
148
|
+
color: $panelHeaderTextColor;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
td {
|
|
152
|
+
color: $panelContentTextColor;
|
|
153
|
+
border-color: $panelContentBorderColor;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.fc-view {
|
|
157
|
+
background: $panelContentBg;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.fc-popover {
|
|
161
|
+
background: none;
|
|
162
|
+
border: 0 none;
|
|
163
|
+
|
|
164
|
+
.fc-popover-header {
|
|
165
|
+
border: $panelHeaderBorder;
|
|
166
|
+
padding: $panelHeaderPadding;
|
|
167
|
+
background: $panelHeaderBg;
|
|
168
|
+
color: $panelHeaderTextColor;
|
|
169
|
+
|
|
170
|
+
.fc-popover-close {
|
|
171
|
+
opacity: 1;
|
|
172
|
+
display: flex;
|
|
173
|
+
align-items: center;
|
|
174
|
+
justify-content: center;
|
|
175
|
+
overflow: hidden;
|
|
176
|
+
font-family: 'PrimeIcons' !important;
|
|
177
|
+
@include icon_override('\e90b');
|
|
178
|
+
font-size: $primeIconFontSize;
|
|
179
|
+
@include action-icon(false);
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.fc-popover-body {
|
|
184
|
+
padding: $panelContentPadding;
|
|
185
|
+
border: $panelContentBorder;
|
|
186
|
+
background: $panelContentBg;
|
|
187
|
+
color: $panelContentTextColor;
|
|
188
|
+
border-top: 0 none;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.fc-event {
|
|
193
|
+
&.fc-daygrid-block-event {
|
|
194
|
+
color: $fullCalendarEventTextColor;
|
|
195
|
+
background: $fullCalendarEventBg;
|
|
196
|
+
border-color: $fullCalendarEventBorderColor;
|
|
197
|
+
|
|
198
|
+
.fc-event-main {
|
|
199
|
+
color: $fullCalendarEventTextColor;
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
&.fc-daygrid-dot-event {
|
|
204
|
+
.fc-daygrid-event-dot {
|
|
205
|
+
background: $fullCalendarEventBg;
|
|
206
|
+
border-color: $fullCalendarEventBorderColor;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
&:hover {
|
|
210
|
+
background: $inputListItemHoverBg;
|
|
211
|
+
color: $inputListItemTextHoverColor;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.fc-cell-shaded {
|
|
217
|
+
background: $panelHeaderBg;
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.fc-toolbar {
|
|
222
|
+
.fc-button {
|
|
223
|
+
color: $buttonTextColor;
|
|
224
|
+
background: $buttonBg;
|
|
225
|
+
border: $buttonBorder;
|
|
226
|
+
font-size: $fontSize;
|
|
227
|
+
transition: $formElementTransition;
|
|
228
|
+
border-radius: $borderRadius;
|
|
229
|
+
|
|
230
|
+
&:enabled:hover {
|
|
231
|
+
background: $buttonHoverBg;
|
|
232
|
+
color: $buttonTextHoverColor;
|
|
233
|
+
border-color: $buttonHoverBorderColor;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
&:enabled:active {
|
|
237
|
+
background: $buttonActiveBg;
|
|
238
|
+
color: $buttonTextActiveColor;
|
|
239
|
+
border-color: $buttonActiveBorderColor;
|
|
240
|
+
|
|
241
|
+
&:focus {
|
|
242
|
+
@include focused();
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
&:disabled {
|
|
247
|
+
opacity: $disabledOpacity;
|
|
248
|
+
color: $buttonTextColor;
|
|
249
|
+
background: $buttonBg;
|
|
250
|
+
border: $buttonBorder;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.fc-icon-chevron-left {
|
|
254
|
+
font-family: 'PrimeIcons' !important;
|
|
255
|
+
text-indent: 0;
|
|
256
|
+
@include icon_override('\e900');
|
|
257
|
+
font-size: $primeIconFontSize;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.fc-icon-chevron-right {
|
|
261
|
+
font-family: 'PrimeIcons' !important;
|
|
262
|
+
text-indent: 0;
|
|
263
|
+
@include icon_override('\e901');
|
|
264
|
+
font-size: $primeIconFontSize;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
&:focus {
|
|
268
|
+
@include focused();
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
&.fc-dayGridMonth-button,
|
|
272
|
+
&.fc-timeGridWeek-button,
|
|
273
|
+
&.fc-timeGridDay-button {
|
|
274
|
+
background: $toggleButtonBg;
|
|
275
|
+
border: $toggleButtonBorder;
|
|
276
|
+
color: $toggleButtonTextColor;
|
|
277
|
+
transition: $formElementTransition;
|
|
278
|
+
|
|
279
|
+
&:hover {
|
|
280
|
+
background: $toggleButtonHoverBg;
|
|
281
|
+
border-color: $toggleButtonHoverBorderColor;
|
|
282
|
+
color: $toggleButtonTextHoverColor;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
&.fc-button-active {
|
|
286
|
+
background: $toggleButtonActiveBg;
|
|
287
|
+
border-color: $toggleButtonActiveBorderColor;
|
|
288
|
+
color: $toggleButtonTextActiveColor;
|
|
289
|
+
|
|
290
|
+
&:hover {
|
|
291
|
+
background: $toggleButtonActiveHoverBg;
|
|
292
|
+
border-color: $toggleButtonActiveHoverBorderColor;
|
|
293
|
+
color: $toggleButtonTextActiveHoverColor;
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
&:not(:disabled) {
|
|
298
|
+
&:focus {
|
|
299
|
+
@include focused();
|
|
300
|
+
z-index: 1;
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
.fc-button-group {
|
|
307
|
+
.fc-button {
|
|
308
|
+
border-radius: 0;
|
|
309
|
+
|
|
310
|
+
&:first-child {
|
|
311
|
+
border-top-left-radius: $borderRadius;
|
|
312
|
+
border-bottom-left-radius: $borderRadius;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
&:last-child {
|
|
316
|
+
border-top-right-radius: $borderRadius;
|
|
317
|
+
border-bottom-right-radius: $borderRadius;
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.fc-highlight {
|
|
324
|
+
color: $highlightTextColor;
|
|
325
|
+
background: $highlightBg;
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
@if variable-exists(colors) {
|
|
3
|
+
@each $name, $color in $colors {
|
|
4
|
+
@for $i from 0 through 5 {
|
|
5
|
+
@if ($i == 0) {
|
|
6
|
+
--#{$name}-50: #{tint($color, (5 - $i) * 19%)};
|
|
7
|
+
} @else {
|
|
8
|
+
--#{$name}-#{$i * 100}: #{tint($color, (5 - $i) * 19%)};
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
@for $i from 1 through 4 {
|
|
13
|
+
--#{$name}-#{($i + 5) * 100}: #{shade($color, $i * 15%)};
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
* {
|
|
2
|
+
box-sizing: border-box;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.p-component {
|
|
6
|
+
font-family: var(--font-family);
|
|
7
|
+
font-feature-settings: var(--font-feature-settings, normal);
|
|
8
|
+
font-size: $fontSize;
|
|
9
|
+
font-weight: $fontWeight;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.p-component-overlay {
|
|
13
|
+
background-color: $maskBg;
|
|
14
|
+
transition-duration: $transitionDuration;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.p-disabled,
|
|
18
|
+
.p-component:disabled {
|
|
19
|
+
opacity: $disabledOpacity;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.p-error {
|
|
23
|
+
color: $errorColor;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.p-text-secondary {
|
|
27
|
+
color: $textSecondaryColor;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.pi {
|
|
31
|
+
font-size: $primeIconFontSize;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.p-icon {
|
|
35
|
+
width: $primeIconFontSize;
|
|
36
|
+
height: $primeIconFontSize;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.p-link {
|
|
40
|
+
font-family: var(--font-family);
|
|
41
|
+
font-feature-settings: var(--font-feature-settings, normal);
|
|
42
|
+
font-size: $fontSize;
|
|
43
|
+
border-radius: $borderRadius;
|
|
44
|
+
|
|
45
|
+
&:focus-visible {
|
|
46
|
+
@include focused();
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.p-component-overlay-enter {
|
|
51
|
+
animation: p-component-overlay-enter-animation 150ms forwards;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.p-component-overlay-leave {
|
|
55
|
+
animation: p-component-overlay-leave-animation 150ms forwards;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.p-component-overlay {
|
|
59
|
+
@keyframes p-component-overlay-enter-animation {
|
|
60
|
+
from {
|
|
61
|
+
background-color: transparent;
|
|
62
|
+
}
|
|
63
|
+
to {
|
|
64
|
+
background-color: var(--maskbg);
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
@keyframes p-component-overlay-leave-animation {
|
|
69
|
+
from {
|
|
70
|
+
background-color: var(--maskbg);
|
|
71
|
+
}
|
|
72
|
+
to {
|
|
73
|
+
background-color: transparent;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|