@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,155 @@
|
|
|
1
|
+
.p-galleria {
|
|
2
|
+
.p-galleria-close {
|
|
3
|
+
margin: $galleriaCloseIconMargin;
|
|
4
|
+
background: $galleriaCloseIconBg;
|
|
5
|
+
color: $galleriaCloseIconColor;
|
|
6
|
+
width: $galleriaCloseIconWidth;
|
|
7
|
+
height: $galleriaCloseIconHeight;
|
|
8
|
+
transition: $actionIconTransition;
|
|
9
|
+
border-radius: $galleriaCloseIconBorderRadius;
|
|
10
|
+
|
|
11
|
+
.p-galleria-close-icon {
|
|
12
|
+
font-size: $galleriaCloseIconFontSize;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.p-icon-wrapper {
|
|
16
|
+
.p-icon {
|
|
17
|
+
width: $galleriaCloseIconFontSize;
|
|
18
|
+
height: $galleriaCloseIconFontSize;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&:hover {
|
|
23
|
+
background: $galleriaCloseIconHoverBg;
|
|
24
|
+
color: $galleriaCloseIconHoverColor;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.p-galleria-item-nav {
|
|
29
|
+
background: $galleriaItemNavigatorBg;
|
|
30
|
+
color: $galleriaItemNavigatorColor;
|
|
31
|
+
width: $galleriaItemNavigatorWidth;
|
|
32
|
+
height: $galleriaItemNavigatorHeight;
|
|
33
|
+
transition: $actionIconTransition;
|
|
34
|
+
border-radius: $galleriaItemNavigatorBorderRadius;
|
|
35
|
+
margin: $galleriaItemNavigatorMargin;
|
|
36
|
+
|
|
37
|
+
.p-galleria-item-prev-icon,
|
|
38
|
+
.p-galleria-item-next-icon {
|
|
39
|
+
font-size: $galleriaItemNavigatorFontSize;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.p-icon-wrapper {
|
|
43
|
+
.p-icon {
|
|
44
|
+
width: $galleriaCloseIconFontSize;
|
|
45
|
+
height: $galleriaCloseIconFontSize;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&:not(.p-disabled) {
|
|
50
|
+
&:hover {
|
|
51
|
+
background: $galleriaItemNavigatorHoverBg;
|
|
52
|
+
color: $galleriaItemNavigatorHoverColor;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.p-galleria-caption {
|
|
58
|
+
background: $galleriaCaptionBg;
|
|
59
|
+
color: $galleriaCaptionTextColor;
|
|
60
|
+
padding: $galleriaCaptionPadding;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.p-galleria-indicators {
|
|
64
|
+
padding: $galleriaIndicatorsPadding;
|
|
65
|
+
|
|
66
|
+
.p-galleria-indicator {
|
|
67
|
+
button {
|
|
68
|
+
background-color: $galleriaIndicatorBg;
|
|
69
|
+
width: $galleriaIndicatorWidth;
|
|
70
|
+
height: $galleriaIndicatorHeight;
|
|
71
|
+
transition: $actionIconTransition;
|
|
72
|
+
border-radius: $galleriaIndicatorBorderRadius;
|
|
73
|
+
|
|
74
|
+
&:hover {
|
|
75
|
+
background: $galleriaIndicatorHoverBg;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
&.p-highlight {
|
|
80
|
+
button {
|
|
81
|
+
background: $highlightBg;
|
|
82
|
+
color: $highlightTextColor;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
&.p-galleria-indicators-bottom,
|
|
89
|
+
&.p-galleria-indicators-top {
|
|
90
|
+
.p-galleria-indicator {
|
|
91
|
+
margin-right: $inlineSpacing;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
&.p-galleria-indicators-left,
|
|
96
|
+
&.p-galleria-indicators-right {
|
|
97
|
+
.p-galleria-indicator {
|
|
98
|
+
margin-bottom: $inlineSpacing;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
&.p-galleria-indicator-onitem {
|
|
103
|
+
.p-galleria-indicators {
|
|
104
|
+
background: $galleriaIndicatorsBgOnItem;
|
|
105
|
+
|
|
106
|
+
.p-galleria-indicator {
|
|
107
|
+
button {
|
|
108
|
+
background: $galleriaIndicatorBgOnItem;
|
|
109
|
+
|
|
110
|
+
&:hover {
|
|
111
|
+
background: $galleriaIndicatorHoverBgOnItem;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
&.p-highlight {
|
|
116
|
+
button {
|
|
117
|
+
background: $highlightBg;
|
|
118
|
+
color: $highlightTextColor;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.p-galleria-thumbnail-container {
|
|
126
|
+
background: $galleriaThumbnailContainerBg;
|
|
127
|
+
padding: $galleriaThumbnailContainerPadding;
|
|
128
|
+
|
|
129
|
+
.p-galleria-thumbnail-prev,
|
|
130
|
+
.p-galleria-thumbnail-next {
|
|
131
|
+
margin: $inlineSpacing;
|
|
132
|
+
background-color: $galleriaThumbnailNavigatorBg;
|
|
133
|
+
color: $galleriaThumbnailNavigatorColor;
|
|
134
|
+
width: $galleriaThumbnailNavigatorWidth;
|
|
135
|
+
height: $galleriaThumbnailNavigatorHeight;
|
|
136
|
+
transition: $actionIconTransition;
|
|
137
|
+
border-radius: $galleriaThumbnailNavigatorBorderRadius;
|
|
138
|
+
|
|
139
|
+
&:hover {
|
|
140
|
+
background: $galleriaThumbnailNavigatorHoverBg;
|
|
141
|
+
color: $galleriaThumbnailNavigatorHoverColor;
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.p-galleria-thumbnail-item-content {
|
|
146
|
+
&:focus-visible {
|
|
147
|
+
@include focused();
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.p-galleria-mask {
|
|
154
|
+
--maskbg: #{$galleriaMaskBg};
|
|
155
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
.p-image-mask {
|
|
2
|
+
--maskbg: #{$imageMaskBg};
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.p-image-preview-indicator {
|
|
6
|
+
background-color: transparent;
|
|
7
|
+
color: $imagePreviewIndicatorColor;
|
|
8
|
+
transition: $actionIconTransition;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.p-image-preview-container {
|
|
12
|
+
&:hover {
|
|
13
|
+
> .p-image-preview-indicator {
|
|
14
|
+
background-color: $imagePreviewIndicatorBg;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.p-image-toolbar {
|
|
20
|
+
padding: $imagePreviewToolbarPadding;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.p-image-action.p-link {
|
|
24
|
+
color: $imagePreviewActionIconColor;
|
|
25
|
+
background-color: $imagePreviewActionIconBg;
|
|
26
|
+
width: $imagePreviewActionIconWidth;
|
|
27
|
+
height: $imagePreviewActionIconHeight;
|
|
28
|
+
border-radius: $imagePreviewActionIconBorderRadius;
|
|
29
|
+
transition: $actionIconTransition;
|
|
30
|
+
margin-right: $inlineSpacing;
|
|
31
|
+
|
|
32
|
+
&:last-child {
|
|
33
|
+
margin-right: 0;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
&:hover {
|
|
37
|
+
color: $imagePreviewActionIconHoverColor;
|
|
38
|
+
background-color: $imagePreviewActionIconHoverBg;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
i {
|
|
42
|
+
font-size: $imagePreviewActionIconFontSize;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.p-icon {
|
|
46
|
+
width: $imagePreviewActionIconFontSize;
|
|
47
|
+
height: $imagePreviewActionIconFontSize;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
.p-confirm-popup {
|
|
2
|
+
background: $overlayContentBg;
|
|
3
|
+
color: $panelContentTextColor;
|
|
4
|
+
border: $overlayContentBorder;
|
|
5
|
+
border-radius: $borderRadius;
|
|
6
|
+
box-shadow: $overlayContainerShadow;
|
|
7
|
+
|
|
8
|
+
.p-confirm-popup-content {
|
|
9
|
+
padding: $panelContentPadding;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.p-confirm-popup-footer {
|
|
13
|
+
text-align: right;
|
|
14
|
+
padding: $panelFooterPadding;
|
|
15
|
+
|
|
16
|
+
button {
|
|
17
|
+
margin: 0 $inlineSpacing 0 0;
|
|
18
|
+
width: auto;
|
|
19
|
+
|
|
20
|
+
&:last-child {
|
|
21
|
+
margin: 0;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
&:after {
|
|
27
|
+
border: solid transparent;
|
|
28
|
+
border-color: rgba($overlayContentBg, 0);
|
|
29
|
+
border-bottom-color: $overlayContentBg;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
&:before {
|
|
33
|
+
border: solid transparent;
|
|
34
|
+
|
|
35
|
+
@if (nth($overlayContentBorder, 2) == 'none') {
|
|
36
|
+
border-color: rgba($overlayContentBg, 0);
|
|
37
|
+
border-bottom-color: $overlayContentBg;
|
|
38
|
+
} @else {
|
|
39
|
+
border-color: rgba(nth($overlayContentBorder, 3), 0);
|
|
40
|
+
border-bottom-color: nth($overlayContentBorder, 3);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
&.p-confirm-popup-flipped {
|
|
45
|
+
&:after {
|
|
46
|
+
border-top-color: $overlayContentBg;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&:before {
|
|
50
|
+
@if (nth($overlayContentBorder, 2) == 'none') {
|
|
51
|
+
border-top-color: $overlayContentBg;
|
|
52
|
+
} @else {
|
|
53
|
+
border-top-color: nth($overlayContentBorder, 3);
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.p-confirm-popup-icon {
|
|
59
|
+
font-size: $primeIconFontSize * 1.5;
|
|
60
|
+
|
|
61
|
+
&.p-icon {
|
|
62
|
+
width: $primeIconFontSize * 1.5;
|
|
63
|
+
height: $primeIconFontSize * 1.5;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.p-confirm-popup-message {
|
|
68
|
+
margin-left: $inlineSpacing * 2;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
.p-dialog {
|
|
2
|
+
border-radius: $borderRadius;
|
|
3
|
+
box-shadow: $overlayContainerShadow;
|
|
4
|
+
border: $overlayContentBorder;
|
|
5
|
+
|
|
6
|
+
.p-dialog-header {
|
|
7
|
+
border-bottom: $dialogHeaderBorder;
|
|
8
|
+
background: $dialogHeaderBg;
|
|
9
|
+
color: $dialogHeaderTextColor;
|
|
10
|
+
padding: $dialogHeaderPadding;
|
|
11
|
+
border-top-right-radius: $borderRadius;
|
|
12
|
+
border-top-left-radius: $borderRadius;
|
|
13
|
+
|
|
14
|
+
.p-dialog-title {
|
|
15
|
+
font-weight: $dialogHeaderFontWeight;
|
|
16
|
+
font-size: $dialogHeaderFontSize;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.p-dialog-header-icon {
|
|
20
|
+
@include action-icon();
|
|
21
|
+
margin-right: $inlineSpacing;
|
|
22
|
+
|
|
23
|
+
&:last-child {
|
|
24
|
+
margin-right: 0;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.p-dialog-content {
|
|
30
|
+
background: $overlayContentBg;
|
|
31
|
+
color: $panelContentTextColor;
|
|
32
|
+
padding: $dialogContentPadding;
|
|
33
|
+
|
|
34
|
+
&:last-of-type {
|
|
35
|
+
border-bottom-right-radius: $borderRadius;
|
|
36
|
+
border-bottom-left-radius: $borderRadius;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.p-dialog-footer {
|
|
41
|
+
border-top: $dialogFooterBorder;
|
|
42
|
+
background: $overlayContentBg;
|
|
43
|
+
color: $panelFooterTextColor;
|
|
44
|
+
padding: $dialogFooterPadding;
|
|
45
|
+
text-align: right;
|
|
46
|
+
border-bottom-right-radius: $borderRadius;
|
|
47
|
+
border-bottom-left-radius: $borderRadius;
|
|
48
|
+
|
|
49
|
+
button {
|
|
50
|
+
margin: 0 $inlineSpacing 0 0;
|
|
51
|
+
width: auto;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
&.p-confirm-dialog {
|
|
56
|
+
.p-confirm-dialog-icon {
|
|
57
|
+
font-size: $primeIconFontSize * 2;
|
|
58
|
+
|
|
59
|
+
&.p-icon {
|
|
60
|
+
width: $primeIconFontSize * 2;
|
|
61
|
+
height: $primeIconFontSize * 2;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.p-confirm-dialog-message {
|
|
66
|
+
margin-left: $inlineSpacing * 2;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
@use 'sass:math';
|
|
2
|
+
|
|
3
|
+
.p-overlaypanel {
|
|
4
|
+
background: $overlayContentBg;
|
|
5
|
+
color: $panelContentTextColor;
|
|
6
|
+
border: $overlayContentBorder;
|
|
7
|
+
border-radius: $borderRadius;
|
|
8
|
+
box-shadow: $overlayContainerShadow;
|
|
9
|
+
|
|
10
|
+
.p-overlaypanel-content {
|
|
11
|
+
padding: $panelContentPadding;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.p-overlaypanel-close {
|
|
15
|
+
background: $buttonBg;
|
|
16
|
+
color: $buttonTextColor;
|
|
17
|
+
width: $actionIconWidth;
|
|
18
|
+
height: $actionIconHeight;
|
|
19
|
+
transition: $actionIconTransition;
|
|
20
|
+
border-radius: $actionIconBorderRadius;
|
|
21
|
+
position: absolute;
|
|
22
|
+
top: math.div(-1 * $actionIconWidth, 2);
|
|
23
|
+
right: math.div(-1 * $actionIconWidth, 2);
|
|
24
|
+
|
|
25
|
+
&:enabled:hover {
|
|
26
|
+
background: $buttonHoverBg;
|
|
27
|
+
color: $buttonTextHoverColor;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&:after {
|
|
32
|
+
border: solid transparent;
|
|
33
|
+
border-color: rgba($overlayContentBg, 0);
|
|
34
|
+
border-bottom-color: $overlayContentBg;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
&:before {
|
|
38
|
+
border: solid transparent;
|
|
39
|
+
|
|
40
|
+
@if (nth($overlayContentBorder, 2) == 'none') {
|
|
41
|
+
border-color: rgba($overlayContentBg, 0);
|
|
42
|
+
border-bottom-color: scale-color($overlayContentBg, $lightness: -5%);
|
|
43
|
+
} @else {
|
|
44
|
+
border-color: rgba(nth($overlayContentBorder, 3), 0);
|
|
45
|
+
border-bottom-color: scale-color(nth($overlayContentBorder, 3), $lightness: -5%);
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&.p-overlaypanel-flipped {
|
|
50
|
+
&:after {
|
|
51
|
+
border-top-color: $overlayContentBg;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
&:before {
|
|
55
|
+
@if (nth($overlayContentBorder, 2) == 'none') {
|
|
56
|
+
border-top-color: $overlayContentBg;
|
|
57
|
+
} @else {
|
|
58
|
+
border-top-color: nth($overlayContentBorder, 3);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
.p-sidebar {
|
|
2
|
+
background: $overlayContentBg;
|
|
3
|
+
color: $panelContentTextColor;
|
|
4
|
+
border: $overlayContentBorder;
|
|
5
|
+
box-shadow: $overlayContainerShadow;
|
|
6
|
+
|
|
7
|
+
.p-sidebar-header {
|
|
8
|
+
padding: $panelHeaderPadding;
|
|
9
|
+
|
|
10
|
+
.p-sidebar-close,
|
|
11
|
+
.p-sidebar-icon {
|
|
12
|
+
@include action-icon();
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
& + .p-sidebar-content {
|
|
16
|
+
padding-top: 0;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.p-sidebar-content {
|
|
21
|
+
padding: $panelContentPadding;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.p-sidebar-footer {
|
|
25
|
+
padding: $panelHeaderPadding;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
.p-tooltip {
|
|
2
|
+
.p-tooltip-text {
|
|
3
|
+
background: $tooltipBg;
|
|
4
|
+
color: $tooltipTextColor;
|
|
5
|
+
padding: $tooltipPadding;
|
|
6
|
+
box-shadow: $inputOverlayShadow;
|
|
7
|
+
border-radius: $borderRadius;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
&.p-tooltip-right {
|
|
11
|
+
.p-tooltip-arrow {
|
|
12
|
+
border-right-color: $tooltipBg;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&.p-tooltip-left {
|
|
17
|
+
.p-tooltip-arrow {
|
|
18
|
+
border-left-color: $tooltipBg;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
&.p-tooltip-top {
|
|
23
|
+
.p-tooltip-arrow {
|
|
24
|
+
border-top-color: $tooltipBg;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&.p-tooltip-bottom {
|
|
29
|
+
.p-tooltip-arrow {
|
|
30
|
+
border-bottom-color: $tooltipBg;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
.p-accordion {
|
|
2
|
+
.p-accordion-header {
|
|
3
|
+
.p-accordion-header-link {
|
|
4
|
+
padding: $accordionHeaderPadding;
|
|
5
|
+
border: $accordionHeaderBorder;
|
|
6
|
+
color: $accordionHeaderTextColor;
|
|
7
|
+
background: $accordionHeaderBg;
|
|
8
|
+
font-weight: $accordionHeaderFontWeight;
|
|
9
|
+
border-radius: $borderRadius;
|
|
10
|
+
transition: $listItemTransition;
|
|
11
|
+
|
|
12
|
+
.p-accordion-toggle-icon {
|
|
13
|
+
margin-right: $inlineSpacing;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
&:not(.p-disabled) {
|
|
18
|
+
.p-accordion-header-link {
|
|
19
|
+
&:focus-visible {
|
|
20
|
+
@include focused-inset();
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
&:not(.p-highlight):not(.p-disabled):hover {
|
|
26
|
+
.p-accordion-header-link {
|
|
27
|
+
background: $accordionHeaderHoverBg;
|
|
28
|
+
border-color: $accordionHeaderHoverBorderColor;
|
|
29
|
+
color: $accordionHeaderTextHoverColor;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
&:not(.p-disabled).p-highlight {
|
|
34
|
+
.p-accordion-header-link {
|
|
35
|
+
background: $accordionHeaderActiveBg;
|
|
36
|
+
border-color: $accordionHeaderActiveBorderColor;
|
|
37
|
+
color: $accordionHeaderTextActiveColor;
|
|
38
|
+
border-bottom-right-radius: 0;
|
|
39
|
+
border-bottom-left-radius: 0;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
&:hover {
|
|
43
|
+
.p-accordion-header-link {
|
|
44
|
+
border-color: $accordionHeaderActiveHoverBorderColor;
|
|
45
|
+
background: $accordionHeaderActiveHoverBg;
|
|
46
|
+
color: $accordionHeaderTextActiveHoverColor;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.p-accordion-content {
|
|
53
|
+
padding: $accordionContentPadding;
|
|
54
|
+
border: $accordionContentBorder;
|
|
55
|
+
background: $accordionContentBg;
|
|
56
|
+
color: $accordionContentTextColor;
|
|
57
|
+
border-top: 0;
|
|
58
|
+
border-top-right-radius: 0;
|
|
59
|
+
border-top-left-radius: 0;
|
|
60
|
+
border-bottom-right-radius: $borderRadius;
|
|
61
|
+
border-bottom-left-radius: $borderRadius;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
p-accordiontab {
|
|
65
|
+
.p-accordion-tab {
|
|
66
|
+
margin-bottom: $accordionSpacing;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
@if $accordionSpacing == 0 {
|
|
70
|
+
.p-accordion-header {
|
|
71
|
+
.p-accordion-header-link {
|
|
72
|
+
border-radius: 0;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.p-accordion-content {
|
|
77
|
+
border-radius: 0;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
&:not(:first-child) {
|
|
81
|
+
.p-accordion-header {
|
|
82
|
+
.p-accordion-header-link {
|
|
83
|
+
border-top: 0 none;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
&:not(.p-highlight):not(.p-disabled):hover,
|
|
87
|
+
&:not(.p-disabled).p-highlight:hover {
|
|
88
|
+
.p-accordion-header-link {
|
|
89
|
+
border-top: 0 none;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
&:first-child {
|
|
96
|
+
.p-accordion-header {
|
|
97
|
+
.p-accordion-header-link {
|
|
98
|
+
border-top-right-radius: $borderRadius;
|
|
99
|
+
border-top-left-radius: $borderRadius;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
&:last-child {
|
|
105
|
+
.p-accordion-header:not(.p-highlight) {
|
|
106
|
+
.p-accordion-header-link {
|
|
107
|
+
border-bottom-right-radius: $borderRadius;
|
|
108
|
+
border-bottom-left-radius: $borderRadius;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.p-accordion-content {
|
|
113
|
+
border-bottom-right-radius: $borderRadius;
|
|
114
|
+
border-bottom-left-radius: $borderRadius;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
.p-card {
|
|
2
|
+
background: $panelContentBg;
|
|
3
|
+
color: $panelContentTextColor;
|
|
4
|
+
box-shadow: $cardShadow;
|
|
5
|
+
border-radius: $borderRadius;
|
|
6
|
+
|
|
7
|
+
.p-card-body {
|
|
8
|
+
padding: $cardBodyPadding;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.p-card-title {
|
|
12
|
+
font-size: $cardTitleFontSize;
|
|
13
|
+
font-weight: $cardTitleFontWeight;
|
|
14
|
+
margin-bottom: $inlineSpacing;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.p-card-subtitle {
|
|
18
|
+
font-weight: $cardSubTitleFontWeight;
|
|
19
|
+
margin-bottom: $inlineSpacing;
|
|
20
|
+
color: $cardSubTitleColor;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.p-card-content {
|
|
24
|
+
padding: $cardContentPadding;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.p-card-footer {
|
|
28
|
+
padding: $cardFooterPadding;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
.p-divider {
|
|
2
|
+
.p-divider-content {
|
|
3
|
+
background-color: $panelContentBg;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
&.p-divider-horizontal {
|
|
7
|
+
margin: $dividerHorizontalMargin;
|
|
8
|
+
padding: $dividerHorizontalPadding;
|
|
9
|
+
|
|
10
|
+
&:before {
|
|
11
|
+
border-top: $dividerSize $dividerColor;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.p-divider-content {
|
|
15
|
+
padding: 0 $inlineSpacing;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
&.p-divider-vertical {
|
|
20
|
+
margin: $dividerVerticalMargin;
|
|
21
|
+
padding: $dividerVerticalPadding;
|
|
22
|
+
|
|
23
|
+
&:before {
|
|
24
|
+
border-left: $dividerSize $dividerColor;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.p-divider-content {
|
|
28
|
+
padding: $inlineSpacing 0;
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
.p-fieldset {
|
|
2
|
+
border: $panelContentBorder;
|
|
3
|
+
background: $panelContentBg;
|
|
4
|
+
color: $panelContentTextColor;
|
|
5
|
+
border-radius: $borderRadius;
|
|
6
|
+
|
|
7
|
+
.p-fieldset-legend {
|
|
8
|
+
padding: $panelHeaderPadding;
|
|
9
|
+
border: $panelHeaderBorder;
|
|
10
|
+
color: $panelHeaderTextColor;
|
|
11
|
+
background: $panelHeaderBg;
|
|
12
|
+
font-weight: $panelHeaderFontWeight;
|
|
13
|
+
border-radius: $borderRadius;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&.p-fieldset-toggleable {
|
|
17
|
+
.p-fieldset-legend {
|
|
18
|
+
padding: 0;
|
|
19
|
+
transition: $actionIconTransition;
|
|
20
|
+
|
|
21
|
+
a {
|
|
22
|
+
padding: $panelHeaderPadding;
|
|
23
|
+
color: $panelHeaderTextColor;
|
|
24
|
+
border-radius: $borderRadius;
|
|
25
|
+
transition: $listItemTransition;
|
|
26
|
+
|
|
27
|
+
.p-fieldset-toggler {
|
|
28
|
+
margin-right: $inlineSpacing;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&:focus-visible {
|
|
32
|
+
@include focused();
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
&:hover {
|
|
37
|
+
background: $panelHeaderHoverBg;
|
|
38
|
+
border-color: $panelHeaderHoverBorderColor;
|
|
39
|
+
color: $panelHeaderTextHoverColor;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.p-fieldset-content {
|
|
45
|
+
padding: $panelContentPadding;
|
|
46
|
+
}
|
|
47
|
+
}
|