@medyll/idae-slotui-svelte 0.25.0 → 0.27.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/dist/controls/autocomplete/AutoComplete.svelte.d.ts +1 -1
- package/dist/controls/switch/Switch.svelte.d.ts +1 -1
- package/dist/controls/textfield/TextField.svelte.d.ts +1 -1
- package/dist/index.d.ts +5 -4
- package/dist/index.js +5 -4
- package/dist/slotui-css/alert.min.css +96 -1
- package/dist/slotui-css/auto-complete.min.css +12 -1
- package/dist/slotui-css/avatar.min.css +13 -1
- package/dist/slotui-css/backdrop.min.css +32 -1
- package/dist/slotui-css/badge.min.css +16 -1
- package/dist/slotui-css/boot-menu.min.css +77 -1
- package/dist/slotui-css/box.min.css +29 -1
- package/dist/slotui-css/breadcrumb.min.css +3 -1
- package/dist/slotui-css/button-action.min.css +7 -1
- package/dist/slotui-css/button-menu.min.css +31 -1
- package/dist/slotui-css/button.min.css +1195 -1
- package/dist/slotui-css/cartouche.min.css +90 -1
- package/dist/slotui-css/checkbox.min.css +123 -1
- package/dist/slotui-css/chipper.min.css +56 -1
- package/dist/slotui-css/chrome-frame.min.css +34 -1
- package/dist/slotui-css/confirm.min.css +9 -1
- package/dist/slotui-css/containerConfig.css +7 -0
- package/dist/slotui-css/containerConfig.min.css +7 -0
- package/dist/slotui-css/content-switcher.min.css +21 -1
- package/dist/slotui-css/csss.min.css +10 -1
- package/dist/slotui-css/datalist.min.css +136 -1
- package/dist/slotui-css/divider.min.css +16 -1
- package/dist/slotui-css/drawer.min.css +84 -1
- package/dist/slotui-css/finder.min.css +73 -1
- package/dist/slotui-css/frame.min.css +49 -1
- package/dist/slotui-css/icon.min.css +16 -1
- package/dist/slotui-css/loader.min.css +46 -1
- package/dist/slotui-css/marquee.min.css +56 -1
- package/dist/slotui-css/menu-list.min.css +346 -1
- package/dist/slotui-css/menu.min.css +95 -1
- package/dist/slotui-css/panel.min.css +25 -1
- package/dist/slotui-css/paper.min.css +21 -1
- package/dist/slotui-css/popper.min.css +85 -1
- package/dist/slotui-css/progress.min.css +20 -1
- package/dist/slotui-css/rating.min.css +9 -1
- package/dist/slotui-css/select.min.css +11 -1
- package/dist/slotui-css/sheetConfig.css +7 -0
- package/dist/slotui-css/sheetConfig.min.css +7 -0
- package/dist/slotui-css/slider.min.css +72 -1
- package/dist/slotui-css/slotui-combined.css +5096 -0
- package/dist/slotui-css/slotui-sheet.min.css +295 -1
- package/dist/slotui-css/sorterer.min.css +11 -1
- package/dist/slotui-css/stepper.min.css +20 -1
- package/dist/slotui-css/stylesheet-container.css +1 -1
- package/dist/slotui-css/stylesheet-container.min.css +374 -1
- package/dist/slotui-css/stylesheet.css +170 -173
- package/dist/slotui-css/stylesheet.min.css +371 -1
- package/dist/slotui-css/switch.min.css +63 -1
- package/dist/slotui-css/tabs.min.css +85 -1
- package/dist/slotui-css/taskbar.min.css +25 -1
- package/dist/slotui-css/textfield.min.css +127 -1
- package/dist/slotui-css/title-bar.min.css +26 -1
- package/dist/slotui-css/toggle-bar.min.css +41 -1
- package/dist/slotui-css/toolbar.min.css +28 -1
- package/dist/slotui-css/tree.min.css +51 -1
- package/dist/slotui-css/window.min.css +60 -1
- package/dist/styles/slotuisheet/SlotuiSheet.svelte +207 -173
- package/dist/styles/slotuisheet/stylesheet.scss +51 -43
- package/dist/styles/slotuisheet/utils.js +1 -1
- package/dist/ui/menuList/MenuList.svelte.d.ts +1 -1
- package/dist/ui/menuList/MenuListItem.svelte +3 -3
- package/dist/ui/menuList/MenuListItem.svelte.d.ts +1 -1
- package/dist/ui/tree/Tree.svelte.d.ts +1 -1
- package/dist/utils/content/Content.svelte.d.ts +1 -1
- package/dist/utils/stylesheet/StyleSheet.svelte +38 -3
- package/dist/utils/stylesheet/stylesheet.scss +1 -1
- package/dist/utils/stylesheet/utils.js +13 -13
- package/package.json +3 -3
- /package/dist/styles/slotuisheet/{sheetConfig.css → sheetConfig.scss} +0 -0
- /package/dist/utils/stylesheet/{containerConfig.css → containerConfig.scss} +0 -0
|
@@ -25,7 +25,7 @@ declare class __sveltets_Render<T> {
|
|
|
25
25
|
[evt: string]: CustomEvent<any>;
|
|
26
26
|
};
|
|
27
27
|
slots(): {};
|
|
28
|
-
bindings(): "
|
|
28
|
+
bindings(): "data" | "selectedIndex" | "element" | "filteredData";
|
|
29
29
|
exports(): {};
|
|
30
30
|
}
|
|
31
31
|
interface $$IsomorphicComponent {
|
|
@@ -16,7 +16,7 @@ declare class __sveltets_Render<T = Data> {
|
|
|
16
16
|
[evt: string]: CustomEvent<any>;
|
|
17
17
|
};
|
|
18
18
|
slots(): {};
|
|
19
|
-
bindings(): "
|
|
19
|
+
bindings(): "name" | "element" | "disabled" | "checked";
|
|
20
20
|
exports(): {};
|
|
21
21
|
}
|
|
22
22
|
interface $$IsomorphicComponent {
|
|
@@ -36,6 +36,6 @@ declare const TextField: $$__sveltets_2_IsomorphicComponent<{
|
|
|
36
36
|
inputFirst?: import("svelte").Snippet | undefined;
|
|
37
37
|
} & Partial<HTMLInputElement>, {
|
|
38
38
|
[evt: string]: CustomEvent<any>;
|
|
39
|
-
}, {}, {}, "
|
|
39
|
+
}, {}, {}, "value" | "width" | "element">;
|
|
40
40
|
type TextField = InstanceType<typeof TextField>;
|
|
41
41
|
export default TextField;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from './componentCite.js';
|
|
2
|
-
export * from './
|
|
2
|
+
export * from './csss/csss.js';
|
|
3
3
|
export * as windowMinCss from './slotui-css/window.min.css';
|
|
4
4
|
export * as windowCss from './slotui-css/window.css';
|
|
5
5
|
export * as treeMinCss from './slotui-css/tree.min.css';
|
|
@@ -35,6 +35,8 @@ export * as slotuiMixinsCss from './slotui-css/slotui-mixins.css';
|
|
|
35
35
|
export * as slotuiCombinedCss from './slotui-css/slotui-combined.css';
|
|
36
36
|
export * as sliderMinCss from './slotui-css/slider.min.css';
|
|
37
37
|
export * as sliderCss from './slotui-css/slider.css';
|
|
38
|
+
export * as sheetConfigMinCss from './slotui-css/sheetConfig.min.css';
|
|
39
|
+
export * as sheetConfigCss from './slotui-css/sheetConfig.css';
|
|
38
40
|
export * as selectMinCss from './slotui-css/select.min.css';
|
|
39
41
|
export * as selectCss from './slotui-css/select.css';
|
|
40
42
|
export * as ratingMinCss from './slotui-css/rating.min.css';
|
|
@@ -71,6 +73,8 @@ export * as csssMinCss from './slotui-css/csss.min.css';
|
|
|
71
73
|
export * as csssCss from './slotui-css/csss.css';
|
|
72
74
|
export * as contentSwitcherMinCss from './slotui-css/content-switcher.min.css';
|
|
73
75
|
export * as contentSwitcherCss from './slotui-css/content-switcher.css';
|
|
76
|
+
export * as containerConfigMinCss from './slotui-css/containerConfig.min.css';
|
|
77
|
+
export * as containerConfigCss from './slotui-css/containerConfig.css';
|
|
74
78
|
export * as confirmMinCss from './slotui-css/confirm.min.css';
|
|
75
79
|
export * as confirmCss from './slotui-css/confirm.css';
|
|
76
80
|
export * as chromeFrameMinCss from './slotui-css/chrome-frame.min.css';
|
|
@@ -103,7 +107,6 @@ export * as autoCompleteMinCss from './slotui-css/auto-complete.min.css';
|
|
|
103
107
|
export * as autoCompleteCss from './slotui-css/auto-complete.css';
|
|
104
108
|
export * as alertMinCss from './slotui-css/alert.min.css';
|
|
105
109
|
export * as alertCss from './slotui-css/alert.css';
|
|
106
|
-
export * from './csss/csss.js';
|
|
107
110
|
export * from './utils/uses/toggler.js';
|
|
108
111
|
export * from './utils/uses/positioner.js';
|
|
109
112
|
export * from './utils/uses/navigation.js';
|
|
@@ -112,7 +115,6 @@ export * from './utils/uses/event.js';
|
|
|
112
115
|
export * from './utils/uses/draggabler.js';
|
|
113
116
|
export * from './utils/stylesheet/utils.js';
|
|
114
117
|
export * from './utils/stylesheet/types.js';
|
|
115
|
-
export * as containerConfigCss from './utils/stylesheet/containerConfig.css';
|
|
116
118
|
export { default as StyleSheet } from './utils/stylesheet/StyleSheet.svelte';
|
|
117
119
|
export { default as Slotted } from './utils/slotted/Slotted.svelte';
|
|
118
120
|
export * from './utils/looper/types.js';
|
|
@@ -185,7 +187,6 @@ export { default as ChromeFrame } from './ui/chromeFrame/ChromeFrame.svelte';
|
|
|
185
187
|
export { default as BootStrApp } from './ui/bootstrapp/BootStrApp.svelte';
|
|
186
188
|
export * from './styles/slotuisheet/utils.js';
|
|
187
189
|
export * from './styles/slotuisheet/types.js';
|
|
188
|
-
export * as sheetConfigCss from './styles/slotuisheet/sheetConfig.css';
|
|
189
190
|
export { default as SlotuiSheet } from './styles/slotuisheet/SlotuiSheet.svelte';
|
|
190
191
|
export * from './navigation/tabs/types.js';
|
|
191
192
|
export { default as Tabs } from './navigation/tabs/Tabs.svelte';
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// auto exports of entry components
|
|
2
2
|
export * from './componentCite.js';
|
|
3
|
-
export * from './
|
|
3
|
+
export * from './csss/csss.js';
|
|
4
4
|
export * as windowMinCss from './slotui-css/window.min.css';
|
|
5
5
|
export * as windowCss from './slotui-css/window.css';
|
|
6
6
|
export * as treeMinCss from './slotui-css/tree.min.css';
|
|
@@ -36,6 +36,8 @@ export * as slotuiMixinsCss from './slotui-css/slotui-mixins.css';
|
|
|
36
36
|
export * as slotuiCombinedCss from './slotui-css/slotui-combined.css';
|
|
37
37
|
export * as sliderMinCss from './slotui-css/slider.min.css';
|
|
38
38
|
export * as sliderCss from './slotui-css/slider.css';
|
|
39
|
+
export * as sheetConfigMinCss from './slotui-css/sheetConfig.min.css';
|
|
40
|
+
export * as sheetConfigCss from './slotui-css/sheetConfig.css';
|
|
39
41
|
export * as selectMinCss from './slotui-css/select.min.css';
|
|
40
42
|
export * as selectCss from './slotui-css/select.css';
|
|
41
43
|
export * as ratingMinCss from './slotui-css/rating.min.css';
|
|
@@ -72,6 +74,8 @@ export * as csssMinCss from './slotui-css/csss.min.css';
|
|
|
72
74
|
export * as csssCss from './slotui-css/csss.css';
|
|
73
75
|
export * as contentSwitcherMinCss from './slotui-css/content-switcher.min.css';
|
|
74
76
|
export * as contentSwitcherCss from './slotui-css/content-switcher.css';
|
|
77
|
+
export * as containerConfigMinCss from './slotui-css/containerConfig.min.css';
|
|
78
|
+
export * as containerConfigCss from './slotui-css/containerConfig.css';
|
|
75
79
|
export * as confirmMinCss from './slotui-css/confirm.min.css';
|
|
76
80
|
export * as confirmCss from './slotui-css/confirm.css';
|
|
77
81
|
export * as chromeFrameMinCss from './slotui-css/chrome-frame.min.css';
|
|
@@ -104,7 +108,6 @@ export * as autoCompleteMinCss from './slotui-css/auto-complete.min.css';
|
|
|
104
108
|
export * as autoCompleteCss from './slotui-css/auto-complete.css';
|
|
105
109
|
export * as alertMinCss from './slotui-css/alert.min.css';
|
|
106
110
|
export * as alertCss from './slotui-css/alert.css';
|
|
107
|
-
export * from './csss/csss.js';
|
|
108
111
|
export * from './utils/uses/toggler.js';
|
|
109
112
|
export * from './utils/uses/positioner.js';
|
|
110
113
|
export * from './utils/uses/navigation.js';
|
|
@@ -113,7 +116,6 @@ export * from './utils/uses/event.js';
|
|
|
113
116
|
export * from './utils/uses/draggabler.js';
|
|
114
117
|
export * from './utils/stylesheet/utils.js';
|
|
115
118
|
export * from './utils/stylesheet/types.js';
|
|
116
|
-
export * as containerConfigCss from './utils/stylesheet/containerConfig.css';
|
|
117
119
|
export { default as StyleSheet } from './utils/stylesheet/StyleSheet.svelte';
|
|
118
120
|
export { default as Slotted } from './utils/slotted/Slotted.svelte';
|
|
119
121
|
export * from './utils/looper/types.js';
|
|
@@ -186,7 +188,6 @@ export { default as ChromeFrame } from './ui/chromeFrame/ChromeFrame.svelte';
|
|
|
186
188
|
export { default as BootStrApp } from './ui/bootstrapp/BootStrApp.svelte';
|
|
187
189
|
export * from './styles/slotuisheet/utils.js';
|
|
188
190
|
export * from './styles/slotuisheet/types.js';
|
|
189
|
-
export * as sheetConfigCss from './styles/slotuisheet/sheetConfig.css';
|
|
190
191
|
export { default as SlotuiSheet } from './styles/slotuisheet/SlotuiSheet.svelte';
|
|
191
192
|
export * from './navigation/tabs/types.js';
|
|
192
193
|
export { default as Tabs } from './navigation/tabs/Tabs.svelte';
|
|
@@ -1 +1,96 @@
|
|
|
1
|
-
:root
|
|
1
|
+
:root {
|
|
2
|
+
--alert-radius: var(--sld-radius-small);
|
|
3
|
+
--alert-color-border: var(--sld-color-border);
|
|
4
|
+
--alert-color-background: var(--sld-color-background);
|
|
5
|
+
--alert-elevation: var(--sld-elevation-4);
|
|
6
|
+
--alert-pad: var(--sld-pad-small);
|
|
7
|
+
--alert-gap: var(--sld-gap-small);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
dialog.alert {
|
|
11
|
+
position: relative;
|
|
12
|
+
min-width: 350px;
|
|
13
|
+
display: inline-block;
|
|
14
|
+
border-radius: var(--alert-radius);
|
|
15
|
+
border: 1px solid var(--alert-color-border);
|
|
16
|
+
background-color: var(--alert-color-background);
|
|
17
|
+
box-shadow: var(--alert-elevation);
|
|
18
|
+
overflow: hidden;
|
|
19
|
+
padding: 0;
|
|
20
|
+
}
|
|
21
|
+
dialog.alert[open=true] {
|
|
22
|
+
display: none;
|
|
23
|
+
}
|
|
24
|
+
dialog.alert article.dialog-content {
|
|
25
|
+
padding: var(--alert-pad);
|
|
26
|
+
border-bottom: 4px solid var(--alert-color-border);
|
|
27
|
+
}
|
|
28
|
+
dialog.alert article.dialog-content header.header-bar {
|
|
29
|
+
display: flex;
|
|
30
|
+
align-items: center;
|
|
31
|
+
padding: var(--alert-pad-small);
|
|
32
|
+
gap: var(--alert-gap-small, 1rem);
|
|
33
|
+
}
|
|
34
|
+
dialog.alert article.dialog-content header.header-bar .dot {
|
|
35
|
+
display: inline-block;
|
|
36
|
+
border: 1px solid var(--alert-color-border);
|
|
37
|
+
border-radius: var(--alert-radius);
|
|
38
|
+
height: 16px;
|
|
39
|
+
width: 4px;
|
|
40
|
+
transform: translate(-50%, 0);
|
|
41
|
+
}
|
|
42
|
+
dialog.alert article.dialog-content header.header-bar .title {
|
|
43
|
+
flex: 1;
|
|
44
|
+
display: flex;
|
|
45
|
+
align-items: center;
|
|
46
|
+
}
|
|
47
|
+
dialog.alert article.dialog-content header.header-bar [data-close] {
|
|
48
|
+
border-radius: var(--alert-radius);
|
|
49
|
+
margin: 0.25rem;
|
|
50
|
+
padding: 0.25rem;
|
|
51
|
+
}
|
|
52
|
+
dialog.alert article.dialog-content footer.dialog-footer {
|
|
53
|
+
display: flex;
|
|
54
|
+
justify-content: flex-end;
|
|
55
|
+
padding: var(--alert-pad);
|
|
56
|
+
border-top: 1px solid var(--alert-color-border);
|
|
57
|
+
}
|
|
58
|
+
dialog.alert article.dialog-content footer.dialog-footer button {
|
|
59
|
+
margin-left: 1rem;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.bg-themed-scheme-discrete {
|
|
63
|
+
color: black;
|
|
64
|
+
text-shadow: 0 0 0.125rem #b3b3b3;
|
|
65
|
+
background-color: #ccc;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.bg-themed-scheme-success {
|
|
69
|
+
color: white;
|
|
70
|
+
text-shadow: 0 0 0.125rem #004d00;
|
|
71
|
+
background-color: green;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.bg-themed-scheme-info {
|
|
75
|
+
color: black;
|
|
76
|
+
text-shadow: 0 0 0.125rem #ffd324;
|
|
77
|
+
background-color: #ffdd57;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.bg-themed-scheme-warning {
|
|
81
|
+
color: black;
|
|
82
|
+
text-shadow: 0 0 0.125rem #b49104;
|
|
83
|
+
background-color: #e6b905;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.bg-themed-scheme-alert {
|
|
87
|
+
color: black;
|
|
88
|
+
text-shadow: 0 0 0.125rem #cc5c00;
|
|
89
|
+
background-color: #ff7300;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.bg-themed-scheme-error {
|
|
93
|
+
color: white;
|
|
94
|
+
text-shadow: 0 0 0.125rem #cc0000;
|
|
95
|
+
background-color: red;
|
|
96
|
+
}
|
|
@@ -1 +1,12 @@
|
|
|
1
|
-
:root
|
|
1
|
+
:root {
|
|
2
|
+
--auto-complete-pad: var(--sld-pad-medium);
|
|
3
|
+
--auto-complete-gap: var(--sld-gap-small);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.auto-complete-no-results, .auto-complete-boot {
|
|
7
|
+
padding: var(--auto-complete-pad);
|
|
8
|
+
gap: var(--auto-complete-gap);
|
|
9
|
+
display: flex;
|
|
10
|
+
flex-direction: row;
|
|
11
|
+
align-items: center;
|
|
12
|
+
}
|
|
@@ -1 +1,13 @@
|
|
|
1
|
-
:root
|
|
1
|
+
:root {
|
|
2
|
+
--avatar-radius: var(--css-radius-small);
|
|
3
|
+
--avatar-border-color: var(--sld-color-border);
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.avatar {
|
|
7
|
+
position: relative;
|
|
8
|
+
border-radius: var(--avatar-radius);
|
|
9
|
+
border: 1px solid var(--avatar-border-color);
|
|
10
|
+
display: grid;
|
|
11
|
+
place-items: center;
|
|
12
|
+
overflow: hidden;
|
|
13
|
+
}
|
|
@@ -1 +1,32 @@
|
|
|
1
|
-
:root
|
|
1
|
+
:root {
|
|
2
|
+
--backdrop-background-color: var(--sld-color-foreground-alpha-high);
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.backdrop {
|
|
6
|
+
z-index: 10000;
|
|
7
|
+
height: 100%;
|
|
8
|
+
width: 100%;
|
|
9
|
+
top: 0;
|
|
10
|
+
left: 0;
|
|
11
|
+
}
|
|
12
|
+
.backdrop-content {
|
|
13
|
+
z-index: 10001;
|
|
14
|
+
position: absolute;
|
|
15
|
+
height: 100%;
|
|
16
|
+
width: 100%;
|
|
17
|
+
background-color: var(--backdrop-background-color);
|
|
18
|
+
backdrop-filter: blur(5px);
|
|
19
|
+
--moz-backdrop-filter: blur(5px);
|
|
20
|
+
display: flex;
|
|
21
|
+
align-items: center;
|
|
22
|
+
justify-content: center;
|
|
23
|
+
}
|
|
24
|
+
.backdrop-content-loader {
|
|
25
|
+
display: flex;
|
|
26
|
+
justify-content: center;
|
|
27
|
+
align-content: center;
|
|
28
|
+
align-items: center;
|
|
29
|
+
}
|
|
30
|
+
.backdrop-content-inner {
|
|
31
|
+
display: inherit;
|
|
32
|
+
}
|
|
@@ -1 +1,16 @@
|
|
|
1
|
-
:root
|
|
1
|
+
:root {
|
|
2
|
+
--badge-color-border: var(--sld-color-border);
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.badge {
|
|
6
|
+
position: absolute;
|
|
7
|
+
border-radius: 50%;
|
|
8
|
+
border: 1px solid var(--badge-color-border);
|
|
9
|
+
display: grid;
|
|
10
|
+
place-items: center;
|
|
11
|
+
width: 16px;
|
|
12
|
+
height: 16px;
|
|
13
|
+
}
|
|
14
|
+
.badge .hidden {
|
|
15
|
+
transform: scale(0, 0);
|
|
16
|
+
}
|
|
@@ -1 +1,77 @@
|
|
|
1
|
-
:root
|
|
1
|
+
:root {
|
|
2
|
+
--boot-menu-background-color: rgba(90, 67, 52, 0.9);
|
|
3
|
+
--boot-menu-backdrop-filter: blur(10px);
|
|
4
|
+
--boot-menu-color: white;
|
|
5
|
+
--boot-menu-max-height: 600px;
|
|
6
|
+
--boot-menu-height: 80%;
|
|
7
|
+
--boot-menu-box-shadow: 0px 0px 3px 1px rgba(51, 51, 51, 0.5);
|
|
8
|
+
--boot-menu-z-index: 3000;
|
|
9
|
+
--boot-menu-margin-top: 1rem;
|
|
10
|
+
--boot-menu-button-pole-border-radius: var(--sld-radius-small);
|
|
11
|
+
--boot-menu-button-pole-border: 1px solid rgba(208, 191, 151, 0.3);
|
|
12
|
+
--boot-menu-button-pole-padding: var(--sld-pad-tiny);
|
|
13
|
+
--boot-menu-grid-icon-gap: 10px;
|
|
14
|
+
--boot-menu-grid-icon-template-columns: repeat(auto-fill, minmax(30%, auto));
|
|
15
|
+
--boot-menu-grid-icon-bis-template-columns: repeat(auto-fill, minmax(15%, auto));
|
|
16
|
+
--boot-menu-grid-icon-mid-template-columns: repeat(auto-fill, minmax(49%, auto));
|
|
17
|
+
--boot-menu-grid-one-template-columns: repeat(auto-fill, minmax(100%, auto));
|
|
18
|
+
--boot-menu-bottom-bar-box-shadow: 0px 0px 3px 1px rgba(51, 51, 51, 0.5);
|
|
19
|
+
--boot-menu-bottom-bar-padding: var(--sld-pad-small) var(--sld-pad-medium);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.boot-menu {
|
|
23
|
+
background-color: var(--boot-menu-background-color);
|
|
24
|
+
backdrop-filter: var(--boot-menu-backdrop-filter);
|
|
25
|
+
color: var(--boot-menu-color);
|
|
26
|
+
display: flex;
|
|
27
|
+
flex-direction: column;
|
|
28
|
+
max-height: var(--boot-menu-max-height);
|
|
29
|
+
height: var(--boot-menu-height);
|
|
30
|
+
left: 50%;
|
|
31
|
+
transform: translate(-50%, 0);
|
|
32
|
+
box-shadow: var(--boot-menu-box-shadow);
|
|
33
|
+
overflow: hidden;
|
|
34
|
+
z-index: var(--boot-menu-z-index);
|
|
35
|
+
position: absolute;
|
|
36
|
+
margin-top: var(--boot-menu-margin-top);
|
|
37
|
+
}
|
|
38
|
+
.boot-menu .boot-menuContent {
|
|
39
|
+
flex: 1;
|
|
40
|
+
overflow-y: auto;
|
|
41
|
+
overflow-x: hidden;
|
|
42
|
+
}
|
|
43
|
+
.boot-menu .buttonPole {
|
|
44
|
+
border-radius: var(--boot-menu-button-pole-border-radius);
|
|
45
|
+
border: var(--boot-menu-button-pole-border);
|
|
46
|
+
padding: var(--boot-menu-button-pole-padding);
|
|
47
|
+
}
|
|
48
|
+
.boot-menu .gridIcon {
|
|
49
|
+
width: 100%;
|
|
50
|
+
display: grid;
|
|
51
|
+
grid-gap: var(--boot-menu-grid-icon-gap);
|
|
52
|
+
grid-template-columns: var(--boot-menu-grid-icon-template-columns);
|
|
53
|
+
}
|
|
54
|
+
.boot-menu .gridIconBis {
|
|
55
|
+
width: 100%;
|
|
56
|
+
display: grid;
|
|
57
|
+
grid-gap: var(--boot-menu-grid-icon-gap);
|
|
58
|
+
grid-template-columns: var(--boot-menu-grid-icon-bis-template-columns);
|
|
59
|
+
}
|
|
60
|
+
.boot-menu .gridIconMid {
|
|
61
|
+
width: 100%;
|
|
62
|
+
display: grid;
|
|
63
|
+
grid-gap: var(--boot-menu-grid-icon-gap);
|
|
64
|
+
grid-template-columns: var(--boot-menu-grid-icon-mid-template-columns);
|
|
65
|
+
}
|
|
66
|
+
.boot-menu .gridOne {
|
|
67
|
+
width: 100%;
|
|
68
|
+
display: grid;
|
|
69
|
+
grid-gap: var(--boot-menu-grid-icon-gap);
|
|
70
|
+
grid-template-columns: var(--boot-menu-grid-one-template-columns);
|
|
71
|
+
}
|
|
72
|
+
.boot-menu .bottomBar {
|
|
73
|
+
box-shadow: var(--boot-menu-bottom-bar-box-shadow);
|
|
74
|
+
display: flex;
|
|
75
|
+
align-items: end;
|
|
76
|
+
padding: var(--boot-menu-bottom-bar-padding);
|
|
77
|
+
}
|
|
@@ -1 +1,29 @@
|
|
|
1
|
-
:root
|
|
1
|
+
:root {
|
|
2
|
+
--box-color-background: var(--sld-color-background);
|
|
3
|
+
--box-border-bottom: var(--sld-color-primary);
|
|
4
|
+
--box-radius: var(--sld-radius-small);
|
|
5
|
+
--box-elevation: var(--sld-elevation-3);
|
|
6
|
+
--box-gap: var(--sld-gap-tiny);
|
|
7
|
+
--box-pad: var(--sld-pad-small);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.box {
|
|
11
|
+
min-height: 160px;
|
|
12
|
+
min-width: 320px;
|
|
13
|
+
background-color: var(--box-color-background);
|
|
14
|
+
border-bottom: 1px solid var(--box-border-bottom);
|
|
15
|
+
border-radius: var(--box-radius);
|
|
16
|
+
box-shadow: var(--box-elevation);
|
|
17
|
+
display: flex;
|
|
18
|
+
flex-direction: column;
|
|
19
|
+
}
|
|
20
|
+
.box-content {
|
|
21
|
+
flex: 1;
|
|
22
|
+
}
|
|
23
|
+
.box-button-zone {
|
|
24
|
+
display: flex;
|
|
25
|
+
gap: var(--box-gap);
|
|
26
|
+
padding: var(--box-pad);
|
|
27
|
+
text-align: right;
|
|
28
|
+
justify-content: end;
|
|
29
|
+
}
|
|
@@ -1 +1,31 @@
|
|
|
1
|
-
.buttonActionRoot{
|
|
1
|
+
.buttonActionRoot {
|
|
2
|
+
display: inline-block;
|
|
3
|
+
position: relative;
|
|
4
|
+
width: 64px;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.buttonText {
|
|
8
|
+
text-align: center;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.button {
|
|
12
|
+
display: block;
|
|
13
|
+
width: 64px;
|
|
14
|
+
}
|
|
15
|
+
.button:hover {
|
|
16
|
+
background-color: rgba(255, 255, 255, 0.3);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.action {
|
|
20
|
+
position: absolute;
|
|
21
|
+
display: block;
|
|
22
|
+
top: 0;
|
|
23
|
+
bottom: 0;
|
|
24
|
+
right: 0;
|
|
25
|
+
background-color: rgba(255, 255, 255, 0.1);
|
|
26
|
+
width: 30%;
|
|
27
|
+
padding: 0.5rem;
|
|
28
|
+
}
|
|
29
|
+
.action:hover {
|
|
30
|
+
background-color: rgba(255, 255, 255, 0.5);
|
|
31
|
+
}
|