@schukai/monster 3.51.5 → 3.52.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +17 -0
- package/README.md +15 -12
- package/example/components/form/button.mjs +10 -0
- package/example/components/form/select.mjs +25 -0
- package/example/components/form/tree-select.mjs +27 -0
- package/example/components/host/host.mjs +0 -0
- package/example/components/notify/message.mjs +4 -0
- package/example/components/notify/notify.mjs +4 -0
- package/example/components/state/log.mjs +0 -0
- package/example/components/state/state.mjs +0 -0
- package/package.json +6 -2
- package/source/components/constants.mjs +132 -0
- package/source/components/datatable/columnbar.mjs +310 -0
- package/source/components/datatable/constants.mjs +121 -0
- package/source/components/datatable/dataset.mjs +219 -0
- package/source/components/datatable/datasource/dom.mjs +186 -0
- package/source/components/datatable/datasource/namespace.mjs +13 -0
- package/source/components/datatable/datasource/rest.mjs +400 -0
- package/source/components/datatable/datasource.mjs +102 -0
- package/source/components/datatable/datatable/header.mjs +268 -0
- package/source/components/datatable/datatable/namespace.mjs +13 -0
- package/source/components/datatable/datatable.mjs +789 -0
- package/source/components/datatable/embedded-pagination.mjs +113 -0
- package/source/components/datatable/filter/abstract-base.mjs +31 -0
- package/source/components/datatable/filter/date-range.mjs +1041 -0
- package/source/components/datatable/filter/input.mjs +175 -0
- package/source/components/datatable/filter/namespace.mjs +13 -0
- package/source/components/datatable/filter/range.mjs +671 -0
- package/source/components/datatable/filter/select.mjs +65 -0
- package/source/components/datatable/filter/settings.mjs +116 -0
- package/source/components/datatable/filter-button.mjs +98 -0
- package/source/components/datatable/filter.mjs +929 -0
- package/source/components/datatable/namespace.mjs +11 -0
- package/source/components/datatable/pagination.mjs +456 -0
- package/source/components/datatable/style/column-bar.pcss +123 -0
- package/source/components/datatable/style/dataset.pcss +13 -0
- package/source/components/datatable/style/datasource.pcss +16 -0
- package/source/components/datatable/style/datatable.pcss +239 -0
- package/source/components/datatable/style/embedded-pagination.pcss +101 -0
- package/source/components/datatable/style/filter-button.pcss +22 -0
- package/source/components/datatable/style/filter-controls-defaults.pcss +46 -0
- package/source/components/datatable/style/filter-date-range.pcss +9 -0
- package/source/components/datatable/style/filter-range.pcss +5 -0
- package/source/components/datatable/style/filter.pcss +156 -0
- package/source/components/datatable/style/pagination.pcss +59 -0
- package/source/components/datatable/style/select-filter.pcss +27 -0
- package/source/components/datatable/stylesheet/column-bar.mjs +33 -0
- package/source/components/datatable/stylesheet/dataset.mjs +33 -0
- package/source/components/datatable/stylesheet/datasource.mjs +33 -0
- package/source/components/datatable/stylesheet/datatable.mjs +33 -0
- package/source/components/datatable/stylesheet/embedded-pagination.mjs +33 -0
- package/source/components/datatable/stylesheet/filter-button.mjs +33 -0
- package/source/components/datatable/stylesheet/filter-controls-defaults.mjs +33 -0
- package/source/components/datatable/stylesheet/filter-date-range.mjs +33 -0
- package/source/components/datatable/stylesheet/filter-range.mjs +33 -0
- package/source/components/datatable/stylesheet/filter.mjs +33 -0
- package/source/components/datatable/stylesheet/namespace.mjs +13 -0
- package/source/components/datatable/stylesheet/pagination.mjs +33 -0
- package/source/components/datatable/stylesheet/select-filter.mjs +33 -0
- package/source/components/datatable/util.mjs +60 -0
- package/source/components/form/action-button.mjs +262 -0
- package/source/components/form/api-button.mjs +515 -0
- package/source/components/form/button-bar.mjs +739 -0
- package/source/components/form/button.mjs +350 -0
- package/source/components/form/confirm-button.mjs +330 -0
- package/source/components/form/constants.mjs +111 -0
- package/source/components/form/context-help.mjs +123 -0
- package/source/components/form/events.mjs +84 -0
- package/source/components/form/form.mjs +601 -0
- package/source/components/form/message-state-button.mjs +396 -0
- package/source/components/form/namespace.mjs +13 -0
- package/source/components/form/popper-button.mjs +435 -0
- package/source/components/form/popper.mjs +487 -0
- package/source/components/form/reload.mjs +360 -0
- package/source/components/form/select.mjs +2314 -0
- package/source/components/form/shadow-reload.mjs +137 -0
- package/source/components/form/state-button.mjs +182 -0
- package/source/components/form/style/action-button.pcss +41 -0
- package/source/components/form/style/api-button.pcss +0 -0
- package/source/components/form/style/button-bar.pcss +51 -0
- package/source/components/form/style/button.pcss +8 -0
- package/source/components/form/style/confirm-button.pcss +17 -0
- package/source/components/form/style/context-help.pcss +16 -0
- package/source/components/form/style/form.pcss +10 -0
- package/source/components/form/style/message-state-button.pcss +10 -0
- package/source/components/form/style/popper-button.pcss +16 -0
- package/source/components/form/style/popper.pcss +8 -0
- package/source/components/form/style/select.pcss +265 -0
- package/source/components/form/style/state-button.pcss +116 -0
- package/source/components/form/style/tabs.pcss +170 -0
- package/source/components/form/style/tree-select.pcss +81 -0
- package/source/components/form/stylesheet/action-button.mjs +33 -0
- package/source/components/form/stylesheet/api-button.mjs +33 -0
- package/source/components/form/stylesheet/button-bar.mjs +33 -0
- package/source/components/form/stylesheet/button.mjs +33 -0
- package/source/components/form/stylesheet/confirm-button.mjs +33 -0
- package/source/components/form/stylesheet/context-help.mjs +33 -0
- package/source/components/form/stylesheet/form.mjs +33 -0
- package/source/components/form/stylesheet/message-state-button.mjs +33 -0
- package/source/components/form/stylesheet/namespace.mjs +13 -0
- package/source/components/form/stylesheet/popper-button.mjs +33 -0
- package/source/components/form/stylesheet/popper.mjs +33 -0
- package/source/components/form/stylesheet/select.mjs +33 -0
- package/source/components/form/stylesheet/state-button.mjs +33 -0
- package/source/components/form/stylesheet/tabs.mjs +33 -0
- package/source/components/form/stylesheet/tree-select.mjs +33 -0
- package/source/components/form/tabs.mjs +1011 -0
- package/source/components/form/template.mjs +373 -0
- package/source/components/form/tree-select.mjs +527 -0
- package/source/components/form/types/namespace.mjs +13 -0
- package/source/components/form/types/state.mjs +93 -0
- package/source/components/form/util/fetch.mjs +133 -0
- package/source/components/form/util/floating-ui.mjs +245 -0
- package/source/components/form/util/namespace.mjs +13 -0
- package/source/components/form/util/popper.mjs +49 -0
- package/source/components/host/call-button.mjs +236 -0
- package/source/components/host/collapse.mjs +526 -0
- package/source/components/host/config-manager.mjs +304 -0
- package/source/components/host/constants.mjs +18 -0
- package/source/components/host/details.mjs +268 -0
- package/source/components/host/events.mjs +131 -0
- package/source/components/host/host.mjs +420 -0
- package/source/components/host/namespace.mjs +13 -0
- package/source/components/host/overlay.mjs +339 -0
- package/source/components/host/style/call-button.pcss +36 -0
- package/source/components/host/style/collapse.pcss +67 -0
- package/source/components/host/style/config-manager.pcss +5 -0
- package/source/components/host/style/details.pcss +68 -0
- package/source/components/host/style/host.pcss +43 -0
- package/source/components/host/style/overlay.pcss +73 -0
- package/source/components/host/style/toggle-button.pcss +36 -0
- package/source/components/host/style/viewer.pcss +13 -0
- package/source/components/host/stylesheet/call-button.mjs +33 -0
- package/source/components/host/stylesheet/collapse.mjs +33 -0
- package/source/components/host/stylesheet/config-manager.mjs +33 -0
- package/source/components/host/stylesheet/details.mjs +33 -0
- package/source/components/host/stylesheet/host.mjs +33 -0
- package/source/components/host/stylesheet/namespace.mjs +13 -0
- package/source/components/host/stylesheet/overlay.mjs +33 -0
- package/source/components/host/stylesheet/toggle-button.mjs +33 -0
- package/source/components/host/stylesheet/viewer.mjs +33 -0
- package/source/components/host/toggle-button.mjs +88 -0
- package/source/components/host/util.mjs +23 -0
- package/source/components/host/viewer.mjs +309 -0
- package/source/components/namespace.mjs +14 -0
- package/source/components/notify/constants.mjs +15 -0
- package/source/components/notify/events.mjs +15 -0
- package/source/components/notify/message.mjs +374 -0
- package/source/components/notify/namespace.mjs +15 -0
- package/source/components/notify/notify.mjs +236 -0
- package/source/components/notify/style/message.pcss +57 -0
- package/source/components/notify/style/notify.pcss +118 -0
- package/source/components/notify/stylesheet/message.mjs +33 -0
- package/source/components/notify/stylesheet/namespace.mjs +15 -0
- package/source/components/notify/stylesheet/notify.mjs +33 -0
- package/source/components/state/log/entry.mjs +126 -0
- package/source/components/state/log/namespace.mjs +13 -0
- package/source/components/state/log.mjs +275 -0
- package/source/components/state/namespace.mjs +13 -0
- package/source/components/state/state.mjs +131 -0
- package/source/components/state/style/log.pcss +111 -0
- package/source/components/state/style/state.pcss +113 -0
- package/source/components/state/stylesheet/log.mjs +33 -0
- package/source/components/state/stylesheet/state.mjs +33 -0
- package/source/components/style/badge.pcss +92 -0
- package/source/components/style/border.pcss +77 -0
- package/source/components/style/button.pcss +105 -0
- package/source/components/style/card.pcss +108 -0
- package/source/components/style/color.pcss +257 -0
- package/source/components/style/common.pcss +103 -0
- package/source/components/style/control.pcss +11 -0
- package/source/components/style/data-grid.pcss +43 -0
- package/source/components/style/display.pcss +42 -0
- package/source/components/style/floating-ui.pcss +33 -0
- package/source/components/style/form.pcss +5 -0
- package/source/components/style/host.pcss +15 -0
- package/source/components/style/link.pcss +63 -0
- package/source/components/style/mixin/badge.pcss +18 -0
- package/source/components/style/mixin/button.pcss +54 -0
- package/source/components/style/mixin/form.pcss +247 -0
- package/source/components/style/mixin/hover.pcss +8 -0
- package/source/components/style/mixin/media.pcss +107 -0
- package/source/components/style/mixin/property.pcss +288 -0
- package/source/components/style/mixin/skeleton.pcss +26 -0
- package/source/components/style/mixin/spinner.pcss +24 -0
- package/source/components/style/mixin/typography.pcss +52 -0
- package/source/components/style/normalize.pcss +14 -0
- package/source/components/style/popper.pcss +78 -0
- package/source/components/style/property.pcss +17 -0
- package/source/components/style/ripple.pcss +14 -0
- package/source/components/style/skeleton.pcss +28 -0
- package/source/components/style/space.pcss +47 -0
- package/source/components/style/spinner.pcss +6 -0
- package/source/components/style/table.pcss +46 -0
- package/source/components/style/theme.pcss +119 -0
- package/source/components/style/typography.pcss +131 -0
- package/source/components/stylesheet/badge.mjs +33 -0
- package/source/components/stylesheet/border.mjs +33 -0
- package/source/components/stylesheet/button.mjs +33 -0
- package/source/components/stylesheet/card.mjs +33 -0
- package/source/components/stylesheet/color.mjs +33 -0
- package/source/components/stylesheet/common.mjs +33 -0
- package/source/components/stylesheet/control.mjs +33 -0
- package/source/components/stylesheet/data-grid.mjs +33 -0
- package/source/components/stylesheet/display.mjs +33 -0
- package/source/components/stylesheet/floating-ui.mjs +33 -0
- package/source/components/stylesheet/form.mjs +33 -0
- package/source/components/stylesheet/host.mjs +33 -0
- package/source/components/stylesheet/link.mjs +33 -0
- package/source/components/stylesheet/namespace.mjs +13 -0
- package/source/components/stylesheet/normalize.mjs +33 -0
- package/source/components/stylesheet/popper.mjs +33 -0
- package/source/components/stylesheet/property.mjs +33 -0
- package/source/components/stylesheet/ripple.mjs +33 -0
- package/source/components/stylesheet/skeleton.mjs +33 -0
- package/source/components/stylesheet/space.mjs +33 -0
- package/source/components/stylesheet/spinner.mjs +33 -0
- package/source/components/stylesheet/table.mjs +33 -0
- package/source/components/stylesheet/theme.mjs +33 -0
- package/source/components/stylesheet/tree-menu.mjs +33 -0
- package/source/components/stylesheet/typography.mjs +33 -0
- package/source/components/tree-menu/namespace.mjs +13 -0
- package/source/components/tree-menu/style/tree-menu.pcss +107 -0
- package/source/components/tree-menu/stylesheet/namespace.mjs +13 -0
- package/source/components/tree-menu/stylesheet/tree-menu.mjs +33 -0
- package/source/components/tree-menu/tree-menu.mjs +660 -0
- package/source/constraints/abstract.mjs +17 -24
- package/source/constraints/abstractoperator.mjs +27 -22
- package/source/constraints/andoperator.mjs +20 -17
- package/source/constraints/invalid.mjs +17 -17
- package/source/constraints/isarray.mjs +20 -20
- package/source/constraints/isobject.mjs +20 -20
- package/source/constraints/oroperator.mjs +45 -45
- package/source/constraints/valid.mjs +17 -17
- package/source/data/buildmap.mjs +108 -103
- package/source/data/buildtree.mjs +59 -57
- package/source/data/datasource/dom.mjs +80 -84
- package/source/data/datasource/namespace.mjs +1 -1
- package/source/data/datasource/server/restapi/data-fetch-error.mjs +27 -25
- package/source/data/datasource/server/restapi/writeerror.mjs +34 -32
- package/source/data/datasource/server/restapi.mjs +176 -177
- package/source/data/datasource/server/webconnect.mjs +150 -156
- package/source/data/datasource/server.mjs +58 -59
- package/source/data/datasource/storage/localstorage.mjs +25 -24
- package/source/data/datasource/storage/sessionstorage.mjs +28 -25
- package/source/data/datasource/storage.mjs +74 -73
- package/source/data/datasource.mjs +176 -167
- package/source/data/diff.mjs +98 -97
- package/source/data/extend.mjs +42 -42
- package/source/data/pathfinder.mjs +301 -288
- package/source/data/pipe.mjs +36 -36
- package/source/data/transformer.mjs +742 -726
- package/source/dom/assembler.mjs +44 -44
- package/source/dom/attributes.mjs +142 -122
- package/source/dom/constants.mjs +62 -58
- package/source/dom/customcontrol.mjs +299 -299
- package/source/dom/customelement.mjs +843 -806
- package/source/dom/dimension.mjs +56 -46
- package/source/dom/events.mjs +74 -69
- package/source/dom/focusmanager.mjs +175 -175
- package/source/dom/locale.mjs +28 -28
- package/source/dom/ready.mjs +13 -13
- package/source/dom/resource/data.mjs +117 -111
- package/source/dom/resource/link/stylesheet.mjs +16 -16
- package/source/dom/resource/link.mjs +94 -96
- package/source/dom/resource/script.mjs +72 -74
- package/source/dom/resource.mjs +174 -172
- package/source/dom/resourcemanager.mjs +152 -156
- package/source/dom/slotted.mjs +78 -80
- package/source/dom/template.mjs +126 -112
- package/source/dom/theme.mjs +35 -35
- package/source/dom/updater.mjs +673 -651
- package/source/dom/util/extract-keys.mjs +34 -22
- package/source/dom/util/init-options-from-attributes.mjs +46 -38
- package/source/dom/util/namespace.mjs +13 -0
- package/source/dom/util/set-option-from-attribute.mjs +35 -29
- package/source/dom/util.mjs +112 -81
- package/source/dom/worker/factory.mjs +83 -83
- package/source/i18n/formatter.mjs +75 -73
- package/source/i18n/locale.mjs +146 -144
- package/source/i18n/provider.mjs +70 -64
- package/source/i18n/providers/embed.mjs +136 -127
- package/source/i18n/providers/fetch.mjs +84 -76
- package/source/i18n/translations.mjs +205 -195
- package/source/logging/handler/console.mjs +36 -36
- package/source/logging/handler.mjs +140 -140
- package/source/logging/logentry.mjs +25 -25
- package/source/logging/logger.mjs +177 -175
- package/source/math/random.mjs +63 -59
- package/source/monster.mjs +223 -103
- package/source/net/webconnect/message.mjs +31 -31
- package/source/net/webconnect.mjs +278 -271
- package/source/text/bracketed-key-value-hash.mjs +182 -179
- package/source/text/formatter.mjs +235 -210
- package/source/text/generate-range-comparison-expression.mjs +56 -34
- package/source/text/namespace.mjs +1 -1
- package/source/types/base.mjs +69 -61
- package/source/types/basewithoptions.mjs +46 -46
- package/source/types/binary.mjs +20 -20
- package/source/types/dataurl.mjs +96 -90
- package/source/types/global.mjs +45 -39
- package/source/types/id.mjs +25 -25
- package/source/types/internal.mjs +115 -114
- package/source/types/is.mjs +56 -40
- package/source/types/mediatype.mjs +119 -119
- package/source/types/namespace.mjs +1 -1
- package/source/types/node.mjs +160 -150
- package/source/types/nodelist.mjs +94 -96
- package/source/types/noderecursiveiterator.mjs +50 -50
- package/source/types/observablequeue.mjs +73 -73
- package/source/types/observer.mjs +104 -104
- package/source/types/observerlist.mjs +66 -66
- package/source/types/proxyobserver.mjs +210 -210
- package/source/types/queue.mjs +63 -63
- package/source/types/randomid.mjs +13 -13
- package/source/types/regex.mjs +3 -1
- package/source/types/stack.mjs +64 -64
- package/source/types/tokenlist.mjs +206 -205
- package/source/types/typeof.mjs +12 -10
- package/source/types/uniquequeue.mjs +48 -48
- package/source/types/uuid.mjs +32 -32
- package/source/types/validate.mjs +67 -67
- package/source/types/version.mjs +115 -105
- package/source/util/clone.mjs +103 -91
- package/source/util/comparator.mjs +97 -97
- package/source/util/deadmansswitch.mjs +40 -44
- package/source/util/freeze.mjs +10 -9
- package/source/util/namespace.mjs +1 -1
- package/source/util/processing.mjs +104 -105
- package/source/util/runtime.mjs +56 -44
- package/source/util/trimspaces.mjs +24 -24
- package/test/cases/components/form/button.mjs +122 -0
- package/test/cases/components/form/confirm-button.mjs +127 -0
- package/test/cases/components/form/form.mjs +317 -0
- package/test/cases/components/form/reload.mjs +188 -0
- package/test/cases/components/form/select.mjs +229 -0
- package/test/cases/components/form/state-button.mjs +130 -0
- package/test/cases/components/form/tabs.mjs +98 -0
- package/test/cases/components/form/template.mjs +189 -0
- package/test/cases/components/form/tree-select.mjs +216 -0
- package/test/cases/components/host/details.mjs +68 -0
- package/test/cases/components/host/host.mjs +70 -0
- package/test/cases/components/host/overlay.mjs +60 -0
- package/test/cases/components/host/util.mjs +79 -0
- package/test/cases/components/notify/message.mjs +39 -0
- package/test/cases/components/notify/notify.mjs +89 -0
- package/test/cases/dom/customcontrol.mjs +5 -4
- package/test/cases/math/random.mjs +0 -1
- package/test/cases/monster.mjs +1 -1
- package/test/cases/net/webconnect/message.mjs +0 -1
- package/test/cases/types/node.mjs +1 -1
- package/test/util/chai-dom.mjs +2 -2
- package/test/util/intersection-mock.mjs +69 -0
- package/test/util/jsdom.mjs +41 -25
- package/test/util/localstorage.mjs +1 -0
- package/test/util/resize-observer.mjs +29 -0
- package/test/util/websocket.mjs +4 -1
- package/test/web/import.js +16 -1
- package/test/web/test.html +28 -5
- package/test/web/tests.js +30398 -17879
@@ -0,0 +1,54 @@
|
|
1
|
+
@define-mixin button {
|
2
|
+
|
3
|
+
/**
|
4
|
+
* https://caniuse.com/?search=fill-available
|
5
|
+
* https://lists.w3.org/Archives/Public/www-style/2015Aug/0127.html
|
6
|
+
* https://caniuse.com/mdn-css_properties_width_stretch
|
7
|
+
* autoprefix change this to -webkit-fill-available
|
8
|
+
*/
|
9
|
+
width: stretch;
|
10
|
+
|
11
|
+
font-size: 1rem;
|
12
|
+
font-weight: 400;
|
13
|
+
line-height: 1.5;
|
14
|
+
|
15
|
+
text-align: center;
|
16
|
+
text-decoration: none;
|
17
|
+
|
18
|
+
vertical-align: middle;
|
19
|
+
|
20
|
+
cursor: pointer;
|
21
|
+
|
22
|
+
user-select: none;
|
23
|
+
|
24
|
+
border-width: var(--monster-border-width);
|
25
|
+
border-radius: var(--monster-border-radius);
|
26
|
+
border-style: var(--monster-border-style);
|
27
|
+
box-shadow: var(--monster-box-shadow-1);
|
28
|
+
|
29
|
+
padding: .375rem .75rem;
|
30
|
+
outline: none;
|
31
|
+
|
32
|
+
display: inline-block;
|
33
|
+
|
34
|
+
background-position: center;
|
35
|
+
|
36
|
+
position: relative;
|
37
|
+
overflow: hidden;
|
38
|
+
|
39
|
+
font-family: var(--monster-font-family);
|
40
|
+
|
41
|
+
box-shadow: var(--monster-box-shadow-1);
|
42
|
+
|
43
|
+
display: flex;
|
44
|
+
align-items: center;
|
45
|
+
justify-content: center;
|
46
|
+
gap: .4rem;
|
47
|
+
|
48
|
+
}
|
49
|
+
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
|
54
|
+
|
@@ -0,0 +1,247 @@
|
|
1
|
+
@import "hover.pcss";
|
2
|
+
|
3
|
+
@define-mixin form {
|
4
|
+
|
5
|
+
box-sizing: border-box;
|
6
|
+
display: flex;
|
7
|
+
flex-wrap: nowrap;
|
8
|
+
position: relative;
|
9
|
+
flex-direction: column;
|
10
|
+
align-content: flex-start;
|
11
|
+
align-items: flex-start;
|
12
|
+
accent-color: var(--monster-color-secondary-2);
|
13
|
+
|
14
|
+
& label {
|
15
|
+
color: var(--monster-color-primary-1);
|
16
|
+
background-color: var(--monster-bg-color-primary-1);
|
17
|
+
display: grid;
|
18
|
+
}
|
19
|
+
|
20
|
+
& label:has(input[type="radio"]) {
|
21
|
+
display: flex;
|
22
|
+
flex-direction: row;
|
23
|
+
flex-wrap: nowrap;
|
24
|
+
justify-content: flex-start;
|
25
|
+
|
26
|
+
& input {
|
27
|
+
margin-right: 0.4rem;
|
28
|
+
margin-left: 0.4rem;
|
29
|
+
}
|
30
|
+
|
31
|
+
}
|
32
|
+
|
33
|
+
& label:has(input[type="radio"]) ~ label:has(input[type="radio"]) {
|
34
|
+
margin-top: 0.2rem;
|
35
|
+
}
|
36
|
+
|
37
|
+
& label:has(input[type="checkbox"]) {
|
38
|
+
display: flex;
|
39
|
+
flex-direction: row;
|
40
|
+
flex-wrap: nowrap;
|
41
|
+
justify-content: flex-start;
|
42
|
+
|
43
|
+
& input {
|
44
|
+
margin-right: 0.4rem;
|
45
|
+
margin-left: 0.4rem;
|
46
|
+
}
|
47
|
+
|
48
|
+
}
|
49
|
+
|
50
|
+
& label:has(input[type="checkbox"]) ~ label:has(input[type="checkbox"]) {
|
51
|
+
margin-top: 0.2rem;
|
52
|
+
}
|
53
|
+
|
54
|
+
& label ~ label {
|
55
|
+
margin-top: 1rem;
|
56
|
+
}
|
57
|
+
|
58
|
+
& label ~ fieldset {
|
59
|
+
margin-top: 1rem;
|
60
|
+
}
|
61
|
+
|
62
|
+
& button,
|
63
|
+
& input,
|
64
|
+
& select,
|
65
|
+
& textarea {
|
66
|
+
font-family: inherit;
|
67
|
+
font-size: 100%;
|
68
|
+
padding: 0.4rem 0.6rem;
|
69
|
+
margin: 0;
|
70
|
+
outline: none;
|
71
|
+
box-sizing: border-box;
|
72
|
+
accent-color: var(--monster-color-secondary-2);
|
73
|
+
|
74
|
+
color: var(--monster-color-primary-1);
|
75
|
+
background-color: var(--monster-bg-color-primary-1);
|
76
|
+
|
77
|
+
}
|
78
|
+
|
79
|
+
|
80
|
+
& button {
|
81
|
+
color: var(--monster-color-tertiary-1);
|
82
|
+
background-color: var(--monster-bg-color-tertiary-1);
|
83
|
+
|
84
|
+
/** monster-border-primary-1 */
|
85
|
+
border-width: var(--monster-border-width);
|
86
|
+
border-radius: var(--monster-border-radius);
|
87
|
+
border-style: var(--monster-border-style);
|
88
|
+
border-shadow: var(--monster-box-shadow-1);
|
89
|
+
border-color: var(--monster-bg-color-primary-3);
|
90
|
+
}
|
91
|
+
|
92
|
+
& option:checked {
|
93
|
+
background-color: var(--monster-bg-color-primary-3);
|
94
|
+
color: var(--monster-color-primary-3);
|
95
|
+
}
|
96
|
+
|
97
|
+
& option:focus {
|
98
|
+
background-color: var(--monster-bg-color-primary-3);
|
99
|
+
color: var(--monster-color-primary-3);
|
100
|
+
}
|
101
|
+
|
102
|
+
& option:hover {
|
103
|
+
background-color: var(--monster-bg-color-primary-3);
|
104
|
+
color: var(--monster-color-primary-3);
|
105
|
+
}
|
106
|
+
|
107
|
+
& input,
|
108
|
+
& select,
|
109
|
+
& textarea {
|
110
|
+
border: 0;
|
111
|
+
border-bottom-width: thin;
|
112
|
+
border-bottom-radius: var(--monster-border-radius);
|
113
|
+
border-bottom-style: var(--monster-border-style);
|
114
|
+
border-bottom-shadow: var(--monster-box-shadow-1);
|
115
|
+
border-bottom-color: var(--monster-bg-color-primary-1);
|
116
|
+
}
|
117
|
+
|
118
|
+
|
119
|
+
& input,
|
120
|
+
& select,
|
121
|
+
& textarea {
|
122
|
+
border-width: thin;
|
123
|
+
border-radius: var(--monster-border-radius);
|
124
|
+
border-style: var(--monster-border-style);
|
125
|
+
border-shadow: var(--monster-box-shadow-1);
|
126
|
+
border-color: var(--monster-bg-color-primary-2);
|
127
|
+
}
|
128
|
+
|
129
|
+
|
130
|
+
& button,
|
131
|
+
& input:not([type="radio"]):not([type="checkbox"]),
|
132
|
+
& select,
|
133
|
+
& textarea {
|
134
|
+
width: 100%;
|
135
|
+
}
|
136
|
+
|
137
|
+
& label {
|
138
|
+
width: 100%;
|
139
|
+
|
140
|
+
& input:not([type="radio"]):not([type="checkbox"]),
|
141
|
+
& select,
|
142
|
+
& textarea {
|
143
|
+
width: 100%;
|
144
|
+
margin-top: 0.2rem;
|
145
|
+
}
|
146
|
+
|
147
|
+
}
|
148
|
+
|
149
|
+
& label + input:not([type="radio"]):not([type="checkbox"]),
|
150
|
+
& label + select,
|
151
|
+
& label + textarea {
|
152
|
+
width: 100%;
|
153
|
+
margin-top: 0.2rem;
|
154
|
+
}
|
155
|
+
|
156
|
+
|
157
|
+
& fieldset {
|
158
|
+
margin: 0;
|
159
|
+
position: relative;
|
160
|
+
padding: 2.5rem 2rem 2rem;
|
161
|
+
border: 2px solid var(--monster-bg-color-primary-3);
|
162
|
+
|
163
|
+
background-color: var(--monster-bg-color-primary-1);
|
164
|
+
color: var(--monster-color-primary-1);
|
165
|
+
|
166
|
+
box-sizing: border-box;
|
167
|
+
width: 100%;
|
168
|
+
outline: none;
|
169
|
+
|
170
|
+
& legend {
|
171
|
+
position: absolute;
|
172
|
+
top: 0;
|
173
|
+
right: 0px;
|
174
|
+
padding: 0.1rem 2rem 0.2rem 0.5rem;
|
175
|
+
max-width: 95%;
|
176
|
+
text-align: right;
|
177
|
+
text-transform: uppercase;
|
178
|
+
text-overflow: ellipsis;
|
179
|
+
font-size: 0.8rem;
|
180
|
+
overflow: hidden;
|
181
|
+
white-space: nowrap;
|
182
|
+
}
|
183
|
+
|
184
|
+
& label {
|
185
|
+
}
|
186
|
+
|
187
|
+
}
|
188
|
+
|
189
|
+
& fieldset ~ fieldset {
|
190
|
+
margin-top: 1rem;
|
191
|
+
}
|
192
|
+
|
193
|
+
& button {
|
194
|
+
margin: 0.2rem 0;
|
195
|
+
}
|
196
|
+
|
197
|
+
& button:first-of-type {
|
198
|
+
margin-top: 1rem;
|
199
|
+
}
|
200
|
+
|
201
|
+
& button:last-of-type {
|
202
|
+
margin-bottom: 1rem;
|
203
|
+
}
|
204
|
+
|
205
|
+
& input:focus-visible {
|
206
|
+
outline: none;
|
207
|
+
}
|
208
|
+
|
209
|
+
|
210
|
+
& button:focus,
|
211
|
+
& input:focus,
|
212
|
+
& select:focus,
|
213
|
+
& textarea:focus {
|
214
|
+
outline: 1px dashed var(--monster-color-selection-4);
|
215
|
+
outline-offset: 2px;
|
216
|
+
}
|
217
|
+
|
218
|
+
|
219
|
+
@media (prefers-color-scheme: light) {
|
220
|
+
& button,
|
221
|
+
& input,
|
222
|
+
& select,
|
223
|
+
& textarea {
|
224
|
+
background-color: var(--monster-bg-color-primary-2);
|
225
|
+
color: var(--monster-color-primary-2);
|
226
|
+
border-color: var(--monster-bg-color-primary-3);
|
227
|
+
}
|
228
|
+
|
229
|
+
& button:focus,
|
230
|
+
& input:focus,
|
231
|
+
& select:focus,
|
232
|
+
& textarea:focus {
|
233
|
+
outline: 1px dashed var(--monster-color-selection-3);
|
234
|
+
outline-offset: 2px;
|
235
|
+
}
|
236
|
+
|
237
|
+
}
|
238
|
+
|
239
|
+
& button:hover,
|
240
|
+
& input:hover:not([type="radio"]):not([type="checkbox"]):not([type="range"]),
|
241
|
+
& select:hover,
|
242
|
+
& textarea:hover {
|
243
|
+
@mixin box-hover;
|
244
|
+
}
|
245
|
+
|
246
|
+
|
247
|
+
}
|
@@ -0,0 +1,107 @@
|
|
1
|
+
@define-mixin viewport0 {
|
2
|
+
@media (max-width: 480px) {
|
3
|
+
@mixin-content;
|
4
|
+
}
|
5
|
+
}
|
6
|
+
|
7
|
+
@define-mixin viewport-4 {
|
8
|
+
@media (max-width: 480px) {
|
9
|
+
@mixin-content;
|
10
|
+
}
|
11
|
+
}
|
12
|
+
|
13
|
+
@define-mixin viewport-7 {
|
14
|
+
@media (max-width: 768px) {
|
15
|
+
@mixin-content;
|
16
|
+
}
|
17
|
+
}
|
18
|
+
|
19
|
+
@define-mixin viewport-9 {
|
20
|
+
@media (max-width: 992px) {
|
21
|
+
@mixin-content;
|
22
|
+
}
|
23
|
+
}
|
24
|
+
|
25
|
+
@define-mixin viewport-12 {
|
26
|
+
@media (max-width: 1200px) {
|
27
|
+
@mixin-content;
|
28
|
+
}
|
29
|
+
}
|
30
|
+
|
31
|
+
@define-mixin viewport4 {
|
32
|
+
@media (min-width: 480px) {
|
33
|
+
@mixin-content;
|
34
|
+
}
|
35
|
+
}
|
36
|
+
|
37
|
+
@define-mixin viewport4-7 {
|
38
|
+
@media (min-width: 480px) and (max-width: 768px) {
|
39
|
+
@mixin-content;
|
40
|
+
}
|
41
|
+
}
|
42
|
+
|
43
|
+
@define-mixin viewport7 {
|
44
|
+
@media (min-width: 768px) {
|
45
|
+
@mixin-content;
|
46
|
+
}
|
47
|
+
}
|
48
|
+
|
49
|
+
@define-mixin viewport7-9 {
|
50
|
+
@media (min-width: 768px) and (max-width: 992px) {
|
51
|
+
@mixin-content;
|
52
|
+
}
|
53
|
+
}
|
54
|
+
|
55
|
+
@define-mixin viewport9 {
|
56
|
+
@media (min-width: 992px) {
|
57
|
+
@mixin-content;
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
@define-mixin viewport9-12 {
|
62
|
+
@media (min-width: 992px) and (max-width: 1200px) {
|
63
|
+
@mixin-content;
|
64
|
+
}
|
65
|
+
}
|
66
|
+
|
67
|
+
@define-mixin viewport12 {
|
68
|
+
@media (min-width: 1200px) {
|
69
|
+
@mixin-content;
|
70
|
+
}
|
71
|
+
}
|
72
|
+
|
73
|
+
|
74
|
+
/**
|
75
|
+
Mobile, portrait ****
|
76
|
+
320px iPhone SE
|
77
|
+
375px iPhone 6, 7, 8, X
|
78
|
+
414px iPhone 8 Plus
|
79
|
+
|
80
|
+
Mobile, landscape ****
|
81
|
+
568px iPhone SE
|
82
|
+
667px iPhone 6, 7, 8
|
83
|
+
736px iPhone 8 Plus
|
84
|
+
812px iPhone X
|
85
|
+
|
86
|
+
Tablet, portrait ****
|
87
|
+
768px iPad Air, iPad Mini, iPad Pro 9"
|
88
|
+
834px iPad Pro 10"
|
89
|
+
|
90
|
+
Tablet, landscape ****
|
91
|
+
1024px iPad Air, iPad Mini, iPad Pro 9"
|
92
|
+
1024px iPad Pro 12" (portrait)
|
93
|
+
1112px iPad Pro 10"
|
94
|
+
|
95
|
+
Laptop displays
|
96
|
+
1366px HD laptops (768p)
|
97
|
+
1366px iPad Pro 12" (landscape)
|
98
|
+
1440px 13" MacBook Pro (2x scaling)
|
99
|
+
|
100
|
+
Desktop displays
|
101
|
+
1680px 13" MacBook Pro (1.5x scaling)
|
102
|
+
1920px 1080p displays
|
103
|
+
|
104
|
+
- https://polypane.app/blog/the-complete-guide-to-css-media-queries/
|
105
|
+
- https://css-tricks.com/a-complete-guide-to-custom-properties/
|
106
|
+
*/
|
107
|
+
|
@@ -0,0 +1,288 @@
|
|
1
|
+
@define-mixin defaultPoperProperty {
|
2
|
+
--monster-popper-witharrrow-distance: -4px;
|
3
|
+
}
|
4
|
+
|
5
|
+
@define-mixin defaultTextProperty {
|
6
|
+
--monster-text-shadow: none;
|
7
|
+
}
|
8
|
+
|
9
|
+
@define-mixin defaultSpaceProperty {
|
10
|
+
--monster-space-0: 0;
|
11
|
+
--monster-space-1: 2px;
|
12
|
+
--monster-space-2: 4px;
|
13
|
+
--monster-space-3: 6px;
|
14
|
+
--monster-space-4: 10px;
|
15
|
+
--monster-space-5: 16px;
|
16
|
+
--monster-space-6: 26px;
|
17
|
+
--monster-space-7: 42px;
|
18
|
+
}
|
19
|
+
|
20
|
+
@define-mixin defaultBreakPointProperty {
|
21
|
+
--monster-breakpoint-0: 480px;
|
22
|
+
--monster-breakpoint-4: 480px;
|
23
|
+
--monster-breakpoint-7: 768px;
|
24
|
+
--monster-breakpoint-9: 992px;
|
25
|
+
--monster-breakpoint-12: 1200px;
|
26
|
+
}
|
27
|
+
|
28
|
+
@define-mixin defaultZIndexProperty {
|
29
|
+
--monster-z-index-default: 0;
|
30
|
+
--monster-z-index-outline: 10;
|
31
|
+
--monster-z-index-dropdown: 200;
|
32
|
+
--monster-z-index-dropdown-overlay: 210;
|
33
|
+
--monster-z-index-sticky: 300;
|
34
|
+
--monster-z-index-sticky-overlay: 310;
|
35
|
+
--monster-z-index-fixed: 400;
|
36
|
+
--monster-z-index-fixed-overlay: 410;
|
37
|
+
--monster-z-index-modal-backdrop: 500;
|
38
|
+
--monster-z-index-modal-backdrop-overlay: 510;
|
39
|
+
--monster-z-index-offcanvas: 600;
|
40
|
+
--monster-z-index-offcanvas-overlay: 610;
|
41
|
+
--monster-z-index-modal: 700;
|
42
|
+
--monster-z-index-modal-overlay: 710;
|
43
|
+
--monster-z-index-popover: 800;
|
44
|
+
--monster-z-index-popover-overlay: 810;
|
45
|
+
--monster-z-index-tooltip: 800;
|
46
|
+
--monster-z-index-tooltip-overlay: 910;
|
47
|
+
}
|
48
|
+
|
49
|
+
@define-mixin defaultShadowProperty {
|
50
|
+
--monster-box-shadow-1: none;
|
51
|
+
--monster-box-shadow-2: -1px 1px 10px 1px rgba(194, 194, 194, 0.61);
|
52
|
+
}
|
53
|
+
|
54
|
+
@define-mixin defaultBorderProperty {
|
55
|
+
--monster-border-style: solid;
|
56
|
+
--monster-border-width: 2px;
|
57
|
+
--monster-border-radius: 0;
|
58
|
+
}
|
59
|
+
|
60
|
+
@define-mixin defaultFontProperty {
|
61
|
+
/** Fonts / Text / Typography **/
|
62
|
+
--monster-font-family: -apple-system,
|
63
|
+
BlinkMacSystemFont,
|
64
|
+
"Quicksand",
|
65
|
+
"Segoe UI",
|
66
|
+
"Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
|
67
|
+
"Helvetica Neue", Arial, sans-serif,
|
68
|
+
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
69
|
+
|
70
|
+
|
71
|
+
}
|
72
|
+
|
73
|
+
@define-mixin defaultColorProperty {
|
74
|
+
|
75
|
+
/** PRIMARY */
|
76
|
+
--monster-color-primary-1: var(--monster-color-gray-6);
|
77
|
+
--monster-color-primary-2: var(--monster-color-gray-6);
|
78
|
+
--monster-color-primary-3: var(--monster-color-gray-1);
|
79
|
+
--monster-color-primary-4: var(--monster-color-gray-1);
|
80
|
+
|
81
|
+
--monster-bg-color-primary-1: var(--monster-color-gray-1);
|
82
|
+
--monster-bg-color-primary-2: var(--monster-color-gray-2);
|
83
|
+
--monster-bg-color-primary-3: var(--monster-color-gray-3);
|
84
|
+
--monster-bg-color-primary-4: var(--monster-color-gray-6);
|
85
|
+
|
86
|
+
@media (prefers-color-scheme: dark) {
|
87
|
+
--monster-color-primary-1: var(--monster-color-gray-1);
|
88
|
+
--monster-color-primary-2: var(--monster-color-gray-1);
|
89
|
+
--monster-color-primary-3: var(--monster-color-gray-6);
|
90
|
+
--monster-color-primary-4: var(--monster-color-gray-6);
|
91
|
+
|
92
|
+
--monster-bg-color-primary-1: var(--monster-color-gray-6);
|
93
|
+
--monster-bg-color-primary-2: var(--monster-color-gray-3);
|
94
|
+
--monster-bg-color-primary-3: var(--monster-color-gray-2);
|
95
|
+
--monster-bg-color-primary-4: var(--monster-color-gray-1);
|
96
|
+
}
|
97
|
+
|
98
|
+
/** SECONDARY */
|
99
|
+
--monster-color-secondary-1: var(--monster-color-red-4);
|
100
|
+
--monster-color-secondary-2: var(--monster-color-red-4);
|
101
|
+
--monster-color-secondary-3: var(--monster-color-red-1);
|
102
|
+
--monster-color-secondary-4: var(--monster-color-red-1);
|
103
|
+
|
104
|
+
--monster-bg-color-secondary-1: var(--monster-color-gray-1);
|
105
|
+
--monster-bg-color-secondary-2: var(--monster-color-red-2);
|
106
|
+
--monster-bg-color-secondary-3: var(--monster-color-red-3);
|
107
|
+
--monster-bg-color-secondary-4: var(--monster-color-red-6);
|
108
|
+
|
109
|
+
@media (prefers-color-scheme: dark) {
|
110
|
+
--monster-color-secondary-1: var(--monster-color-red-1);
|
111
|
+
--monster-color-secondary-2: var(--monster-color-red-1);
|
112
|
+
--monster-color-secondary-3: var(--monster-color-red-6);
|
113
|
+
--monster-color-secondary-4: var(--monster-color-red-4);
|
114
|
+
|
115
|
+
--monster-bg-color-secondary-1: var(--monster-color-gray-6);
|
116
|
+
--monster-bg-color-secondary-2: var(--monster-color-red-3);
|
117
|
+
--monster-bg-color-secondary-3: var(--monster-color-red-2);
|
118
|
+
--monster-bg-color-secondary-4: var(--monster-color-red-1);
|
119
|
+
}
|
120
|
+
|
121
|
+
/** TERTIARY */
|
122
|
+
--monster-color-tertiary-1: var(--monster-color-magenta-4);
|
123
|
+
--monster-color-tertiary-2: var(--monster-color-magenta-4);
|
124
|
+
--monster-color-tertiary-3: var(--monster-color-magenta-6);
|
125
|
+
--monster-color-tertiary-4: var(--monster-color-magenta-1);
|
126
|
+
|
127
|
+
--monster-bg-color-tertiary-1: var(--monster-color-gray-1);
|
128
|
+
--monster-bg-color-tertiary-2: var(--monster-color-magenta-1);
|
129
|
+
--monster-bg-color-tertiary-3: var(--monster-color-magenta-2);
|
130
|
+
--monster-bg-color-tertiary-4: var(--monster-color-magenta-6);
|
131
|
+
|
132
|
+
@media (prefers-color-scheme: dark) {
|
133
|
+
--monster-color-tertiary-1: var(--monster-color-magenta-1);
|
134
|
+
--monster-color-tertiary-2: var(--monster-color-magenta-6);
|
135
|
+
--monster-color-tertiary-3: var(--monster-color-magenta-4);
|
136
|
+
--monster-color-tertiary-4: var(--monster-color-magenta-4);
|
137
|
+
|
138
|
+
--monster-bg-color-tertiary-1: var(--monster-color-gray-6);
|
139
|
+
--monster-bg-color-tertiary-2: var(--monster-color-magenta-2);
|
140
|
+
--monster-bg-color-tertiary-3: var(--monster-color-magenta-1);
|
141
|
+
--monster-bg-color-tertiary-4: var(--monster-color-magenta-1);
|
142
|
+
}
|
143
|
+
|
144
|
+
/** DESTRUCTIVE **/
|
145
|
+
--monster-color-destructive-1: var(--monster-color-red-1);
|
146
|
+
--monster-color-destructive-2: var(--monster-color-red-4);
|
147
|
+
--monster-color-destructive-3: var(--monster-color-red-6);
|
148
|
+
--monster-color-destructive-4: var(--monster-color-red-1);
|
149
|
+
|
150
|
+
--monster-bg-color-destructive-1: var(--monster-color-red-4);
|
151
|
+
--monster-bg-color-destructive-2: var(--monster-color-gray-1);
|
152
|
+
--monster-bg-color-destructive-3: var(--monster-color-red-2);
|
153
|
+
--monster-bg-color-destructive-4: var(--monster-color-red-5);
|
154
|
+
|
155
|
+
@media (prefers-color-scheme: dark) {
|
156
|
+
--monster-color-destructive-1: var(--monster-color-red-1);
|
157
|
+
--monster-color-destructive-2: var(--monster-color-red-3);
|
158
|
+
--monster-color-destructive-3: var(--monster-color-red-4);
|
159
|
+
--monster-color-destructive-4: var(--monster-color-red-1);
|
160
|
+
|
161
|
+
--monster-bg-color-destructive-1: var(--monster-color-red-5);
|
162
|
+
--monster-bg-color-destructive-2: var(--monster-color-gray-6);
|
163
|
+
--monster-bg-color-destructive-3: var(--monster-color-red-1);
|
164
|
+
--monster-bg-color-destructive-4: var(--monster-color-red-4);
|
165
|
+
}
|
166
|
+
|
167
|
+
/** SUCCESS **/
|
168
|
+
--monster-color-success-1: var(--monster-color-green-1);
|
169
|
+
--monster-color-success-2: var(--monster-color-green-4);
|
170
|
+
--monster-color-success-3: var(--monster-color-green-6);
|
171
|
+
--monster-color-success-4: var(--monster-color-green-1);
|
172
|
+
|
173
|
+
--monster-bg-color-success-1: var(--monster-color-green-3);
|
174
|
+
--monster-bg-color-success-2: var(--monster-color-gray-1);
|
175
|
+
--monster-bg-color-success-3: var(--monster-color-green-2);
|
176
|
+
--monster-bg-color-success-4: var(--monster-color-green-5);
|
177
|
+
|
178
|
+
@media (prefers-color-scheme: dark) {
|
179
|
+
|
180
|
+
--monster-color-success-1: var(--monster-color-green-1);
|
181
|
+
--monster-color-success-2: var(--monster-color-green-2);
|
182
|
+
--monster-color-success-3: var(--monster-color-green-4);
|
183
|
+
--monster-color-success-4: var(--monster-color-green-1);
|
184
|
+
|
185
|
+
--monster-bg-color-success-1: var(--monster-color-green-5);
|
186
|
+
--monster-bg-color-success-2: var(--monster-color-gray-6);
|
187
|
+
--monster-bg-color-success-3: var(--monster-color-green-1);
|
188
|
+
--monster-bg-color-success-4: var(--monster-color-green-3);
|
189
|
+
}
|
190
|
+
|
191
|
+
/** WARNING **/
|
192
|
+
--monster-color-warning-1: var(--monster-color-orange-1);
|
193
|
+
--monster-color-warning-2: var(--monster-color-orange-4);
|
194
|
+
--monster-color-warning-3: var(--monster-color-orange-6);
|
195
|
+
--monster-color-warning-4: var(--monster-color-orange-1);
|
196
|
+
|
197
|
+
--monster-bg-color-warning-1: var(--monster-color-orange-3);
|
198
|
+
--monster-bg-color-warning-2: var(--monster-color-gray-1);
|
199
|
+
--monster-bg-color-warning-3: var(--monster-color-orange-2);
|
200
|
+
--monster-bg-color-warning-4: var(--monster-color-orange-5);
|
201
|
+
|
202
|
+
@media (prefers-color-scheme: dark) {
|
203
|
+
--monster-color-warning-1: var(--monster-color-orange-1);
|
204
|
+
--monster-color-warning-2: var(--monster-color-orange-3);
|
205
|
+
--monster-color-warning-3: var(--monster-color-orange-4);
|
206
|
+
--monster-color-warning-4: var(--monster-color-orange-1);
|
207
|
+
|
208
|
+
--monster-bg-color-warning-1: var(--monster-color-orange-5);
|
209
|
+
--monster-bg-color-warning-2: var(--monster-color-gray-6);
|
210
|
+
--monster-bg-color-warning-3: var(--monster-color-orange-1);
|
211
|
+
--monster-bg-color-warning-4: var(--monster-color-orange-3);
|
212
|
+
}
|
213
|
+
|
214
|
+
/** error **/
|
215
|
+
--monster-color-error-1: var(--monster-color-red-1);
|
216
|
+
--monster-color-error-2: var(--monster-color-red-4);
|
217
|
+
--monster-color-error-3: var(--monster-color-red-6);
|
218
|
+
--monster-color-error-4: var(--monster-color-red-1);
|
219
|
+
|
220
|
+
--monster-bg-color-error-1: var(--monster-color-red-4);
|
221
|
+
--monster-bg-color-error-2: var(--monster-color-gray-1);
|
222
|
+
--monster-bg-color-error-3: var(--monster-color-red-2);
|
223
|
+
--monster-bg-color-error-4: var(--monster-color-red-5);
|
224
|
+
|
225
|
+
@media (prefers-color-scheme: dark) {
|
226
|
+
--monster-color-error-1: var(--monster-color-red-1);
|
227
|
+
--monster-color-error-2: var(--monster-color-red-3);
|
228
|
+
--monster-color-error-3: var(--monster-color-red-4);
|
229
|
+
--monster-color-error-4: var(--monster-color-red-1);
|
230
|
+
|
231
|
+
--monster-bg-color-error-1: var(--monster-color-red-5);
|
232
|
+
--monster-bg-color-error-2: var(--monster-color-gray-6);
|
233
|
+
--monster-bg-color-error-3: var(--monster-color-red-1);
|
234
|
+
--monster-bg-color-error-4: var(--monster-color-red-4);
|
235
|
+
}
|
236
|
+
|
237
|
+
/** selection **/
|
238
|
+
--monster-color-selection-1: var(--monster-color-gray-6);
|
239
|
+
--monster-color-selection-2: var(--monster-color-gray-6);
|
240
|
+
--monster-color-selection-3: var(--monster-color-gray-6);
|
241
|
+
--monster-color-selection-4: var(--monster-color-gray-1);
|
242
|
+
|
243
|
+
--monster-bg-color-selection-1: var(--monster-color-yellow-2);
|
244
|
+
--monster-bg-color-selection-2: var(--monster-color-yellow-1);
|
245
|
+
--monster-bg-color-selection-3: var(--monster-color-yellow-2);
|
246
|
+
--monster-bg-color-selection-4: var(--monster-color-yellow-6);
|
247
|
+
|
248
|
+
@media (prefers-color-scheme: dark) {
|
249
|
+
--monster-color-selection-1: var(--monster-color-gray-6);
|
250
|
+
--monster-color-selection-2: var(--monster-color-gray-6);
|
251
|
+
--monster-color-selection-3: var(--monster-color-gray-6);
|
252
|
+
--monster-color-selection-4: var(--monster-color-gray-1);
|
253
|
+
|
254
|
+
--monster-bg-color-selection-1: var(--monster-color-yellow-2);
|
255
|
+
--monster-bg-color-selection-2: var(--monster-color-yellow-1);
|
256
|
+
--monster-bg-color-selection-3: var(--monster-color-yellow-2);
|
257
|
+
--monster-bg-color-selection-4: var(--monster-color-yellow-6);
|
258
|
+
}
|
259
|
+
|
260
|
+
|
261
|
+
/** PRIMARY / DISABLED */
|
262
|
+
--monster-color-primary-disabled-1: var(--monster-color-gray-3);
|
263
|
+
--monster-color-primary-disabled-2: var(--monster-color-gray-1);
|
264
|
+
--monster-color-primary-disabled-3: var(--monster-color-gray-4);
|
265
|
+
--monster-color-primary-disabled-4: var(--monster-color-gray-4);
|
266
|
+
|
267
|
+
--monster-bg-color-primary-disabled-1: var(--monster-color-gray-1);
|
268
|
+
--monster-bg-color-primary-disabled-2: var(--monster-color-gray-2);
|
269
|
+
--monster-bg-color-primary-disabled-3: var(--monster-color-gray-3);
|
270
|
+
--monster-bg-color-primary-disabled-4: var(--monster-color-gray-6);
|
271
|
+
|
272
|
+
@media (prefers-color-scheme: dark) {
|
273
|
+
--monster-color-primary-disabled-1: var(--monster-color-gray-4);
|
274
|
+
--monster-color-primary-disabled-2: var(--monster-color-gray-4);
|
275
|
+
--monster-color-primary-disabled-3: var(--monster-color-gray-3);
|
276
|
+
--monster-color-primary-disabled-4: var(--monster-color-gray-3);
|
277
|
+
|
278
|
+
--monster-bg-color-primary-disabled-1: var(--monster-color-gray-6);
|
279
|
+
--monster-bg-color-primary-disabled-2: var(--monster-color-gray-3);
|
280
|
+
--monster-bg-color-primary-disabled-3: var(--monster-color-gray-2);
|
281
|
+
--monster-bg-color-primary-disabled-4: var(--monster-color-gray-1);
|
282
|
+
}
|
283
|
+
|
284
|
+
--monster-color-gradient-1: #833ab4;
|
285
|
+
--monster-color-gradient-2: #fd1d1d;
|
286
|
+
--monster-color-gradient-3: #fcb045;
|
287
|
+
|
288
|
+
}
|