@nuraly/lumenui 0.1.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/LICENSE +28 -0
- package/README.md +248 -0
- package/dist/nuralyui.bundle.js +29209 -0
- package/dist/nuralyui.bundle.js.gz +0 -0
- package/dist/src/components/alert/alert.component.d.ts +103 -0
- package/dist/src/components/alert/alert.component.js +225 -0
- package/dist/src/components/alert/alert.style.d.ts +14 -0
- package/dist/src/components/alert/alert.style.js +191 -0
- package/dist/src/components/alert/alert.types.d.ts +46 -0
- package/dist/src/components/alert/alert.types.js +7 -0
- package/dist/src/components/alert/bundle.js +231 -0
- package/dist/src/components/alert/bundle.js.gz +0 -0
- package/dist/src/components/alert/index.d.ts +8 -0
- package/dist/src/components/alert/index.js +8 -0
- package/dist/src/components/alert/react.d.ts +5 -0
- package/dist/src/components/alert/react.js +17 -0
- package/dist/src/components/badge/badge.component.d.ts +148 -0
- package/dist/src/components/badge/badge.component.js +270 -0
- package/dist/src/components/badge/badge.style.d.ts +14 -0
- package/dist/src/components/badge/badge.style.js +250 -0
- package/dist/src/components/badge/badge.types.d.ts +84 -0
- package/dist/src/components/badge/badge.types.js +7 -0
- package/dist/src/components/badge/bundle.js +277 -0
- package/dist/src/components/badge/bundle.js.gz +0 -0
- package/dist/src/components/badge/index.d.ts +2 -0
- package/dist/src/components/badge/index.js +2 -0
- package/dist/src/components/badge/react.d.ts +3 -0
- package/dist/src/components/badge/react.js +10 -0
- package/dist/src/components/breadcrumb/breadcrumb.component.d.ts +121 -0
- package/dist/src/components/breadcrumb/breadcrumb.component.js +257 -0
- package/dist/src/components/breadcrumb/breadcrumb.style.d.ts +14 -0
- package/dist/src/components/breadcrumb/breadcrumb.style.js +153 -0
- package/dist/src/components/breadcrumb/breadcrumb.types.d.ts +63 -0
- package/dist/src/components/breadcrumb/breadcrumb.types.js +7 -0
- package/dist/src/components/breadcrumb/bundle.js +213 -0
- package/dist/src/components/breadcrumb/bundle.js.gz +0 -0
- package/dist/src/components/breadcrumb/index.d.ts +2 -0
- package/dist/src/components/breadcrumb/index.js +2 -0
- package/dist/src/components/breadcrumb/react.d.ts +5 -0
- package/dist/src/components/breadcrumb/react.js +12 -0
- package/dist/src/components/button/bundle.js +606 -0
- package/dist/src/components/button/bundle.js.gz +0 -0
- package/dist/src/components/button/button.component.d.ts +96 -0
- package/dist/src/components/button/button.component.js +312 -0
- package/dist/src/components/button/button.style.d.ts +10 -0
- package/dist/src/components/button/button.style.js +535 -0
- package/dist/src/components/button/button.types.d.ts +57 -0
- package/dist/src/components/button/button.types.js +2 -0
- package/dist/src/components/button/index.d.ts +2 -0
- package/dist/src/components/button/index.js +2 -0
- package/dist/src/components/button/react.d.ts +5 -0
- package/dist/src/components/button/react.js +12 -0
- package/dist/src/components/canvas/base-canvas.component.d.ts +177 -0
- package/dist/src/components/canvas/base-canvas.component.js +865 -0
- package/dist/src/components/canvas/bundle.js +16664 -0
- package/dist/src/components/canvas/bundle.js.gz +0 -0
- package/dist/src/components/canvas/canvas.component.d.ts +2 -0
- package/dist/src/components/canvas/canvas.component.js +295 -0
- package/dist/src/components/canvas/canvas.constants.d.ts +66 -0
- package/dist/src/components/canvas/canvas.constants.js +61 -0
- package/dist/src/components/canvas/chatbot-panel.style.d.ts +11 -0
- package/dist/src/components/canvas/chatbot-panel.style.js +189 -0
- package/dist/src/components/canvas/index.d.ts +13 -0
- package/dist/src/components/canvas/index.js +21 -0
- package/dist/src/components/canvas/react.d.ts +354 -0
- package/dist/src/components/canvas/react.js +41 -0
- package/dist/src/components/canvas/whiteboard-canvas.component.d.ts +63 -0
- package/dist/src/components/canvas/whiteboard-canvas.component.js +356 -0
- package/dist/src/components/canvas/whiteboard-canvas.style.d.ts +7 -0
- package/dist/src/components/canvas/whiteboard-canvas.style.js +1011 -0
- package/dist/src/components/canvas/whiteboard-node.component.d.ts +87 -0
- package/dist/src/components/canvas/whiteboard-node.component.js +809 -0
- package/dist/src/components/canvas/whiteboard-node.style.d.ts +7 -0
- package/dist/src/components/canvas/whiteboard-node.style.js +775 -0
- package/dist/src/components/canvas/workflow-canvas.component.d.ts +150 -0
- package/dist/src/components/canvas/workflow-canvas.component.js +1468 -0
- package/dist/src/components/canvas/workflow-canvas.style.d.ts +8 -0
- package/dist/src/components/canvas/workflow-canvas.style.js +2903 -0
- package/dist/src/components/canvas/workflow-canvas.types.d.ts +710 -0
- package/dist/src/components/canvas/workflow-canvas.types.js +2305 -0
- package/dist/src/components/canvas/workflow-node.component.d.ts +96 -0
- package/dist/src/components/canvas/workflow-node.component.js +752 -0
- package/dist/src/components/canvas/workflow-node.style.d.ts +8 -0
- package/dist/src/components/canvas/workflow-node.style.js +1053 -0
- package/dist/src/components/card/bundle.js +69 -0
- package/dist/src/components/card/bundle.js.gz +0 -0
- package/dist/src/components/card/card.component.d.ts +30 -0
- package/dist/src/components/card/card.component.js +64 -0
- package/dist/src/components/card/card.style.d.ts +2 -0
- package/dist/src/components/card/card.style.js +62 -0
- package/dist/src/components/card/card.types.d.ts +17 -0
- package/dist/src/components/card/card.types.js +2 -0
- package/dist/src/components/card/index.d.ts +3 -0
- package/dist/src/components/card/index.js +3 -0
- package/dist/src/components/card/react.d.ts +5 -0
- package/dist/src/components/card/react.js +12 -0
- package/dist/src/components/carousel/bundle.js +96 -0
- package/dist/src/components/carousel/bundle.js.gz +0 -0
- package/dist/src/components/carousel/carousel.component.d.ts +19 -0
- package/dist/src/components/carousel/carousel.component.js +128 -0
- package/dist/src/components/carousel/carousel.style.d.ts +2 -0
- package/dist/src/components/carousel/carousel.style.js +68 -0
- package/dist/src/components/carousel/index.d.ts +2 -0
- package/dist/src/components/carousel/index.js +2 -0
- package/dist/src/components/carousel/react.d.ts +5 -0
- package/dist/src/components/carousel/react.js +12 -0
- package/dist/src/components/chatbot/bundle.js +2527 -0
- package/dist/src/components/chatbot/bundle.js.gz +0 -0
- package/dist/src/components/chatbot/chatbot.component.d.ts +215 -0
- package/dist/src/components/chatbot/chatbot.component.js +1097 -0
- package/dist/src/components/chatbot/chatbot.style.d.ts +3 -0
- package/dist/src/components/chatbot/chatbot.style.js +1638 -0
- package/dist/src/components/chatbot/chatbot.types.d.ts +246 -0
- package/dist/src/components/chatbot/chatbot.types.js +124 -0
- package/dist/src/components/chatbot/index.d.ts +13 -0
- package/dist/src/components/chatbot/index.js +20 -0
- package/dist/src/components/chatbot/react.d.ts +54 -0
- package/dist/src/components/chatbot/react.js +55 -0
- package/dist/src/components/checkbox/bundle.js +352 -0
- package/dist/src/components/checkbox/bundle.js.gz +0 -0
- package/dist/src/components/checkbox/checkbox.component.d.ts +62 -0
- package/dist/src/components/checkbox/checkbox.component.js +178 -0
- package/dist/src/components/checkbox/checkbox.style.d.ts +2 -0
- package/dist/src/components/checkbox/checkbox.style.js +323 -0
- package/dist/src/components/checkbox/checkbox.types.d.ts +6 -0
- package/dist/src/components/checkbox/checkbox.types.js +2 -0
- package/dist/src/components/checkbox/index.d.ts +2 -0
- package/dist/src/components/checkbox/index.js +2 -0
- package/dist/src/components/checkbox/react.d.ts +5 -0
- package/dist/src/components/checkbox/react.js +12 -0
- package/dist/src/components/code-editor/bundle.js +55 -0
- package/dist/src/components/code-editor/bundle.js.gz +0 -0
- package/dist/src/components/code-editor/code-editor.component.d.ts +119 -0
- package/dist/src/components/code-editor/code-editor.component.js +532 -0
- package/dist/src/components/code-editor/code-editor.style.d.ts +7 -0
- package/dist/src/components/code-editor/code-editor.style.js +39 -0
- package/dist/src/components/code-editor/code-editor.types.d.ts +39 -0
- package/dist/src/components/code-editor/code-editor.types.js +22 -0
- package/dist/src/components/code-editor/index.d.ts +9 -0
- package/dist/src/components/code-editor/index.js +9 -0
- package/dist/src/components/collapse/bundle.js +308 -0
- package/dist/src/components/collapse/bundle.js.gz +0 -0
- package/dist/src/components/collapse/collapse.component.d.ts +93 -0
- package/dist/src/components/collapse/collapse.component.js +322 -0
- package/dist/src/components/collapse/collapse.style.d.ts +11 -0
- package/dist/src/components/collapse/collapse.style.js +234 -0
- package/dist/src/components/collapse/collapse.type.d.ts +79 -0
- package/dist/src/components/collapse/collapse.type.js +11 -0
- package/dist/src/components/collapse/index.d.ts +2 -0
- package/dist/src/components/collapse/index.js +2 -0
- package/dist/src/components/collapse/react.d.ts +6 -0
- package/dist/src/components/collapse/react.js +13 -0
- package/dist/src/components/colorpicker/bundle.js +242 -0
- package/dist/src/components/colorpicker/bundle.js.gz +0 -0
- package/dist/src/components/colorpicker/color-holder.component.d.ts +50 -0
- package/dist/src/components/colorpicker/color-holder.component.js +116 -0
- package/dist/src/components/colorpicker/color-holder.style.d.ts +2 -0
- package/dist/src/components/colorpicker/color-holder.style.js +45 -0
- package/dist/src/components/colorpicker/color-picker.component.d.ts +178 -0
- package/dist/src/components/colorpicker/color-picker.component.js +374 -0
- package/dist/src/components/colorpicker/color-picker.style.d.ts +10 -0
- package/dist/src/components/colorpicker/color-picker.style.js +86 -0
- package/dist/src/components/colorpicker/color-picker.types.d.ts +60 -0
- package/dist/src/components/colorpicker/color-picker.types.js +2 -0
- package/dist/src/components/colorpicker/default-color-sets.component.d.ts +45 -0
- package/dist/src/components/colorpicker/default-color-sets.component.js +121 -0
- package/dist/src/components/colorpicker/default-color-sets.style.d.ts +2 -0
- package/dist/src/components/colorpicker/default-color-sets.style.js +34 -0
- package/dist/src/components/colorpicker/index.d.ts +3 -0
- package/dist/src/components/colorpicker/index.js +3 -0
- package/dist/src/components/colorpicker/react.d.ts +6 -0
- package/dist/src/components/colorpicker/react.js +13 -0
- package/dist/src/components/console/react.d.ts +340 -0
- package/dist/src/components/console/react.js +13 -0
- package/dist/src/components/container/bundle.js +161 -0
- package/dist/src/components/container/bundle.js.gz +0 -0
- package/dist/src/components/container/container.component.d.ts +85 -0
- package/dist/src/components/container/container.component.js +223 -0
- package/dist/src/components/container/container.style.d.ts +6 -0
- package/dist/src/components/container/container.style.js +146 -0
- package/dist/src/components/container/container.types.d.ts +67 -0
- package/dist/src/components/container/container.types.js +5 -0
- package/dist/src/components/container/index.d.ts +3 -0
- package/dist/src/components/container/index.js +3 -0
- package/dist/src/components/container/react.d.ts +3 -0
- package/dist/src/components/container/react.js +10 -0
- package/dist/src/components/datepicker/bundle.js +706 -0
- package/dist/src/components/datepicker/bundle.js.gz +0 -0
- package/dist/src/components/datepicker/datepicker.component.d.ts +190 -0
- package/dist/src/components/datepicker/datepicker.component.js +673 -0
- package/dist/src/components/datepicker/datepicker.constant.d.ts +60 -0
- package/dist/src/components/datepicker/datepicker.constant.js +60 -0
- package/dist/src/components/datepicker/datepicker.style.d.ts +17 -0
- package/dist/src/components/datepicker/datepicker.style.js +453 -0
- package/dist/src/components/datepicker/datepicker.style.variables.d.ts +2 -0
- package/dist/src/components/datepicker/datepicker.style.variables.js +119 -0
- package/dist/src/components/datepicker/datepicker.types.d.ts +142 -0
- package/dist/src/components/datepicker/datepicker.types.js +75 -0
- package/dist/src/components/datepicker/index.d.ts +4 -0
- package/dist/src/components/datepicker/index.js +4 -0
- package/dist/src/components/datepicker/react.d.ts +16 -0
- package/dist/src/components/datepicker/react.js +23 -0
- package/dist/src/components/db-connection-select/bundle.js +308 -0
- package/dist/src/components/db-connection-select/bundle.js.gz +0 -0
- package/dist/src/components/db-connection-select/db-connection-select.component.d.ts +105 -0
- package/dist/src/components/db-connection-select/db-connection-select.component.js +573 -0
- package/dist/src/components/db-connection-select/index.d.ts +7 -0
- package/dist/src/components/db-connection-select/index.js +7 -0
- package/dist/src/components/divider/bundle.js +143 -0
- package/dist/src/components/divider/bundle.js.gz +0 -0
- package/dist/src/components/divider/divider.component.d.ts +90 -0
- package/dist/src/components/divider/divider.component.js +168 -0
- package/dist/src/components/divider/divider.style.d.ts +3 -0
- package/dist/src/components/divider/divider.style.js +139 -0
- package/dist/src/components/divider/divider.types.d.ts +55 -0
- package/dist/src/components/divider/divider.types.js +6 -0
- package/dist/src/components/divider/index.d.ts +3 -0
- package/dist/src/components/divider/index.js +3 -0
- package/dist/src/components/divider/react.d.ts +3 -0
- package/dist/src/components/divider/react.js +10 -0
- package/dist/src/components/document/bundle.js +242 -0
- package/dist/src/components/document/bundle.js.gz +0 -0
- package/dist/src/components/document/document.component.d.ts +27 -0
- package/dist/src/components/document/document.component.js +136 -0
- package/dist/src/components/document/document.style.d.ts +3 -0
- package/dist/src/components/document/document.style.js +210 -0
- package/dist/src/components/document/document.types.d.ts +68 -0
- package/dist/src/components/document/document.types.js +7 -0
- package/dist/src/components/document/index.d.ts +3 -0
- package/dist/src/components/document/index.js +3 -0
- package/dist/src/components/document/react.d.ts +8 -0
- package/dist/src/components/document/react.js +15 -0
- package/dist/src/components/dropdown/bundle.js +528 -0
- package/dist/src/components/dropdown/bundle.js.gz +0 -0
- package/dist/src/components/dropdown/dropdown.component.d.ts +120 -0
- package/dist/src/components/dropdown/dropdown.component.js +390 -0
- package/dist/src/components/dropdown/dropdown.style.d.ts +2 -0
- package/dist/src/components/dropdown/dropdown.style.js +460 -0
- package/dist/src/components/dropdown/dropdown.types.d.ts +99 -0
- package/dist/src/components/dropdown/dropdown.types.js +2 -0
- package/dist/src/components/dropdown/index.d.ts +3 -0
- package/dist/src/components/dropdown/index.js +3 -0
- package/dist/src/components/dropdown/react.d.ts +7 -0
- package/dist/src/components/dropdown/react.js +14 -0
- package/dist/src/components/file-upload/bundle.js +472 -0
- package/dist/src/components/file-upload/bundle.js.gz +0 -0
- package/dist/src/components/file-upload/file-upload.component.d.ts +43 -0
- package/dist/src/components/file-upload/file-upload.component.js +398 -0
- package/dist/src/components/file-upload/index.d.ts +2 -0
- package/dist/src/components/file-upload/index.js +2 -0
- package/dist/src/components/file-upload/react.d.ts +7 -0
- package/dist/src/components/file-upload/react.js +14 -0
- package/dist/src/components/file-upload/styles.d.ts +2 -0
- package/dist/src/components/file-upload/styles.js +373 -0
- package/dist/src/components/file-upload/types.d.ts +11 -0
- package/dist/src/components/file-upload/types.js +2 -0
- package/dist/src/components/file-upload/utils.d.ts +6 -0
- package/dist/src/components/file-upload/utils.js +24 -0
- package/dist/src/components/flex/bundle.js +114 -0
- package/dist/src/components/flex/bundle.js.gz +0 -0
- package/dist/src/components/flex/flex.component.d.ts +89 -0
- package/dist/src/components/flex/flex.component.js +178 -0
- package/dist/src/components/flex/flex.style.d.ts +6 -0
- package/dist/src/components/flex/flex.style.js +101 -0
- package/dist/src/components/flex/flex.types.d.ts +63 -0
- package/dist/src/components/flex/flex.types.js +5 -0
- package/dist/src/components/flex/index.d.ts +3 -0
- package/dist/src/components/flex/index.js +3 -0
- package/dist/src/components/flex/react.d.ts +3 -0
- package/dist/src/components/flex/react.js +10 -0
- package/dist/src/components/form/bundle.js +98 -0
- package/dist/src/components/form/bundle.js.gz +0 -0
- package/dist/src/components/form/form.component.d.ts +279 -0
- package/dist/src/components/form/form.component.js +644 -0
- package/dist/src/components/form/form.style.d.ts +7 -0
- package/dist/src/components/form/form.style.js +68 -0
- package/dist/src/components/form/form.types.d.ts +92 -0
- package/dist/src/components/form/form.types.js +38 -0
- package/dist/src/components/form/index.d.ts +10 -0
- package/dist/src/components/form/index.js +13 -0
- package/dist/src/components/grid/bundle.js +202 -0
- package/dist/src/components/grid/bundle.js.gz +0 -0
- package/dist/src/components/grid/col.component.d.ts +103 -0
- package/dist/src/components/grid/col.component.js +253 -0
- package/dist/src/components/grid/col.style.d.ts +6 -0
- package/dist/src/components/grid/col.style.js +117 -0
- package/dist/src/components/grid/grid.types.d.ts +80 -0
- package/dist/src/components/grid/grid.types.js +16 -0
- package/dist/src/components/grid/index.d.ts +4 -0
- package/dist/src/components/grid/index.js +4 -0
- package/dist/src/components/grid/react.d.ts +5 -0
- package/dist/src/components/grid/react.js +17 -0
- package/dist/src/components/grid/row.component.d.ts +83 -0
- package/dist/src/components/grid/row.component.js +197 -0
- package/dist/src/components/grid/row.style.d.ts +6 -0
- package/dist/src/components/grid/row.style.js +68 -0
- package/dist/src/components/icon/bundle.js +340 -0
- package/dist/src/components/icon/bundle.js.gz +0 -0
- package/dist/src/components/icon/icon.component.d.ts +64 -0
- package/dist/src/components/icon/icon.component.js +207 -0
- package/dist/src/components/icon/icon.style.d.ts +2 -0
- package/dist/src/components/icon/icon.style.js +211 -0
- package/dist/src/components/icon/icon.types.d.ts +5 -0
- package/dist/src/components/icon/icon.types.js +2 -0
- package/dist/src/components/icon/icon.variables.d.ts +17 -0
- package/dist/src/components/icon/icon.variables.js +132 -0
- package/dist/src/components/icon/index.d.ts +2 -0
- package/dist/src/components/icon/index.js +2 -0
- package/dist/src/components/icon/react.d.ts +3 -0
- package/dist/src/components/icon/react.js +9 -0
- package/dist/src/components/iconpicker/bundle.js +2811 -0
- package/dist/src/components/iconpicker/bundle.js.gz +0 -0
- package/dist/src/components/iconpicker/icon-picker.component.d.ts +119 -0
- package/dist/src/components/iconpicker/icon-picker.component.js +337 -0
- package/dist/src/components/iconpicker/icon-picker.constant.d.ts +15 -0
- package/dist/src/components/iconpicker/icon-picker.constant.js +31 -0
- package/dist/src/components/iconpicker/icon-picker.style.d.ts +8 -0
- package/dist/src/components/iconpicker/icon-picker.style.js +216 -0
- package/dist/src/components/iconpicker/icon-picker.types.d.ts +49 -0
- package/dist/src/components/iconpicker/icon-picker.types.js +7 -0
- package/dist/src/components/iconpicker/index.d.ts +9 -0
- package/dist/src/components/iconpicker/index.js +9 -0
- package/dist/src/components/iconpicker/react.d.ts +14 -0
- package/dist/src/components/iconpicker/react.js +21 -0
- package/dist/src/components/image/bundle.js +98 -0
- package/dist/src/components/image/bundle.js.gz +0 -0
- package/dist/src/components/image/image.component.d.ts +31 -0
- package/dist/src/components/image/image.component.js +143 -0
- package/dist/src/components/image/image.style.d.ts +3 -0
- package/dist/src/components/image/image.style.js +83 -0
- package/dist/src/components/image/image.types.d.ts +68 -0
- package/dist/src/components/image/image.types.js +7 -0
- package/dist/src/components/image/index.d.ts +3 -0
- package/dist/src/components/image/index.js +3 -0
- package/dist/src/components/image/react.d.ts +8 -0
- package/dist/src/components/image/react.js +15 -0
- package/dist/src/components/input/bundle.js +930 -0
- package/dist/src/components/input/bundle.js.gz +0 -0
- package/dist/src/components/input/index.d.ts +3 -0
- package/dist/src/components/input/index.js +3 -0
- package/dist/src/components/input/input.component.d.ts +174 -0
- package/dist/src/components/input/input.component.js +490 -0
- package/dist/src/components/input/input.style.d.ts +2 -0
- package/dist/src/components/input/input.style.js +810 -0
- package/dist/src/components/input/input.types.d.ts +127 -0
- package/dist/src/components/input/input.types.js +75 -0
- package/dist/src/components/input/react.d.ts +9 -0
- package/dist/src/components/input/react.js +16 -0
- package/dist/src/components/input/validation.d.ts +3 -0
- package/dist/src/components/input/validation.js +3 -0
- package/dist/src/components/kv-secret-select/bundle.js +183 -0
- package/dist/src/components/kv-secret-select/bundle.js.gz +0 -0
- package/dist/src/components/kv-secret-select/index.d.ts +2 -0
- package/dist/src/components/kv-secret-select/index.js +2 -0
- package/dist/src/components/kv-secret-select/kv-secret-select.component.d.ts +83 -0
- package/dist/src/components/kv-secret-select/kv-secret-select.component.js +360 -0
- package/dist/src/components/label/bundle.js +104 -0
- package/dist/src/components/label/bundle.js.gz +0 -0
- package/dist/src/components/label/index.d.ts +2 -0
- package/dist/src/components/label/index.js +2 -0
- package/dist/src/components/label/label.component.d.ts +18 -0
- package/dist/src/components/label/label.component.js +64 -0
- package/dist/src/components/label/label.style.d.ts +3 -0
- package/dist/src/components/label/label.style.js +70 -0
- package/dist/src/components/label/label.style.variables.d.ts +2 -0
- package/dist/src/components/label/label.style.variables.js +35 -0
- package/dist/src/components/label/label.types.d.ts +42 -0
- package/dist/src/components/label/label.types.js +2 -0
- package/dist/src/components/label/react.d.ts +339 -0
- package/dist/src/components/label/react.js +12 -0
- package/dist/src/components/layout/bundle.js +220 -0
- package/dist/src/components/layout/bundle.js.gz +0 -0
- package/dist/src/components/layout/content.component.d.ts +35 -0
- package/dist/src/components/layout/content.component.js +47 -0
- package/dist/src/components/layout/content.style.d.ts +2 -0
- package/dist/src/components/layout/content.style.js +17 -0
- package/dist/src/components/layout/footer.component.d.ts +38 -0
- package/dist/src/components/layout/footer.component.js +60 -0
- package/dist/src/components/layout/footer.style.d.ts +2 -0
- package/dist/src/components/layout/footer.style.js +17 -0
- package/dist/src/components/layout/header.component.d.ts +39 -0
- package/dist/src/components/layout/header.component.js +61 -0
- package/dist/src/components/layout/header.style.d.ts +2 -0
- package/dist/src/components/layout/header.style.js +19 -0
- package/dist/src/components/layout/index.d.ts +8 -0
- package/dist/src/components/layout/index.js +7 -0
- package/dist/src/components/layout/layout.component.d.ts +50 -0
- package/dist/src/components/layout/layout.component.js +89 -0
- package/dist/src/components/layout/layout.style.d.ts +2 -0
- package/dist/src/components/layout/layout.style.js +23 -0
- package/dist/src/components/layout/layout.types.d.ts +75 -0
- package/dist/src/components/layout/layout.types.js +12 -0
- package/dist/src/components/layout/react.d.ts +14 -0
- package/dist/src/components/layout/react.js +37 -0
- package/dist/src/components/layout/sider.component.d.ts +116 -0
- package/dist/src/components/layout/sider.component.js +273 -0
- package/dist/src/components/layout/sider.style.d.ts +2 -0
- package/dist/src/components/layout/sider.style.js +104 -0
- package/dist/src/components/menu/bundle.js +520 -0
- package/dist/src/components/menu/bundle.js.gz +0 -0
- package/dist/src/components/menu/index.d.ts +4 -0
- package/dist/src/components/menu/index.js +2 -0
- package/dist/src/components/menu/menu.component.d.ts +87 -0
- package/dist/src/components/menu/menu.component.js +596 -0
- package/dist/src/components/menu/menu.constants.d.ts +12 -0
- package/dist/src/components/menu/menu.constants.js +14 -0
- package/dist/src/components/menu/menu.style.d.ts +2 -0
- package/dist/src/components/menu/menu.style.js +372 -0
- package/dist/src/components/menu/menu.types.d.ts +66 -0
- package/dist/src/components/menu/menu.types.js +7 -0
- package/dist/src/components/menu/react.d.ts +5 -0
- package/dist/src/components/menu/react.js +12 -0
- package/dist/src/components/modal/bundle.js +442 -0
- package/dist/src/components/modal/bundle.js.gz +0 -0
- package/dist/src/components/modal/index.d.ts +10 -0
- package/dist/src/components/modal/index.js +10 -0
- package/dist/src/components/modal/modal-manager.d.ts +72 -0
- package/dist/src/components/modal/modal-manager.js +170 -0
- package/dist/src/components/modal/modal.component.d.ts +121 -0
- package/dist/src/components/modal/modal.component.js +461 -0
- package/dist/src/components/modal/modal.style.d.ts +9 -0
- package/dist/src/components/modal/modal.style.js +369 -0
- package/dist/src/components/modal/modal.types.d.ts +105 -0
- package/dist/src/components/modal/modal.types.js +93 -0
- package/dist/src/components/modal/react.d.ts +9 -0
- package/dist/src/components/modal/react.js +16 -0
- package/dist/src/components/panel/bundle.js +1075 -0
- package/dist/src/components/panel/bundle.js.gz +0 -0
- package/dist/src/components/panel/index.d.ts +9 -0
- package/dist/src/components/panel/index.js +9 -0
- package/dist/src/components/panel/panel.component.d.ts +199 -0
- package/dist/src/components/panel/panel.component.js +720 -0
- package/dist/src/components/panel/panel.style.d.ts +7 -0
- package/dist/src/components/panel/panel.style.js +497 -0
- package/dist/src/components/panel/panel.types.d.ts +94 -0
- package/dist/src/components/panel/panel.types.js +50 -0
- package/dist/src/components/panel/react.d.ts +11 -0
- package/dist/src/components/panel/react.js +18 -0
- package/dist/src/components/popconfirm/bundle.js +438 -0
- package/dist/src/components/popconfirm/bundle.js.gz +0 -0
- package/dist/src/components/popconfirm/index.d.ts +4 -0
- package/dist/src/components/popconfirm/index.js +4 -0
- package/dist/src/components/popconfirm/popconfirm-manager.component.d.ts +129 -0
- package/dist/src/components/popconfirm/popconfirm-manager.component.js +372 -0
- package/dist/src/components/popconfirm/popconfirm-manager.style.d.ts +2 -0
- package/dist/src/components/popconfirm/popconfirm-manager.style.js +137 -0
- package/dist/src/components/popconfirm/popconfirm.component.d.ts +179 -0
- package/dist/src/components/popconfirm/popconfirm.component.js +409 -0
- package/dist/src/components/popconfirm/popconfirm.style.d.ts +2 -0
- package/dist/src/components/popconfirm/popconfirm.style.js +207 -0
- package/dist/src/components/popconfirm/popconfirm.types.d.ts +104 -0
- package/dist/src/components/popconfirm/popconfirm.types.js +2 -0
- package/dist/src/components/popconfirm/react.d.ts +7 -0
- package/dist/src/components/popconfirm/react.js +14 -0
- package/dist/src/components/radio/bundle.js +180 -0
- package/dist/src/components/radio/bundle.js.gz +0 -0
- package/dist/src/components/radio/index.d.ts +3 -0
- package/dist/src/components/radio/index.js +3 -0
- package/dist/src/components/radio/radio.component.d.ts +70 -0
- package/dist/src/components/radio/radio.component.js +187 -0
- package/dist/src/components/radio/radio.style.d.ts +7 -0
- package/dist/src/components/radio/radio.style.js +149 -0
- package/dist/src/components/radio/radio.types.d.ts +14 -0
- package/dist/src/components/radio/radio.types.js +15 -0
- package/dist/src/components/radio/react.d.ts +12 -0
- package/dist/src/components/radio/react.js +19 -0
- package/dist/src/components/radio-group/bundle.js +430 -0
- package/dist/src/components/radio-group/bundle.js.gz +0 -0
- package/dist/src/components/radio-group/index.d.ts +3 -0
- package/dist/src/components/radio-group/index.js +3 -0
- package/dist/src/components/radio-group/radio-group.component.d.ts +165 -0
- package/dist/src/components/radio-group/radio-group.component.js +437 -0
- package/dist/src/components/radio-group/radio-group.style.d.ts +7 -0
- package/dist/src/components/radio-group/radio-group.style.js +270 -0
- package/dist/src/components/radio-group/radio-group.types.d.ts +39 -0
- package/dist/src/components/radio-group/radio-group.types.js +29 -0
- package/dist/src/components/radio-group/radio.constant.d.ts +2 -0
- package/dist/src/components/radio-group/radio.constant.js +2 -0
- package/dist/src/components/radio-group/react.d.ts +10 -0
- package/dist/src/components/radio-group/react.js +17 -0
- package/dist/src/components/select/bundle.js +721 -0
- package/dist/src/components/select/bundle.js.gz +0 -0
- package/dist/src/components/select/index.d.ts +17 -0
- package/dist/src/components/select/index.js +20 -0
- package/dist/src/components/select/react.d.ts +19 -0
- package/dist/src/components/select/react.js +26 -0
- package/dist/src/components/select/select.component.d.ts +359 -0
- package/dist/src/components/select/select.component.js +775 -0
- package/dist/src/components/select/select.constant.d.ts +133 -0
- package/dist/src/components/select/select.constant.js +136 -0
- package/dist/src/components/select/select.style.d.ts +2 -0
- package/dist/src/components/select/select.style.js +533 -0
- package/dist/src/components/select/select.types.d.ts +100 -0
- package/dist/src/components/select/select.types.js +73 -0
- package/dist/src/components/skeleton/bundle.js +293 -0
- package/dist/src/components/skeleton/bundle.js.gz +0 -0
- package/dist/src/components/skeleton/index.d.ts +3 -0
- package/dist/src/components/skeleton/index.js +3 -0
- package/dist/src/components/skeleton/react.d.ts +3 -0
- package/dist/src/components/skeleton/react.js +10 -0
- package/dist/src/components/skeleton/skeleton.component.d.ts +165 -0
- package/dist/src/components/skeleton/skeleton.component.js +387 -0
- package/dist/src/components/skeleton/skeleton.style.d.ts +2 -0
- package/dist/src/components/skeleton/skeleton.style.js +224 -0
- package/dist/src/components/skeleton/skeleton.types.d.ts +82 -0
- package/dist/src/components/skeleton/skeleton.types.js +2 -0
- package/dist/src/components/slider-input/bundle.js +241 -0
- package/dist/src/components/slider-input/bundle.js.gz +0 -0
- package/dist/src/components/slider-input/index.d.ts +3 -0
- package/dist/src/components/slider-input/index.js +3 -0
- package/dist/src/components/slider-input/react.d.ts +340 -0
- package/dist/src/components/slider-input/react.js +13 -0
- package/dist/src/components/slider-input/slider-input.component.d.ts +38 -0
- package/dist/src/components/slider-input/slider-input.component.js +191 -0
- package/dist/src/components/slider-input/slider-input.style.d.ts +3 -0
- package/dist/src/components/slider-input/slider-input.style.js +171 -0
- package/dist/src/components/slider-input/slider-input.style.variables.d.ts +2 -0
- package/dist/src/components/slider-input/slider-input.style.variables.js +59 -0
- package/dist/src/components/slider-input/slider-input.types.d.ts +21 -0
- package/dist/src/components/slider-input/slider-input.types.js +6 -0
- package/dist/src/components/table/bundle.js +987 -0
- package/dist/src/components/table/bundle.js.gz +0 -0
- package/dist/src/components/table/index.d.ts +2 -0
- package/dist/src/components/table/index.js +2 -0
- package/dist/src/components/table/react.d.ts +7 -0
- package/dist/src/components/table/react.js +14 -0
- package/dist/src/components/table/table.component.d.ts +140 -0
- package/dist/src/components/table/table.component.js +433 -0
- package/dist/src/components/table/table.style.d.ts +3 -0
- package/dist/src/components/table/table.style.js +702 -0
- package/dist/src/components/table/table.types.d.ts +103 -0
- package/dist/src/components/table/table.types.js +2 -0
- package/dist/src/components/tabs/bundle.js +1782 -0
- package/dist/src/components/tabs/bundle.js.gz +0 -0
- package/dist/src/components/tabs/index.d.ts +9 -0
- package/dist/src/components/tabs/index.js +10 -0
- package/dist/src/components/tabs/react.d.ts +50 -0
- package/dist/src/components/tabs/react.js +50 -0
- package/dist/src/components/tabs/tabs.component.d.ts +100 -0
- package/dist/src/components/tabs/tabs.component.js +461 -0
- package/dist/src/components/tabs/tabs.constant.d.ts +20 -0
- package/dist/src/components/tabs/tabs.constant.js +21 -0
- package/dist/src/components/tabs/tabs.style.d.ts +9 -0
- package/dist/src/components/tabs/tabs.style.js +577 -0
- package/dist/src/components/tabs/tabs.types.d.ts +241 -0
- package/dist/src/components/tabs/tabs.types.js +13 -0
- package/dist/src/components/tag/bundle.js +108 -0
- package/dist/src/components/tag/bundle.js.gz +0 -0
- package/dist/src/components/tag/index.d.ts +2 -0
- package/dist/src/components/tag/index.js +2 -0
- package/dist/src/components/tag/react.d.ts +6 -0
- package/dist/src/components/tag/react.js +13 -0
- package/dist/src/components/tag/tag.component.d.ts +57 -0
- package/dist/src/components/tag/tag.component.js +157 -0
- package/dist/src/components/tag/tag.style.d.ts +7 -0
- package/dist/src/components/tag/tag.style.js +88 -0
- package/dist/src/components/tag/tag.types.d.ts +28 -0
- package/dist/src/components/tag/tag.types.js +7 -0
- package/dist/src/components/textarea/bundle.js +404 -0
- package/dist/src/components/textarea/bundle.js.gz +0 -0
- package/dist/src/components/textarea/index.d.ts +8 -0
- package/dist/src/components/textarea/index.js +7 -0
- package/dist/src/components/textarea/react.d.ts +9 -0
- package/dist/src/components/textarea/react.js +16 -0
- package/dist/src/components/textarea/textarea.component.d.ts +203 -0
- package/dist/src/components/textarea/textarea.component.js +657 -0
- package/dist/src/components/textarea/textarea.style.d.ts +59 -0
- package/dist/src/components/textarea/textarea.style.js +386 -0
- package/dist/src/components/textarea/textarea.types.d.ts +102 -0
- package/dist/src/components/textarea/textarea.types.js +14 -0
- package/dist/src/components/timeline/bundle.js +261 -0
- package/dist/src/components/timeline/bundle.js.gz +0 -0
- package/dist/src/components/timeline/index.d.ts +2 -0
- package/dist/src/components/timeline/index.js +2 -0
- package/dist/src/components/timeline/react.d.ts +3 -0
- package/dist/src/components/timeline/react.js +10 -0
- package/dist/src/components/timeline/timeline.component.d.ts +109 -0
- package/dist/src/components/timeline/timeline.component.js +214 -0
- package/dist/src/components/timeline/timeline.style.d.ts +14 -0
- package/dist/src/components/timeline/timeline.style.js +234 -0
- package/dist/src/components/timeline/timeline.types.d.ts +62 -0
- package/dist/src/components/timeline/timeline.types.js +7 -0
- package/dist/src/components/timepicker/bundle.js +810 -0
- package/dist/src/components/timepicker/bundle.js.gz +0 -0
- package/dist/src/components/timepicker/index.d.ts +12 -0
- package/dist/src/components/timepicker/index.js +12 -0
- package/dist/src/components/timepicker/timepicker.component.d.ts +115 -0
- package/dist/src/components/timepicker/timepicker.component.js +743 -0
- package/dist/src/components/timepicker/timepicker.constants.d.ts +85 -0
- package/dist/src/components/timepicker/timepicker.constants.js +85 -0
- package/dist/src/components/timepicker/timepicker.style.d.ts +7 -0
- package/dist/src/components/timepicker/timepicker.style.js +568 -0
- package/dist/src/components/timepicker/timepicker.style.variables.d.ts +2 -0
- package/dist/src/components/timepicker/timepicker.style.variables.js +122 -0
- package/dist/src/components/timepicker/timepicker.types.d.ts +161 -0
- package/dist/src/components/timepicker/timepicker.types.js +125 -0
- package/dist/src/components/toast/bundle.js +393 -0
- package/dist/src/components/toast/bundle.js.gz +0 -0
- package/dist/src/components/toast/index.d.ts +9 -0
- package/dist/src/components/toast/index.js +9 -0
- package/dist/src/components/toast/react.d.ts +7 -0
- package/dist/src/components/toast/react.js +19 -0
- package/dist/src/components/toast/toast.component.d.ts +152 -0
- package/dist/src/components/toast/toast.component.js +368 -0
- package/dist/src/components/toast/toast.style.d.ts +14 -0
- package/dist/src/components/toast/toast.style.js +338 -0
- package/dist/src/components/toast/toast.types.d.ts +124 -0
- package/dist/src/components/toast/toast.types.js +9 -0
- package/dist/src/components/tooltips/bundle.js +123 -0
- package/dist/src/components/tooltips/bundle.js.gz +0 -0
- package/dist/src/components/tooltips/index.d.ts +2 -0
- package/dist/src/components/tooltips/index.js +2 -0
- package/dist/src/components/tooltips/react.d.ts +1 -0
- package/dist/src/components/tooltips/react.js +2 -0
- package/dist/src/components/tooltips/tooltips.component.d.ts +33 -0
- package/dist/src/components/tooltips/tooltips.component.js +313 -0
- package/dist/src/components/tooltips/tooltips.constant.d.ts +13 -0
- package/dist/src/components/tooltips/tooltips.constant.js +15 -0
- package/dist/src/components/tooltips/tooltips.style.d.ts +2 -0
- package/dist/src/components/tooltips/tooltips.style.js +103 -0
- package/dist/src/components/tooltips/tooltips.variables.d.ts +2 -0
- package/dist/src/components/tooltips/tooltips.variables.js +14 -0
- package/dist/src/components/video/bundle.js +171 -0
- package/dist/src/components/video/bundle.js.gz +0 -0
- package/dist/src/components/video/index.d.ts +3 -0
- package/dist/src/components/video/index.js +3 -0
- package/dist/src/components/video/react.d.ts +10 -0
- package/dist/src/components/video/react.js +17 -0
- package/dist/src/components/video/video.component.d.ts +34 -0
- package/dist/src/components/video/video.component.js +184 -0
- package/dist/src/components/video/video.style.d.ts +3 -0
- package/dist/src/components/video/video.style.js +124 -0
- package/dist/src/components/video/video.types.d.ts +80 -0
- package/dist/src/components/video/video.types.js +7 -0
- package/package.json +215 -0
- package/packages/common/README.md +137 -0
- package/packages/common/dist/LICENSE +28 -0
- package/packages/common/dist/README.md +137 -0
- package/packages/common/dist/VERSIONS.md +4 -0
- package/packages/common/dist/constants/index.d.ts +2 -0
- package/packages/common/dist/constants/index.d.ts.map +1 -0
- package/packages/common/dist/constants/index.js +2 -0
- package/packages/common/dist/constants/index.js.map +1 -0
- package/packages/common/dist/constants.d.ts +17 -0
- package/packages/common/dist/constants.d.ts.map +1 -0
- package/packages/common/dist/constants.js +7 -0
- package/packages/common/dist/constants.js.map +1 -0
- package/packages/common/dist/controllers/index.d.ts +2 -0
- package/packages/common/dist/controllers/index.d.ts.map +1 -0
- package/packages/common/dist/controllers/index.js +2 -0
- package/packages/common/dist/controllers/index.js.map +1 -0
- package/packages/common/dist/controllers.d.ts +21 -0
- package/packages/common/dist/controllers.d.ts.map +1 -0
- package/packages/common/dist/controllers.js +22 -0
- package/packages/common/dist/controllers.js.map +1 -0
- package/packages/common/dist/index.d.ts +25 -0
- package/packages/common/dist/index.d.ts.map +1 -0
- package/packages/common/dist/index.js +27 -0
- package/packages/common/dist/index.js.map +1 -0
- package/packages/common/dist/mixins/index.d.ts +2 -0
- package/packages/common/dist/mixins/index.d.ts.map +1 -0
- package/packages/common/dist/mixins/index.js +3 -0
- package/packages/common/dist/mixins/index.js.map +1 -0
- package/packages/common/dist/mixins.d.ts +26 -0
- package/packages/common/dist/mixins.d.ts.map +1 -0
- package/packages/common/dist/mixins.js +29 -0
- package/packages/common/dist/mixins.js.map +1 -0
- package/packages/common/dist/shared/base-mixin.d.ts +42 -0
- package/packages/common/dist/shared/base-mixin.d.ts.map +1 -0
- package/packages/common/dist/shared/base-mixin.js +38 -0
- package/packages/common/dist/shared/base-mixin.js.map +1 -0
- package/packages/common/dist/shared/constants.d.ts +1 -0
- package/packages/common/dist/shared/constants.d.ts.map +1 -0
- package/packages/common/dist/shared/constants.js +2 -0
- package/packages/common/dist/shared/constants.js.map +1 -0
- package/packages/common/dist/shared/controllers/base-validation.controller.d.ts +81 -0
- package/packages/common/dist/shared/controllers/base-validation.controller.d.ts.map +1 -0
- package/packages/common/dist/shared/controllers/base-validation.controller.js +104 -0
- package/packages/common/dist/shared/controllers/base-validation.controller.js.map +1 -0
- package/packages/common/dist/shared/controllers/base.controller.d.ts +76 -0
- package/packages/common/dist/shared/controllers/base.controller.d.ts.map +1 -0
- package/packages/common/dist/shared/controllers/base.controller.js +129 -0
- package/packages/common/dist/shared/controllers/base.controller.js.map +1 -0
- package/packages/common/dist/shared/controllers/dropdown.controller.d.ts +77 -0
- package/packages/common/dist/shared/controllers/dropdown.controller.d.ts.map +1 -0
- package/packages/common/dist/shared/controllers/dropdown.controller.js +341 -0
- package/packages/common/dist/shared/controllers/dropdown.controller.js.map +1 -0
- package/packages/common/dist/shared/controllers/dropdown.interface.d.ts +37 -0
- package/packages/common/dist/shared/controllers/dropdown.interface.d.ts.map +1 -0
- package/packages/common/dist/shared/controllers/dropdown.interface.js +2 -0
- package/packages/common/dist/shared/controllers/dropdown.interface.js.map +1 -0
- package/packages/common/dist/shared/controllers/index.d.ts +6 -0
- package/packages/common/dist/shared/controllers/index.d.ts.map +1 -0
- package/packages/common/dist/shared/controllers/index.js +6 -0
- package/packages/common/dist/shared/controllers/index.js.map +1 -0
- package/packages/common/dist/shared/controllers/theme.controller.d.ts +48 -0
- package/packages/common/dist/shared/controllers/theme.controller.d.ts.map +1 -0
- package/packages/common/dist/shared/controllers/theme.controller.js +133 -0
- package/packages/common/dist/shared/controllers/theme.controller.js.map +1 -0
- package/packages/common/dist/shared/dependency-mixin.d.ts +37 -0
- package/packages/common/dist/shared/dependency-mixin.d.ts.map +1 -0
- package/packages/common/dist/shared/dependency-mixin.js +141 -0
- package/packages/common/dist/shared/dependency-mixin.js.map +1 -0
- package/packages/common/dist/shared/event-handler-mixin.d.ts +64 -0
- package/packages/common/dist/shared/event-handler-mixin.d.ts.map +1 -0
- package/packages/common/dist/shared/event-handler-mixin.js +95 -0
- package/packages/common/dist/shared/event-handler-mixin.js.map +1 -0
- package/packages/common/dist/shared/index.d.ts +13 -0
- package/packages/common/dist/shared/index.d.ts.map +1 -0
- package/packages/common/dist/shared/index.js +17 -0
- package/packages/common/dist/shared/index.js.map +1 -0
- package/packages/common/dist/shared/render-utils.d.ts +103 -0
- package/packages/common/dist/shared/render-utils.d.ts.map +1 -0
- package/packages/common/dist/shared/render-utils.js +132 -0
- package/packages/common/dist/shared/render-utils.js.map +1 -0
- package/packages/common/dist/shared/theme-mixin.d.ts +78 -0
- package/packages/common/dist/shared/theme-mixin.d.ts.map +1 -0
- package/packages/common/dist/shared/theme-mixin.js +194 -0
- package/packages/common/dist/shared/theme-mixin.js.map +1 -0
- package/packages/common/dist/shared/themes.d.ts +44 -0
- package/packages/common/dist/shared/themes.d.ts.map +1 -0
- package/packages/common/dist/shared/themes.js +85 -0
- package/packages/common/dist/shared/themes.js.map +1 -0
- package/packages/common/dist/shared/utils.d.ts +60 -0
- package/packages/common/dist/shared/utils.d.ts.map +1 -0
- package/packages/common/dist/shared/utils.js +85 -0
- package/packages/common/dist/shared/utils.js.map +1 -0
- package/packages/common/dist/shared/validation.types.d.ts +108 -0
- package/packages/common/dist/shared/validation.types.d.ts.map +1 -0
- package/packages/common/dist/shared/validation.types.js +17 -0
- package/packages/common/dist/shared/validation.types.js.map +1 -0
- package/packages/common/dist/themes/index.d.ts +2 -0
- package/packages/common/dist/themes/index.d.ts.map +1 -0
- package/packages/common/dist/themes/index.js +2 -0
- package/packages/common/dist/themes/index.js.map +1 -0
- package/packages/common/dist/themes.d.ts +22 -0
- package/packages/common/dist/themes.d.ts.map +1 -0
- package/packages/common/dist/themes.js +23 -0
- package/packages/common/dist/themes.js.map +1 -0
- package/packages/common/dist/utils/index.d.ts +2 -0
- package/packages/common/dist/utils/index.d.ts.map +1 -0
- package/packages/common/dist/utils/index.js +2 -0
- package/packages/common/dist/utils/index.js.map +1 -0
- package/packages/common/dist/utils.d.ts +22 -0
- package/packages/common/dist/utils.d.ts.map +1 -0
- package/packages/common/dist/utils.js +24 -0
- package/packages/common/dist/utils.js.map +1 -0
- package/packages/themes/README.md +146 -0
- package/packages/themes/dist/README.md +146 -0
- package/packages/themes/dist/carbon.css +2987 -0
- package/packages/themes/dist/default.css +2757 -0
- package/packages/themes/dist/editor.css +1063 -0
- package/packages/themes/dist/index.cjs +46 -0
- package/packages/themes/dist/index.js +46 -0
- package/packages/themes/dist/package.json +59 -0
|
@@ -0,0 +1,2987 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Carbon Theme Bundle
|
|
3
|
+
* Generated automatically - do not edit directly
|
|
4
|
+
* Source: src/shared/themes/carbon
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/* ==============================================
|
|
8
|
+
* theme.css
|
|
9
|
+
* ============================================== */
|
|
10
|
+
|
|
11
|
+
:root {
|
|
12
|
+
|
|
13
|
+
--nuraly-font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
|
|
14
|
+
--nuraly-font-weight-regular: 400;
|
|
15
|
+
--nuraly-font-weight-medium: 500;
|
|
16
|
+
--nuraly-font-weight-semibold: 600;
|
|
17
|
+
--nuraly-font-weight-bold: 700;
|
|
18
|
+
|
|
19
|
+
--nuraly-font-size-01: 0.75rem;
|
|
20
|
+
--nuraly-font-size-02: 0.875rem;
|
|
21
|
+
--nuraly-font-size-03: 1rem;
|
|
22
|
+
--nuraly-font-size-04: 1.125rem;
|
|
23
|
+
--nuraly-font-size-05: 1.25rem;
|
|
24
|
+
--nuraly-font-size-06: 1.5rem;
|
|
25
|
+
--nuraly-font-size-07: 1.75rem;
|
|
26
|
+
--nuraly-font-size-08: 2rem;
|
|
27
|
+
|
|
28
|
+
--nuraly-line-height-01: 1.25;
|
|
29
|
+
--nuraly-line-height-02: 1.375;
|
|
30
|
+
--nuraly-line-height-03: 1.5;
|
|
31
|
+
|
|
32
|
+
--nuraly-color-primary: #0f62fe;
|
|
33
|
+
--nuraly-color-primary-hover: #0050e6;
|
|
34
|
+
--nuraly-color-primary-active: #002d9c;
|
|
35
|
+
--nuraly-color-primary-light: #a6c8ff;
|
|
36
|
+
--nuraly-color-primary-dark: #002d9c;
|
|
37
|
+
|
|
38
|
+
--nuraly-color-secondary: #393939;
|
|
39
|
+
--nuraly-color-secondary-hover: #4c4c4c;
|
|
40
|
+
--nuraly-color-secondary-active: #656565;
|
|
41
|
+
--nuraly-color-secondary-light: #c6c6c6;
|
|
42
|
+
--nuraly-color-secondary-dark: #161616;
|
|
43
|
+
|
|
44
|
+
--nuraly-color-success: #198038;
|
|
45
|
+
--nuraly-color-success-hover: #156930;
|
|
46
|
+
--nuraly-color-success-active: #0e4b25;
|
|
47
|
+
--nuraly-color-success-light: #9ef0a9;
|
|
48
|
+
--nuraly-color-success-dark: #0e4b25;
|
|
49
|
+
|
|
50
|
+
--nuraly-color-warning: #f1c21b;
|
|
51
|
+
--nuraly-color-warning-hover: #ddb00e;
|
|
52
|
+
--nuraly-color-warning-active: #b3900c;
|
|
53
|
+
--nuraly-color-warning-light: #fcf4d6;
|
|
54
|
+
--nuraly-color-warning-dark: #b3900c;
|
|
55
|
+
|
|
56
|
+
--nuraly-color-danger: #da1e28;
|
|
57
|
+
--nuraly-color-danger-hover: #b81921;
|
|
58
|
+
--nuraly-color-danger-active: #750e13;
|
|
59
|
+
--nuraly-color-danger-light: #ffb3b8;
|
|
60
|
+
--nuraly-color-danger-dark: #750e13;
|
|
61
|
+
|
|
62
|
+
--nuraly-color-info: #0f62fe;
|
|
63
|
+
--nuraly-color-info-hover: #0050e6;
|
|
64
|
+
--nuraly-color-info-active: #002d9c;
|
|
65
|
+
--nuraly-color-info-light: #a6c8ff;
|
|
66
|
+
--nuraly-color-info-dark: #002d9c;
|
|
67
|
+
|
|
68
|
+
--nuraly-color-background: #ffffff;
|
|
69
|
+
--nuraly-color-background-hover: #f4f4f4;
|
|
70
|
+
--nuraly-color-background-active: #c6c6c6;
|
|
71
|
+
--nuraly-color-background-disabled: #f4f4f4;
|
|
72
|
+
--nuraly-color-background-overlay: rgba(22, 22, 22, 0.5);
|
|
73
|
+
|
|
74
|
+
--nuraly-color-text: #161616;
|
|
75
|
+
--nuraly-color-text-secondary: #525252;
|
|
76
|
+
--nuraly-color-text-tertiary: #8d8d8d;
|
|
77
|
+
--nuraly-color-text-on-color: #ffffff;
|
|
78
|
+
--nuraly-color-text-disabled: #c6c6c6;
|
|
79
|
+
--nuraly-color-text-inverse: #ffffff;
|
|
80
|
+
|
|
81
|
+
--nuraly-color-border: #e0e0e0;
|
|
82
|
+
--nuraly-color-border-subtle: #f4f4f4;
|
|
83
|
+
--nuraly-color-border-strong: #8d8d8d;
|
|
84
|
+
--nuraly-color-border-inverse: #393939;
|
|
85
|
+
--nuraly-color-border-brand: #0f62fe;
|
|
86
|
+
--nuraly-color-border-danger: #da1e28;
|
|
87
|
+
--nuraly-color-border-success: #198038;
|
|
88
|
+
--nuraly-color-border-warning: #f1c21b;
|
|
89
|
+
|
|
90
|
+
--nuraly-border-radius-none: 0;
|
|
91
|
+
--nuraly-border-radius-xs: 0;
|
|
92
|
+
--nuraly-border-radius-sm: 0;
|
|
93
|
+
--nuraly-border-radius-md: 0;
|
|
94
|
+
--nuraly-border-radius-lg: 0;
|
|
95
|
+
--nuraly-border-radius-xl: 0;
|
|
96
|
+
--nuraly-border-radius-2xl: 0;
|
|
97
|
+
--nuraly-border-radius-full: 0;
|
|
98
|
+
|
|
99
|
+
--nuraly-border-width-0: 0;
|
|
100
|
+
--nuraly-border-width-1: 1px;
|
|
101
|
+
--nuraly-border-width-2: 2px;
|
|
102
|
+
--nuraly-border-width-4: 4px;
|
|
103
|
+
|
|
104
|
+
--nuraly-spacing-01: 0.125rem;
|
|
105
|
+
--nuraly-spacing-02: 0.25rem;
|
|
106
|
+
--nuraly-spacing-03: 0.5rem;
|
|
107
|
+
--nuraly-spacing-04: 0.75rem;
|
|
108
|
+
--nuraly-spacing-05: 1rem;
|
|
109
|
+
--nuraly-spacing-06: 1.5rem;
|
|
110
|
+
--nuraly-spacing-07: 2rem;
|
|
111
|
+
--nuraly-spacing-08: 2.5rem;
|
|
112
|
+
--nuraly-spacing-09: 3rem;
|
|
113
|
+
--nuraly-spacing-10: 4rem;
|
|
114
|
+
--nuraly-spacing-11: 5rem;
|
|
115
|
+
--nuraly-spacing-12: 6rem;
|
|
116
|
+
|
|
117
|
+
--nuraly-shadow-xs: none;
|
|
118
|
+
--nuraly-shadow-sm: none;
|
|
119
|
+
--nuraly-shadow-md: none;
|
|
120
|
+
--nuraly-shadow-lg: none;
|
|
121
|
+
--nuraly-shadow-xl: none;
|
|
122
|
+
--nuraly-shadow-2xl: none;
|
|
123
|
+
--nuraly-shadow-inner: none;
|
|
124
|
+
|
|
125
|
+
--nuraly-focus-outline: 2px solid #0f62fe;
|
|
126
|
+
--nuraly-focus-outline-offset: 1px;
|
|
127
|
+
--nuraly-focus-color: #0f62fe;
|
|
128
|
+
--nuraly-focus-ring: 0 0 0 2px rgba(15, 98, 254, 0.2);
|
|
129
|
+
|
|
130
|
+
--nuraly-size-sm: 2rem;
|
|
131
|
+
--nuraly-size-md: 2.5rem;
|
|
132
|
+
--nuraly-size-lg: 3rem;
|
|
133
|
+
--nuraly-size-xl: 4rem;
|
|
134
|
+
|
|
135
|
+
--nuraly-z-dropdown: 1000;
|
|
136
|
+
--nuraly-z-sticky: 1020;
|
|
137
|
+
--nuraly-z-fixed: 1030;
|
|
138
|
+
--nuraly-z-modal: 1040;
|
|
139
|
+
--nuraly-z-popover: 1050;
|
|
140
|
+
--nuraly-z-tooltip: 1060;
|
|
141
|
+
--nuraly-z-toast: 1070;
|
|
142
|
+
|
|
143
|
+
--nuraly-transition-fast: 110ms;
|
|
144
|
+
--nuraly-transition-normal: 240ms;
|
|
145
|
+
--nuraly-transition-slow: 400ms;
|
|
146
|
+
|
|
147
|
+
--nuraly-ease-linear: linear;
|
|
148
|
+
--nuraly-ease-in: cubic-bezier(0.25, 0, 1, 1);
|
|
149
|
+
--nuraly-ease-out: cubic-bezier(0, 0, 0.25, 1);
|
|
150
|
+
--nuraly-ease-in-out: cubic-bezier(0.25, 0, 0.25, 1);
|
|
151
|
+
|
|
152
|
+
--nuraly-color-surface: #ffffff;
|
|
153
|
+
--nuraly-color-surface-hover: #f4f4f4;
|
|
154
|
+
--nuraly-color-surface-active: #e0e0e0;
|
|
155
|
+
--nuraly-color-surface-disabled: #f4f4f4;
|
|
156
|
+
--nuraly-color-surface-elevated: #ffffff;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
[data-theme="carbon-light"]{
|
|
160
|
+
|
|
161
|
+
--nuraly-color-primary: #0f62fe;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
[data-theme="carbon-dark"],
|
|
165
|
+
html[data-theme="carbon-dark"],
|
|
166
|
+
body[data-theme="carbon-dark"],
|
|
167
|
+
html[data-theme="carbon-dark"] *,
|
|
168
|
+
body[data-theme="carbon-dark"] * {
|
|
169
|
+
|
|
170
|
+
--nuraly-color-primary: #78a9ff !important;
|
|
171
|
+
--nuraly-color-primary-hover: #4589ff !important;
|
|
172
|
+
--nuraly-color-primary-active: #0f62fe !important;
|
|
173
|
+
--nuraly-color-primary-light: #a6c8ff !important;
|
|
174
|
+
--nuraly-color-primary-dark: #002d9c !important;
|
|
175
|
+
|
|
176
|
+
--nuraly-color-secondary: #6f6f6f !important;
|
|
177
|
+
--nuraly-color-secondary-hover: #8d8d8d !important;
|
|
178
|
+
--nuraly-color-secondary-active: #a8a8a8 !important;
|
|
179
|
+
--nuraly-color-secondary-light: #c6c6c6 !important;
|
|
180
|
+
--nuraly-color-secondary-dark: #161616 !important;
|
|
181
|
+
|
|
182
|
+
--nuraly-color-success: #42be65 !important;
|
|
183
|
+
--nuraly-color-success-hover: #24a148 !important;
|
|
184
|
+
--nuraly-color-success-active: #198038 !important;
|
|
185
|
+
--nuraly-color-success-light: #9ef0a9 !important;
|
|
186
|
+
--nuraly-color-success-dark: #0e4b25 !important;
|
|
187
|
+
|
|
188
|
+
--nuraly-color-warning: #f1c21b !important;
|
|
189
|
+
--nuraly-color-warning-hover: #ddb00e !important;
|
|
190
|
+
--nuraly-color-warning-active: #b3900c !important;
|
|
191
|
+
--nuraly-color-warning-light: #fcf4d6 !important;
|
|
192
|
+
--nuraly-color-warning-dark: #b3900c !important;
|
|
193
|
+
|
|
194
|
+
--nuraly-color-danger: #ff8389 !important;
|
|
195
|
+
--nuraly-color-danger-hover: #ff6168 !important;
|
|
196
|
+
--nuraly-color-danger-active: #da1e28 !important;
|
|
197
|
+
--nuraly-color-danger-light: #ffb3b8 !important;
|
|
198
|
+
--nuraly-color-danger-dark: #750e13 !important;
|
|
199
|
+
|
|
200
|
+
--nuraly-color-info: #78a9ff !important;
|
|
201
|
+
--nuraly-color-info-hover: #4589ff !important;
|
|
202
|
+
--nuraly-color-info-active: #0f62fe !important;
|
|
203
|
+
--nuraly-color-info-light: #a6c8ff !important;
|
|
204
|
+
--nuraly-color-info-dark: #002d9c !important;
|
|
205
|
+
|
|
206
|
+
--nuraly-color-background: #161616 !important;
|
|
207
|
+
--nuraly-color-background-hover: #262626 !important;
|
|
208
|
+
--nuraly-color-background-active: #393939 !important;
|
|
209
|
+
--nuraly-color-background-disabled: #262626 !important;
|
|
210
|
+
--nuraly-color-background-overlay: rgba(22, 22, 22, 0.75) !important;
|
|
211
|
+
|
|
212
|
+
--nuraly-color-text: #ffffff !important;
|
|
213
|
+
--nuraly-color-text-secondary: #c6c6c6 !important;
|
|
214
|
+
--nuraly-color-text-tertiary: #8d8d8d !important;
|
|
215
|
+
--nuraly-color-text-on-color: #161616 !important;
|
|
216
|
+
--nuraly-color-text-disabled: #8d8d8d !important;
|
|
217
|
+
--nuraly-color-text-inverse: #161616 !important;
|
|
218
|
+
|
|
219
|
+
--nuraly-color-border: #393939 !important;
|
|
220
|
+
--nuraly-color-border-subtle: #262626 !important;
|
|
221
|
+
--nuraly-color-border-strong: #6f6f6f !important;
|
|
222
|
+
--nuraly-color-border-inverse: #e0e0e0 !important;
|
|
223
|
+
--nuraly-color-border-brand: #78a9ff !important;
|
|
224
|
+
--nuraly-color-border-danger: #ff8389 !important;
|
|
225
|
+
--nuraly-color-border-success: #42be65 !important;
|
|
226
|
+
--nuraly-color-border-warning: #f1c21b !important;
|
|
227
|
+
|
|
228
|
+
--nuraly-focus-outline: 2px solid #78a9ff !important;
|
|
229
|
+
--nuraly-focus-color: #78a9ff !important;
|
|
230
|
+
--nuraly-focus-ring: 0 0 0 2px rgba(120, 169, 255, 0.2) !important;
|
|
231
|
+
|
|
232
|
+
--nuraly-color-surface: #262626 !important;
|
|
233
|
+
--nuraly-color-surface-hover: #393939 !important;
|
|
234
|
+
--nuraly-color-surface-active: #525252 !important;
|
|
235
|
+
--nuraly-color-surface-disabled: #262626 !important;
|
|
236
|
+
--nuraly-color-surface-elevated: #393939 !important;
|
|
237
|
+
|
|
238
|
+
--nuraly-input-border: none;
|
|
239
|
+
--nuraly-input-outline: none;
|
|
240
|
+
|
|
241
|
+
--nuraly-cursor-disabled: not-allowed;
|
|
242
|
+
--nuraly-cursor-interactive: pointer;
|
|
243
|
+
|
|
244
|
+
--nuraly-input-number-icons-width: 24px;
|
|
245
|
+
--nuraly-input-number-icons-height: 24px;
|
|
246
|
+
--nuraly-input-number-icons-container-width: 50px;
|
|
247
|
+
--nuraly-input-number-icons-container-padding-right: 8px;
|
|
248
|
+
--nuraly-number-icons-padding-left: 4px;
|
|
249
|
+
--nuraly-number-icons-padding-right: 4px;
|
|
250
|
+
|
|
251
|
+
--nuraly-password-icon-padding-left: 8px;
|
|
252
|
+
--nuraly-password-icon-padding-right: 8px;
|
|
253
|
+
--nuraly-copy-icon-padding-right: 8px;
|
|
254
|
+
--nuraly-clear-icon-padding-right: 8px;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
/* ==============================================
|
|
258
|
+
* index.css
|
|
259
|
+
* ============================================== */
|
|
260
|
+
|
|
261
|
+
/* ==============================================
|
|
262
|
+
* button/index.css
|
|
263
|
+
* ============================================== */
|
|
264
|
+
|
|
265
|
+
@media screen {
|
|
266
|
+
[data-theme="carbon-dark"] {
|
|
267
|
+
|
|
268
|
+
--theme-mode: dark;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
[data-theme="carbon-light"],
|
|
272
|
+
:root {
|
|
273
|
+
|
|
274
|
+
--theme-mode: light;
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
/* ==============================================
|
|
279
|
+
* button/common.css
|
|
280
|
+
* ============================================== */
|
|
281
|
+
|
|
282
|
+
[data-theme^="carbon"] {
|
|
283
|
+
|
|
284
|
+
--nuraly-color-button-disabled: #c6c6c6;
|
|
285
|
+
--nuraly-color-button-disabled-text: #8d8d8d;
|
|
286
|
+
--nuraly-color-button-disabled-border: #c6c6c6;
|
|
287
|
+
|
|
288
|
+
--nuraly-color-button-focus-outline: #0f62fe;
|
|
289
|
+
--nuraly-color-button-focus-ring: rgba(15, 98, 254, 0.2);
|
|
290
|
+
|
|
291
|
+
--nuraly-shadow-button: none;
|
|
292
|
+
--nuraly-shadow-button-hover: none;
|
|
293
|
+
--nuraly-shadow-button-active: none;
|
|
294
|
+
--nuraly-shadow-button-focus: 0 0 0 2px rgba(15, 98, 254, 0.2);
|
|
295
|
+
|
|
296
|
+
--nuraly-border-radius-button: 0;
|
|
297
|
+
|
|
298
|
+
--nuraly-button-padding-vertical: 0.5rem;
|
|
299
|
+
--nuraly-button-padding-horizontal: 1rem;
|
|
300
|
+
|
|
301
|
+
--nuraly-spacing-2: 0.5rem;
|
|
302
|
+
--nuraly-spacing-4: 1rem;
|
|
303
|
+
|
|
304
|
+
--nuraly-size-sm: 1.5rem;
|
|
305
|
+
--nuraly-size-md: 2rem;
|
|
306
|
+
--nuraly-size-lg: 2.5rem;
|
|
307
|
+
|
|
308
|
+
--nuraly-button-icon-spacing: 0.5rem;
|
|
309
|
+
--nuraly-button-icon-size: 1rem;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
/* ==============================================
|
|
313
|
+
* button/light.css
|
|
314
|
+
* ============================================== */
|
|
315
|
+
|
|
316
|
+
[data-theme="carbon-light"] {
|
|
317
|
+
|
|
318
|
+
--nuraly-color-button-primary: #0f62fe;
|
|
319
|
+
--nuraly-color-button-primary-hover: #0353e9;
|
|
320
|
+
--nuraly-color-button-primary-active: #002d9c;
|
|
321
|
+
--nuraly-color-button-primary-text: #ffffff;
|
|
322
|
+
--nuraly-color-button-primary-text-hover: #ffffff;
|
|
323
|
+
--nuraly-color-button-primary-text-active: #ffffff;
|
|
324
|
+
|
|
325
|
+
--nuraly-color-button-secondary: #8d8d8d;
|
|
326
|
+
--nuraly-color-button-secondary-hover: #6f6f6f;
|
|
327
|
+
--nuraly-color-button-secondary-active: #525252;
|
|
328
|
+
--nuraly-color-button-secondary-text: #ffffff;
|
|
329
|
+
--nuraly-color-button-secondary-text-hover: #ffffff;
|
|
330
|
+
--nuraly-color-button-secondary-text-active: #ffffff;
|
|
331
|
+
|
|
332
|
+
--nuraly-color-button-tertiary: #0f62fe;
|
|
333
|
+
--nuraly-color-button-tertiary-hover: #0353e9;
|
|
334
|
+
--nuraly-color-button-tertiary-active: #002d9c;
|
|
335
|
+
|
|
336
|
+
--nuraly-color-button-danger: #da1e28;
|
|
337
|
+
--nuraly-color-button-danger-hover: #ba1b23;
|
|
338
|
+
--nuraly-color-button-danger-active: #750e13;
|
|
339
|
+
--nuraly-color-button-danger-text: #ffffff;
|
|
340
|
+
--nuraly-color-button-danger-text-hover: #ffffff;
|
|
341
|
+
--nuraly-color-button-danger-text-active: #ffffff;
|
|
342
|
+
|
|
343
|
+
--nuraly-color-button-outline: transparent;
|
|
344
|
+
--nuraly-color-button-outline-hover: #f4f4f4;
|
|
345
|
+
--nuraly-color-button-outline-active: #e0e0e0;
|
|
346
|
+
--nuraly-color-button-outline-text: #0f62fe;
|
|
347
|
+
--nuraly-color-button-outline-text-hover: #0353e9;
|
|
348
|
+
--nuraly-color-button-outline-text-active: #002d9c;
|
|
349
|
+
--nuraly-color-button-outline-border: #0f62fe;
|
|
350
|
+
--nuraly-color-button-outline-border-hover: #0353e9;
|
|
351
|
+
--nuraly-color-button-outline-border-active: #002d9c;
|
|
352
|
+
|
|
353
|
+
--nuraly-color-button-ghost: transparent;
|
|
354
|
+
--nuraly-color-button-ghost-hover: #f4f4f4;
|
|
355
|
+
--nuraly-color-button-ghost-active: #e0e0e0;
|
|
356
|
+
--nuraly-color-button-ghost-text: #161616;
|
|
357
|
+
--nuraly-color-button-ghost-text-hover: #161616;
|
|
358
|
+
--nuraly-color-button-ghost-text-active: #161616;
|
|
359
|
+
|
|
360
|
+
--nuraly-color-button-gradient-bg-start: #0f62fe;
|
|
361
|
+
--nuraly-color-button-gradient-bg-end: #0f62fe;
|
|
362
|
+
--nuraly-color-button-gradient-text: #ffffff;
|
|
363
|
+
|
|
364
|
+
--nuraly-color-button-separator: #e0e0e0;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
/* ==============================================
|
|
368
|
+
* button/dark.css
|
|
369
|
+
* ============================================== */
|
|
370
|
+
|
|
371
|
+
[data-theme="carbon-dark"],
|
|
372
|
+
html[data-theme="carbon-dark"],
|
|
373
|
+
body[data-theme="carbon-dark"],
|
|
374
|
+
html[data-theme="carbon-dark"] *,
|
|
375
|
+
body[data-theme="carbon-dark"] * {
|
|
376
|
+
|
|
377
|
+
--nuraly-color-button-primary: #0362ff !important;
|
|
378
|
+
--nuraly-color-button-primary-hover: #0050e6 !important;
|
|
379
|
+
--nuraly-color-button-primary-active: #002d9c !important;
|
|
380
|
+
--nuraly-color-button-primary-text: #ffffff !important;
|
|
381
|
+
--nuraly-color-button-primary-text-hover: #ffffff !important;
|
|
382
|
+
--nuraly-color-button-primary-text-active: #ffffff !important;
|
|
383
|
+
|
|
384
|
+
--nuraly-color-button-secondary: #8d8d8d !important;
|
|
385
|
+
--nuraly-color-button-secondary-hover: #6f6f6f !important;
|
|
386
|
+
--nuraly-color-button-secondary-active: #525252 !important;
|
|
387
|
+
--nuraly-color-button-secondary-text: #ffffff !important;
|
|
388
|
+
--nuraly-color-button-secondary-text-hover: #ffffff !important;
|
|
389
|
+
--nuraly-color-button-secondary-text-active: #ffffff !important;
|
|
390
|
+
|
|
391
|
+
--nuraly-color-button-tertiary: transparent !important;
|
|
392
|
+
--nuraly-color-button-tertiary-hover: #002d9c !important;
|
|
393
|
+
--nuraly-color-button-tertiary-active: #0050e6 !important;
|
|
394
|
+
|
|
395
|
+
--nuraly-color-button-danger: #da1e28 !important;
|
|
396
|
+
--nuraly-color-button-danger-hover: #ba1b23 !important;
|
|
397
|
+
--nuraly-color-button-danger-active: #750e13 !important;
|
|
398
|
+
--nuraly-color-button-danger-text: #ffffff !important;
|
|
399
|
+
--nuraly-color-button-danger-text-hover: #ffffff !important;
|
|
400
|
+
--nuraly-color-button-danger-text-active: #ffffff !important;
|
|
401
|
+
|
|
402
|
+
--nuraly-color-button-outline: transparent !important;
|
|
403
|
+
--nuraly-color-button-outline-hover: #0f62fe !important;
|
|
404
|
+
--nuraly-color-button-outline-active: #002d9c !important;
|
|
405
|
+
--nuraly-color-button-outline-text: #0f62fe !important;
|
|
406
|
+
--nuraly-color-button-outline-text-hover: #ffffff !important;
|
|
407
|
+
--nuraly-color-button-outline-text-active: #ffffff !important;
|
|
408
|
+
--nuraly-color-button-outline-border: #0f62fe !important;
|
|
409
|
+
--nuraly-color-button-outline-border-hover: #0f62fe !important;
|
|
410
|
+
--nuraly-color-button-outline-border-active: #002d9c !important;
|
|
411
|
+
|
|
412
|
+
--nuraly-color-button-ghost: transparent !important;
|
|
413
|
+
--nuraly-color-button-ghost-hover: #262626 !important;
|
|
414
|
+
--nuraly-color-button-ghost-active: #393939 !important;
|
|
415
|
+
--nuraly-color-button-ghost-text: #0f62fe !important;
|
|
416
|
+
--nuraly-color-button-ghost-text-hover: #0f62fe !important;
|
|
417
|
+
--nuraly-color-button-ghost-text-active: #0f62fe !important;
|
|
418
|
+
|
|
419
|
+
--nuraly-color-button-gradient-bg-start: #0f62fe !important;
|
|
420
|
+
--nuraly-color-button-gradient-bg-end: #0050e6 !important;
|
|
421
|
+
--nuraly-color-button-gradient-text: #ffffff !important;
|
|
422
|
+
|
|
423
|
+
--nuraly-color-button-disabled: #c6c6c6 !important;
|
|
424
|
+
--nuraly-color-button-disabled-text: #8d8d8d !important;
|
|
425
|
+
--nuraly-color-button-disabled-border: #c6c6c6 !important;
|
|
426
|
+
|
|
427
|
+
--nuraly-color-button-separator: #393939 !important;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
[data-theme="carbon-dark"] nr-button,
|
|
431
|
+
html[data-theme="carbon-dark"] nr-button,
|
|
432
|
+
body[data-theme="carbon-dark"] nr-button,
|
|
433
|
+
[data-theme="carbon-dark"] .nr-button,
|
|
434
|
+
html[data-theme="carbon-dark"] .nr-button,
|
|
435
|
+
body[data-theme="carbon-dark"] .nr-button {
|
|
436
|
+
|
|
437
|
+
--button-theme: carbon-dark;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
[data-theme="carbon-dark"] nr-button[type="primary"],
|
|
441
|
+
html[data-theme="carbon-dark"] nr-button[type="primary"],
|
|
442
|
+
body[data-theme="carbon-dark"] nr-button[type="primary"] {
|
|
443
|
+
--current-bg: var(--nuraly-color-button-primary) !important;
|
|
444
|
+
--current-text: var(--nuraly-color-button-primary-text) !important;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
[data-theme="carbon-dark"] nr-button[type="secondary"],
|
|
448
|
+
html[data-theme="carbon-dark"] nr-button[type="secondary"],
|
|
449
|
+
body[data-theme="carbon-dark"] nr-button[type="secondary"] {
|
|
450
|
+
--current-bg: var(--nuraly-color-button-secondary) !important;
|
|
451
|
+
--current-text: var(--nuraly-color-button-secondary-text) !important;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
[data-theme="carbon-dark"] nr-button[type="danger"],
|
|
455
|
+
html[data-theme="carbon-dark"] nr-button[type="danger"],
|
|
456
|
+
body[data-theme="carbon-dark"] nr-button[type="danger"] {
|
|
457
|
+
--current-bg: var(--nuraly-color-button-danger) !important;
|
|
458
|
+
--current-text: var(--nuraly-color-button-danger-text) !important;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
[data-theme="carbon-dark"] nr-button[type="ghost"],
|
|
462
|
+
html[data-theme="carbon-dark"] nr-button[type="ghost"],
|
|
463
|
+
body[data-theme="carbon-dark"] nr-button[type="ghost"] {
|
|
464
|
+
--current-bg: var(--nuraly-color-button-ghost) !important;
|
|
465
|
+
--current-text: var(--nuraly-color-button-ghost-text) !important;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
/* ==============================================
|
|
469
|
+
* input/index.css
|
|
470
|
+
* ============================================== */
|
|
471
|
+
|
|
472
|
+
/* ==============================================
|
|
473
|
+
* input/common.css
|
|
474
|
+
* ============================================== */
|
|
475
|
+
|
|
476
|
+
:root,
|
|
477
|
+
[data-theme="carbon-light"],
|
|
478
|
+
[data-theme="carbon-dark"] {
|
|
479
|
+
|
|
480
|
+
--nuraly-border-width-input: 2px;
|
|
481
|
+
--nuraly-border-radius-input: 0px;
|
|
482
|
+
--nuraly-color-input-border: transparent;
|
|
483
|
+
--nuraly-color-input-border-focus: #0f62fe;
|
|
484
|
+
|
|
485
|
+
--nuraly-size-input-small-height: 32px;
|
|
486
|
+
--nuraly-size-input-medium-height: 40px;
|
|
487
|
+
--nuraly-size-input-large-height: 48px;
|
|
488
|
+
|
|
489
|
+
--nuraly-spacing-input-small-vertical: 4px;
|
|
490
|
+
--nuraly-spacing-input-small-horizontal: 12px;
|
|
491
|
+
--nuraly-spacing-input-medium-vertical: 7px;
|
|
492
|
+
--nuraly-spacing-input-medium-horizontal: 16px;
|
|
493
|
+
--nuraly-spacing-input-large-vertical: 10px;
|
|
494
|
+
--nuraly-spacing-input-large-horizontal: 16px;
|
|
495
|
+
|
|
496
|
+
--nuraly-font-family-input: 'IBM Plex Sans', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
|
|
497
|
+
--nuraly-font-size-input: 14px;
|
|
498
|
+
--nuraly-font-size-input-label: 12px;
|
|
499
|
+
--nuraly-font-size-input-helper: 12px;
|
|
500
|
+
--nuraly-font-size-input-placeholder: 14px;
|
|
501
|
+
|
|
502
|
+
--nuraly-size-input-icon: 16px;
|
|
503
|
+
|
|
504
|
+
--nuraly-border-radius-input-outlined: 4px;
|
|
505
|
+
--nuraly-border-radius-input-filled-top: 4px;
|
|
506
|
+
|
|
507
|
+
--nuraly-spacing-input-label-bottom: 8px;
|
|
508
|
+
--nuraly-spacing-input-helper-top: 8px;
|
|
509
|
+
--nuraly-spacing-input-icon: 8px;
|
|
510
|
+
|
|
511
|
+
--nuraly-color-input-filled-border-bottom: transparent;
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
/* ==============================================
|
|
515
|
+
* input/light.css
|
|
516
|
+
* ============================================== */
|
|
517
|
+
|
|
518
|
+
[data-theme="carbon-light"]{
|
|
519
|
+
|
|
520
|
+
--nuraly-color-input-background: #f4f4f4;
|
|
521
|
+
--nuraly-color-input-text: #161616;
|
|
522
|
+
--nuraly-color-input-placeholder: #a8a8a8;
|
|
523
|
+
--nuraly-color-input-label: #393939;
|
|
524
|
+
--nuraly-color-input-helper-text: #6f6f6f;
|
|
525
|
+
|
|
526
|
+
--nuraly-color-input-text-fallback: rgba(0, 0, 0, 0.88);
|
|
527
|
+
--nuraly-color-input-background-fallback: #ffffff;
|
|
528
|
+
--nuraly-color-input-disabled-text-fallback: rgba(0, 0, 0, 0.25);
|
|
529
|
+
--nuraly-color-input-disabled-background-fallback: #f4f4f4;
|
|
530
|
+
--nuraly-color-input-placeholder-fallback: #a8a8a8;
|
|
531
|
+
--nuraly-color-input-disabled-placeholder-fallback: #c6c6c6;
|
|
532
|
+
|
|
533
|
+
--nuraly-color-input-border: transparent;
|
|
534
|
+
--nuraly-color-input-border-bottom: #8d8d8d;
|
|
535
|
+
--nuraly-color-input-border-focus: #0f62fe;
|
|
536
|
+
--nuraly-border-width-input: 2px;
|
|
537
|
+
--nuraly-border-radius-input: 0px;
|
|
538
|
+
|
|
539
|
+
--nuraly-color-input-disabled-background: #f4f4f4;
|
|
540
|
+
--nuraly-color-input-disabled-text: #c6c6c6;
|
|
541
|
+
--nuraly-color-input-disabled-placeholder: #c6c6c6;
|
|
542
|
+
--nuraly-color-input-disabled-label: #c6c6c6;
|
|
543
|
+
--nuraly-color-input-disabled-helper-text: #c6c6c6;
|
|
544
|
+
|
|
545
|
+
--nuraly-color-input-error-border: #da1e28;
|
|
546
|
+
--nuraly-color-input-error-text: #da1e28;
|
|
547
|
+
--nuraly-color-input-error-icon: #da1e28;
|
|
548
|
+
|
|
549
|
+
--nuraly-color-input-warning-text: #161616;
|
|
550
|
+
--nuraly-color-input-warning-icon: #f1c21b;
|
|
551
|
+
|
|
552
|
+
[data-theme="carbon-light"]{
|
|
553
|
+
|
|
554
|
+
--nuraly-color-input-background: #f4f4f4;
|
|
555
|
+
--nuraly-color-input-text: #161616;
|
|
556
|
+
--nuraly-color-input-placeholder: #a8a8a8;
|
|
557
|
+
--nuraly-color-input-label: #393939;
|
|
558
|
+
--nuraly-color-input-helper-text: #6f6f6f;
|
|
559
|
+
|
|
560
|
+
--nuraly-color-input-text-fallback: rgba(0, 0, 0, 0.88);
|
|
561
|
+
--nuraly-color-input-background-fallback: #ffffff;
|
|
562
|
+
--nuraly-color-input-disabled-text-fallback: rgba(0, 0, 0, 0.25);
|
|
563
|
+
--nuraly-color-input-disabled-background-fallback: #f4f4f4;
|
|
564
|
+
--nuraly-color-input-placeholder-fallback: #a8a8a8;
|
|
565
|
+
--nuraly-color-input-disabled-placeholder-fallback: #c6c6c6;
|
|
566
|
+
|
|
567
|
+
--nuraly-color-input-border-bottom: #8d8d8d;
|
|
568
|
+
|
|
569
|
+
--nuraly-color-input-disabled-background: #f4f4f4;
|
|
570
|
+
--nuraly-color-input-disabled-text: #c6c6c6;
|
|
571
|
+
--nuraly-color-input-disabled-placeholder: #c6c6c6;
|
|
572
|
+
--nuraly-color-input-disabled-label: #c6c6c6;
|
|
573
|
+
--nuraly-color-input-disabled-helper-text: #c6c6c6;
|
|
574
|
+
|
|
575
|
+
--nuraly-color-input-error-border: #da1e28;
|
|
576
|
+
--nuraly-color-input-error-text: #da1e28;
|
|
577
|
+
--nuraly-color-input-error-icon: #da1e28;
|
|
578
|
+
|
|
579
|
+
--nuraly-color-input-warning-text: #161616;
|
|
580
|
+
--nuraly-color-input-warning-icon: #f1c21b;
|
|
581
|
+
|
|
582
|
+
--nuraly-color-input-icon: #393939;
|
|
583
|
+
--nuraly-color-input-password-icon: #393939;
|
|
584
|
+
--nuraly-color-input-calendar-icon: #393939;
|
|
585
|
+
--nuraly-color-input-copy-icon: #393939;
|
|
586
|
+
--nuraly-color-input-clear-icon: #393939;
|
|
587
|
+
--nuraly-color-input-number-icons: #393939;
|
|
588
|
+
|
|
589
|
+
--nuraly-color-input-addon-background: #e0e0e0;
|
|
590
|
+
--nuraly-color-input-addon-text: #393939;
|
|
591
|
+
--nuraly-color-input-prefix-text: #6f6f6f;
|
|
592
|
+
--nuraly-color-input-suffix-text: #6f6f6f;
|
|
593
|
+
|
|
594
|
+
--nuraly-color-input-outlined-border: #8d8d8d;
|
|
595
|
+
--nuraly-color-input-outlined-background: #ffffff;
|
|
596
|
+
--nuraly-color-input-filled-background: #f4f4f4;
|
|
597
|
+
}
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
/* ==============================================
|
|
601
|
+
* input/dark.css
|
|
602
|
+
* ============================================== */
|
|
603
|
+
|
|
604
|
+
[data-theme="carbon-dark"]{
|
|
605
|
+
|
|
606
|
+
--nuraly-color-input-background: #393939;
|
|
607
|
+
--nuraly-color-input-text: #f4f4f4;
|
|
608
|
+
--nuraly-color-input-placeholder: #a8a8a8;
|
|
609
|
+
--nuraly-color-input-label: #c6c6c6;
|
|
610
|
+
--nuraly-color-input-helper-text: #8d8d8d;
|
|
611
|
+
|
|
612
|
+
--nuraly-color-input-text-fallback: #f4f4f4;
|
|
613
|
+
--nuraly-color-input-background-fallback: #393939;
|
|
614
|
+
--nuraly-color-input-disabled-text-fallback: #6f6f6f;
|
|
615
|
+
--nuraly-color-input-disabled-background-fallback: #393939;
|
|
616
|
+
--nuraly-color-input-placeholder-fallback: #a8a8a8;
|
|
617
|
+
--nuraly-color-input-disabled-placeholder-fallback: #6f6f6f;
|
|
618
|
+
|
|
619
|
+
--nuraly-color-input-border: transparent;
|
|
620
|
+
--nuraly-color-input-border-bottom: #6f6f6f;
|
|
621
|
+
--nuraly-color-input-border-focus: #0f62fe;
|
|
622
|
+
--nuraly-border-width-input: 2px;
|
|
623
|
+
--nuraly-border-radius-input: 0px;
|
|
624
|
+
|
|
625
|
+
--nuraly-color-input-disabled-background: #393939;
|
|
626
|
+
--nuraly-color-input-disabled-text: #6f6f6f;
|
|
627
|
+
--nuraly-color-input-disabled-placeholder: #6f6f6f;
|
|
628
|
+
--nuraly-color-input-disabled-label: #6f6f6f;
|
|
629
|
+
--nuraly-color-input-disabled-helper-text: #6f6f6f;
|
|
630
|
+
|
|
631
|
+
--nuraly-color-input-error-border: #fa4d56;
|
|
632
|
+
--nuraly-color-input-error-text: #ffb3b8;
|
|
633
|
+
--nuraly-color-input-error-icon: #fa4d56;
|
|
634
|
+
|
|
635
|
+
--nuraly-color-input-warning-text: #f4f4f4;
|
|
636
|
+
--nuraly-color-input-warning-icon: #f1c21b;
|
|
637
|
+
|
|
638
|
+
[data-theme="carbon-dark"]{
|
|
639
|
+
|
|
640
|
+
--nuraly-color-input-background: #393939;
|
|
641
|
+
--nuraly-color-input-text: #f4f4f4;
|
|
642
|
+
--nuraly-color-input-placeholder: #a8a8a8;
|
|
643
|
+
--nuraly-color-input-label: #c6c6c6;
|
|
644
|
+
--nuraly-color-input-helper-text: #8d8d8d;
|
|
645
|
+
|
|
646
|
+
--nuraly-color-input-text-fallback: #f4f4f4;
|
|
647
|
+
--nuraly-color-input-background-fallback: #393939;
|
|
648
|
+
--nuraly-color-input-disabled-text-fallback: #6f6f6f;
|
|
649
|
+
--nuraly-color-input-disabled-background-fallback: #393939;
|
|
650
|
+
--nuraly-color-input-placeholder-fallback: #a8a8a8;
|
|
651
|
+
--nuraly-color-input-disabled-placeholder-fallback: #6f6f6f;
|
|
652
|
+
|
|
653
|
+
--nuraly-color-input-border-bottom: #6f6f6f;
|
|
654
|
+
|
|
655
|
+
--nuraly-color-input-disabled-background: #393939;
|
|
656
|
+
--nuraly-color-input-disabled-text: #6f6f6f;
|
|
657
|
+
--nuraly-color-input-disabled-placeholder: #6f6f6f;
|
|
658
|
+
--nuraly-color-input-disabled-label: #6f6f6f;
|
|
659
|
+
--nuraly-color-input-disabled-helper-text: #6f6f6f;
|
|
660
|
+
|
|
661
|
+
--nuraly-color-input-error-border: #fa4d56;
|
|
662
|
+
--nuraly-color-input-error-text: #ffb3b8;
|
|
663
|
+
--nuraly-color-input-error-icon: #fa4d56;
|
|
664
|
+
|
|
665
|
+
--nuraly-color-input-warning-text: #f4f4f4;
|
|
666
|
+
--nuraly-color-input-warning-icon: #f1c21b;
|
|
667
|
+
|
|
668
|
+
--nuraly-color-input-icon: #c6c6c6;
|
|
669
|
+
--nuraly-color-input-password-icon: #c6c6c6;
|
|
670
|
+
--nuraly-color-input-calendar-icon: #c6c6c6;
|
|
671
|
+
--nuraly-color-input-copy-icon: #c6c6c6;
|
|
672
|
+
--nuraly-color-input-clear-icon: #c6c6c6;
|
|
673
|
+
--nuraly-color-input-number-icons: #c6c6c6;
|
|
674
|
+
|
|
675
|
+
--nuraly-color-input-addon-background: #525252;
|
|
676
|
+
--nuraly-color-input-addon-text: #f4f4f4;
|
|
677
|
+
--nuraly-color-input-prefix-text: #8d8d8d;
|
|
678
|
+
--nuraly-color-input-suffix-text: #8d8d8d;
|
|
679
|
+
|
|
680
|
+
--nuraly-color-input-outlined-border: #6f6f6f;
|
|
681
|
+
--nuraly-color-input-outlined-background: #262626;
|
|
682
|
+
--nuraly-color-input-filled-background: #393939;
|
|
683
|
+
}
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
/* ==============================================
|
|
687
|
+
* icon/index.css
|
|
688
|
+
* ============================================== */
|
|
689
|
+
|
|
690
|
+
/* ==============================================
|
|
691
|
+
* icon/common.css
|
|
692
|
+
* ============================================== */
|
|
693
|
+
|
|
694
|
+
:root,
|
|
695
|
+
[data-theme="carbon-light"],
|
|
696
|
+
[data-theme="carbon-dark"] {
|
|
697
|
+
|
|
698
|
+
--nuraly-icon-size: 20px;
|
|
699
|
+
--nuraly-icon-size-fallback: 18px;
|
|
700
|
+
--nuraly-icon-size-small: 14px;
|
|
701
|
+
--nuraly-icon-size-small-fallback: 14px;
|
|
702
|
+
--nuraly-icon-size-medium: 20px;
|
|
703
|
+
--nuraly-icon-size-medium-fallback: 20px;
|
|
704
|
+
--nuraly-icon-size-large: 24px;
|
|
705
|
+
--nuraly-icon-size-large-fallback: 24px;
|
|
706
|
+
--nuraly-icon-size-xlarge: 32px;
|
|
707
|
+
--nuraly-icon-size-xlarge-fallback: 32px;
|
|
708
|
+
--nuraly-icon-size-xxlarge: 40px;
|
|
709
|
+
--nuraly-icon-size-xxlarge-fallback: 40px;
|
|
710
|
+
--nuraly-icon-min-size: 12px;
|
|
711
|
+
--nuraly-icon-min-size-fallback: 12px;
|
|
712
|
+
|
|
713
|
+
--nuraly-icon-disabled-opacity: 0.25;
|
|
714
|
+
--nuraly-icon-disabled-opacity-fallback: 0.25;
|
|
715
|
+
|
|
716
|
+
--nuraly-icon-focus-outline-offset: 1px;
|
|
717
|
+
--nuraly-icon-focus-outline-offset-fallback: 2px;
|
|
718
|
+
--nuraly-icon-focus-background: transparent;
|
|
719
|
+
--nuraly-icon-focus-border-radius: 0px;
|
|
720
|
+
--nuraly-icon-focus-border-radius-fallback: 4px;
|
|
721
|
+
--nuraly-icon-focus-shadow: none;
|
|
722
|
+
--nuraly-icon-focus-shadow-fallback: none;
|
|
723
|
+
|
|
724
|
+
--nuraly-icon-transition: opacity 0.2s ease, transform 0.2s ease, fill 0.2s ease;
|
|
725
|
+
--nuraly-icon-transition-fallback: opacity 0.2s ease, transform 0.2s ease, fill 0.2s ease;
|
|
726
|
+
--nuraly-icon-hover-opacity: 0.8;
|
|
727
|
+
--nuraly-icon-hover-opacity-fallback: 0.8;
|
|
728
|
+
--nuraly-icon-hover-transform: scale(1.0625);
|
|
729
|
+
--nuraly-icon-hover-transform-fallback: scale(1.05);
|
|
730
|
+
--nuraly-icon-active-opacity: 0.6;
|
|
731
|
+
--nuraly-icon-active-opacity-fallback: 0.6;
|
|
732
|
+
--nuraly-icon-active-transform: scale(0.9375);
|
|
733
|
+
--nuraly-icon-active-transform-fallback: scale(0.95);
|
|
734
|
+
|
|
735
|
+
--nuraly-color-error: #da1e28;
|
|
736
|
+
--nuraly-color-warning: #f1c21b;
|
|
737
|
+
--nuraly-color-success: #24a148;
|
|
738
|
+
--nuraly-color-info: #0f62fe;
|
|
739
|
+
|
|
740
|
+
--nuraly-cursor-default: default;
|
|
741
|
+
--nuraly-cursor-interactive: pointer;
|
|
742
|
+
--nuraly-cursor-disabled: not-allowed;
|
|
743
|
+
|
|
744
|
+
--nuraly-font-family-icon: 'IBM Plex Sans', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
/* ==============================================
|
|
748
|
+
* icon/light.css
|
|
749
|
+
* ============================================== */
|
|
750
|
+
|
|
751
|
+
[data-theme="carbon-light"]{
|
|
752
|
+
|
|
753
|
+
--nuraly-color-icon: #161616;
|
|
754
|
+
--nuraly-color-icon-fallback: #161616;
|
|
755
|
+
|
|
756
|
+
--nuraly-color-icon-hover: #0f62fe;
|
|
757
|
+
--nuraly-color-icon-hover-fallback: #0f62fe;
|
|
758
|
+
--nuraly-color-icon-active: #054ada;
|
|
759
|
+
--nuraly-color-icon-active-fallback: #054ada;
|
|
760
|
+
|
|
761
|
+
--nuraly-color-icon-disabled: #c6c6c6;
|
|
762
|
+
--nuraly-color-icon-disabled-fallback: #c6c6c6;
|
|
763
|
+
|
|
764
|
+
--nuraly-color-icon-focus: #0f62fe;
|
|
765
|
+
--nuraly-icon-focus-outline: 2px solid #0f62fe;
|
|
766
|
+
--nuraly-icon-focus-outline-fallback: 2px solid #0f62fe;
|
|
767
|
+
--nuraly-icon-focus-background-fallback: rgba(15, 98, 254, 0.1);
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
html[data-theme="carbon-light"] nr-icon .svg-icon.clickable:focus,
|
|
771
|
+
body[data-theme="carbon-light"] nr-icon .svg-icon.clickable:focus,
|
|
772
|
+
[data-theme="carbon-light"] nr-icon .svg-icon.clickable:focus {
|
|
773
|
+
outline: 2px solid #0f62fe !important;
|
|
774
|
+
outline-offset: 1px !important;
|
|
775
|
+
background: none !important;
|
|
776
|
+
border-radius: 0 !important;
|
|
777
|
+
}
|
|
778
|
+
|
|
779
|
+
html[data-theme="carbon-light"] nr-icon[size='small'] .svg-icon,
|
|
780
|
+
body[data-theme="carbon-light"] nr-icon[size='small'] .svg-icon,
|
|
781
|
+
[data-theme="carbon-light"] nr-icon[size='small'] .svg-icon {
|
|
782
|
+
width: 16px !important;
|
|
783
|
+
height: 16px !important;
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
html[data-theme="carbon-light"] nr-icon[size='medium'] .svg-icon,
|
|
787
|
+
body[data-theme="carbon-light"] nr-icon[size='medium'] .svg-icon,
|
|
788
|
+
[data-theme="carbon-light"] nr-icon[size='medium'] .svg-icon {
|
|
789
|
+
width: 20px !important;
|
|
790
|
+
height: 20px !important;
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
html[data-theme="carbon-light"] nr-icon[size='large'] .svg-icon,
|
|
794
|
+
body[data-theme="carbon-light"] nr-icon[size='large'] .svg-icon,
|
|
795
|
+
[data-theme="carbon-light"] nr-icon[size='large'] .svg-icon {
|
|
796
|
+
width: 24px !important;
|
|
797
|
+
height: 24px !important;
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
/* ==============================================
|
|
801
|
+
* icon/dark.css
|
|
802
|
+
* ============================================== */
|
|
803
|
+
|
|
804
|
+
[data-theme="carbon-dark"]{
|
|
805
|
+
|
|
806
|
+
--nuraly-color-icon: #a6a6a6;
|
|
807
|
+
--nuraly-color-icon-fallback: #f4f4f4;
|
|
808
|
+
|
|
809
|
+
--nuraly-color-icon-hover: #78a9ff;
|
|
810
|
+
--nuraly-color-icon-hover-fallback: #78a9ff;
|
|
811
|
+
--nuraly-color-icon-active: #a6c8ff;
|
|
812
|
+
--nuraly-color-icon-active-fallback: #a6c8ff;
|
|
813
|
+
|
|
814
|
+
--nuraly-color-icon-disabled: #6f6f6f;
|
|
815
|
+
--nuraly-color-icon-disabled-fallback: #6f6f6f;
|
|
816
|
+
|
|
817
|
+
--nuraly-color-icon-focus: #78a9ff;
|
|
818
|
+
--nuraly-icon-focus-outline: 2px solid #78a9ff;
|
|
819
|
+
--nuraly-icon-focus-outline-fallback: 2px solid #78a9ff;
|
|
820
|
+
--nuraly-icon-focus-background-fallback: rgba(120, 169, 255, 0.1);
|
|
821
|
+
|
|
822
|
+
--nuraly-color-error: #fa4d56;
|
|
823
|
+
--nuraly-color-success: #42be65;
|
|
824
|
+
--nuraly-color-info: #78a9ff;
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
html[data-theme="carbon-dark"] nr-icon .svg-icon.clickable:focus,
|
|
828
|
+
body[data-theme="carbon-dark"] nr-icon .svg-icon.clickable:focus,
|
|
829
|
+
[data-theme="carbon-dark"] nr-icon .svg-icon.clickable:focus {
|
|
830
|
+
outline: 2px solid #78a9ff !important;
|
|
831
|
+
outline-offset: 1px !important;
|
|
832
|
+
background: none !important;
|
|
833
|
+
border-radius: 0 !important;
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
html[data-theme="carbon-dark"] nr-icon[size='small'] .svg-icon,
|
|
837
|
+
body[data-theme="carbon-dark"] nr-icon[size='small'] .svg-icon,
|
|
838
|
+
[data-theme="carbon-dark"] nr-icon[size='small'] .svg-icon {
|
|
839
|
+
width: 16px !important;
|
|
840
|
+
height: 16px !important;
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
html[data-theme="carbon-dark"] nr-icon[size='medium'] .svg-icon,
|
|
844
|
+
body[data-theme="carbon-dark"] nr-icon[size='medium'] .svg-icon,
|
|
845
|
+
[data-theme="carbon-dark"] nr-icon[size='medium'] .svg-icon {
|
|
846
|
+
width: 20px !important;
|
|
847
|
+
height: 20px !important;
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
html[data-theme="carbon-dark"] nr-icon[size='large'] .svg-icon,
|
|
851
|
+
body[data-theme="carbon-dark"] nr-icon[size='large'] .svg-icon,
|
|
852
|
+
[data-theme="carbon-dark"] nr-icon[size='large'] .svg-icon {
|
|
853
|
+
width: 24px !important;
|
|
854
|
+
height: 24px !important;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
/* ==============================================
|
|
858
|
+
* checkbox/index.css
|
|
859
|
+
* ============================================== */
|
|
860
|
+
|
|
861
|
+
@media screen {
|
|
862
|
+
[data-theme="carbon-dark"] {
|
|
863
|
+
|
|
864
|
+
--theme-mode: dark;
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
[data-theme="carbon-light"]
|
|
868
|
+
:root {
|
|
869
|
+
|
|
870
|
+
--theme-mode: light;
|
|
871
|
+
}
|
|
872
|
+
}
|
|
873
|
+
|
|
874
|
+
/* ==============================================
|
|
875
|
+
* checkbox/common.css
|
|
876
|
+
* ============================================== */
|
|
877
|
+
|
|
878
|
+
:root,
|
|
879
|
+
[data-theme="carbon-light"],
|
|
880
|
+
[data-theme="carbon-dark"] {
|
|
881
|
+
|
|
882
|
+
--nuraly-border-width-checkbox: 1px;
|
|
883
|
+
--nuraly-border-radius-checkbox: 0px;
|
|
884
|
+
|
|
885
|
+
--nuraly-color-checkbox-border-focus: #0f62fe;
|
|
886
|
+
--nuraly-color-checkbox-border-hover: #0f62fe;
|
|
887
|
+
--nuraly-color-checkbox-checked-background: #0f62fe;
|
|
888
|
+
--nuraly-color-checkbox-checked-border: #0f62fe;
|
|
889
|
+
--nuraly-color-checkbox-checkmark: #ffffff;
|
|
890
|
+
--nuraly-color-checkbox-indeterminate-background: #0f62fe;
|
|
891
|
+
--nuraly-color-checkbox-indeterminate-mark: #ffffff;
|
|
892
|
+
|
|
893
|
+
--nuraly-size-checkbox-small: 16px;
|
|
894
|
+
--nuraly-size-checkbox-medium: 20px;
|
|
895
|
+
--nuraly-size-checkbox-large: 24px;
|
|
896
|
+
|
|
897
|
+
--nuraly-spacing-checkbox-gap: 8px;
|
|
898
|
+
--nuraly-spacing-checkbox-padding: 0px;
|
|
899
|
+
|
|
900
|
+
--nuraly-size-checkbox-focus-outline: 2px;
|
|
901
|
+
|
|
902
|
+
--nuraly-font-family-checkbox: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
|
|
903
|
+
--nuraly-font-size-checkbox: 14px;
|
|
904
|
+
--nuraly-font-weight-checkbox: 400;
|
|
905
|
+
--nuraly-line-height-checkbox: 1.29;
|
|
906
|
+
|
|
907
|
+
--nuraly-transition-checkbox: all 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
/* ==============================================
|
|
911
|
+
* checkbox/light.css
|
|
912
|
+
* ============================================== */
|
|
913
|
+
|
|
914
|
+
[data-theme="carbon-light"]{
|
|
915
|
+
|
|
916
|
+
--nuraly-color-checkbox-background: #ffffff;
|
|
917
|
+
--nuraly-color-checkbox-text: #161616;
|
|
918
|
+
--nuraly-color-checkbox-label: #161616;
|
|
919
|
+
|
|
920
|
+
--nuraly-color-checkbox-border: #8d8d8d;
|
|
921
|
+
|
|
922
|
+
--nuraly-color-checkbox-disabled-background: #f4f4f4;
|
|
923
|
+
--nuraly-color-checkbox-disabled-border: #c6c6c6;
|
|
924
|
+
--nuraly-color-checkbox-disabled-text: #c6c6c6;
|
|
925
|
+
--nuraly-color-checkbox-disabled-checkmark: #c6c6c6;
|
|
926
|
+
|
|
927
|
+
--nuraly-color-checkbox-focus-outline: rgba(15, 98, 254, 0.2);
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
/* ==============================================
|
|
931
|
+
* checkbox/dark.css
|
|
932
|
+
* ============================================== */
|
|
933
|
+
|
|
934
|
+
[data-theme="carbon-dark"],
|
|
935
|
+
html[data-theme="carbon-dark"],
|
|
936
|
+
body[data-theme="carbon-dark"],
|
|
937
|
+
html[data-theme="carbon-dark"] *,
|
|
938
|
+
body[data-theme="carbon-dark"] * {
|
|
939
|
+
|
|
940
|
+
--nuraly-color-checkbox-background: #161616;
|
|
941
|
+
--nuraly-color-checkbox-text: #f4f4f4;
|
|
942
|
+
--nuraly-color-checkbox-label: #f4f4f4;
|
|
943
|
+
|
|
944
|
+
--nuraly-color-checkbox-border: #6f6f6f;
|
|
945
|
+
|
|
946
|
+
--nuraly-color-checkbox-disabled-background: #262626;
|
|
947
|
+
--nuraly-color-checkbox-disabled-border: #525252;
|
|
948
|
+
--nuraly-color-checkbox-disabled-text: #525252;
|
|
949
|
+
--nuraly-color-checkbox-disabled-checkmark: #525252;
|
|
950
|
+
|
|
951
|
+
--nuraly-color-checkbox-focus-outline: rgba(15, 98, 254, 0.4);
|
|
952
|
+
|
|
953
|
+
--nuraly-color-checkbox-background: transparent;
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
/* ==============================================
|
|
957
|
+
* radio/index.css
|
|
958
|
+
* ============================================== */
|
|
959
|
+
|
|
960
|
+
/* ==============================================
|
|
961
|
+
* radio/common.css
|
|
962
|
+
* ============================================== */
|
|
963
|
+
|
|
964
|
+
:root,
|
|
965
|
+
[data-theme="carbon-light"],
|
|
966
|
+
[data-theme="carbon-dark"] {
|
|
967
|
+
|
|
968
|
+
--nuraly-border-width-radio: 1px;
|
|
969
|
+
|
|
970
|
+
--nuraly-color-radio-warning-icon: #f1c21b;
|
|
971
|
+
|
|
972
|
+
--nuraly-size-radio-small: 16px;
|
|
973
|
+
--nuraly-size-radio-medium: 20px;
|
|
974
|
+
--nuraly-size-radio-large: 24px;
|
|
975
|
+
|
|
976
|
+
--nuraly-font-family-radio: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
977
|
+
--nuraly-font-size-radio-label: 14px;
|
|
978
|
+
--nuraly-font-size-radio-message: 12px;
|
|
979
|
+
|
|
980
|
+
--nuraly-border-radius-radio: 8px;
|
|
981
|
+
--nuraly-border-radius-radio-dot: 6px;
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
[data-theme="carbon-light"] .radio-circle,
|
|
985
|
+
[data-theme="carbon-dark"] .radio-circle {
|
|
986
|
+
border-radius: var(--nuraly-border-radius-radio, 8px);
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
[data-theme="carbon-light"] .radio-circle::after,
|
|
990
|
+
[data-theme="carbon-dark"] .radio-circle::after {
|
|
991
|
+
border-radius: var(--nuraly-border-radius-radio-dot, 6px);
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
/* ==============================================
|
|
995
|
+
* radio/light.css
|
|
996
|
+
* ============================================== */
|
|
997
|
+
|
|
998
|
+
[data-theme="carbon-light"]{
|
|
999
|
+
|
|
1000
|
+
--nuraly-color-radio-background: #ffffff;
|
|
1001
|
+
--nuraly-color-radio-text: #161616;
|
|
1002
|
+
--nuraly-color-radio-label: #161616;
|
|
1003
|
+
|
|
1004
|
+
--nuraly-color-radio-border: #8d8d8d;
|
|
1005
|
+
--nuraly-color-radio-border-focus: #0f62fe;
|
|
1006
|
+
--nuraly-color-radio-border-hover: #0f62fe;
|
|
1007
|
+
--nuraly-border-width-radio: 1px;
|
|
1008
|
+
|
|
1009
|
+
--nuraly-color-radio-checked-border: #0f62fe;
|
|
1010
|
+
--nuraly-color-radio-dot: #0f62fe;
|
|
1011
|
+
--nuraly-color-radio-hover-enhanced: #0353e9;
|
|
1012
|
+
|
|
1013
|
+
--nuraly-color-radio-error-border: #da1e28;
|
|
1014
|
+
--nuraly-color-radio-error-icon: #da1e28;
|
|
1015
|
+
--nuraly-color-radio-error-text: #da1e28;
|
|
1016
|
+
|
|
1017
|
+
[data-theme="carbon-light"]{
|
|
1018
|
+
|
|
1019
|
+
--nuraly-color-radio-background: #ffffff;
|
|
1020
|
+
--nuraly-color-radio-text: #161616;
|
|
1021
|
+
--nuraly-color-radio-label: #161616;
|
|
1022
|
+
|
|
1023
|
+
--nuraly-color-radio-border: #8d8d8d;
|
|
1024
|
+
--nuraly-color-radio-border-focus: #0f62fe;
|
|
1025
|
+
--nuraly-color-radio-border-hover: #0f62fe;
|
|
1026
|
+
|
|
1027
|
+
--nuraly-color-radio-checked-border: #0f62fe;
|
|
1028
|
+
--nuraly-color-radio-dot: #0f62fe;
|
|
1029
|
+
--nuraly-color-radio-hover-enhanced: #0353e9;
|
|
1030
|
+
|
|
1031
|
+
--nuraly-color-radio-error-border: #da1e28;
|
|
1032
|
+
--nuraly-color-radio-error-icon: #da1e28;
|
|
1033
|
+
--nuraly-color-radio-error-text: #da1e28;
|
|
1034
|
+
|
|
1035
|
+
--nuraly-color-radio-disabled-background: #f4f4f4;
|
|
1036
|
+
--nuraly-color-radio-disabled-border: #c6c6c6;
|
|
1037
|
+
--nuraly-color-radio-disabled-text: #c6c6c6;
|
|
1038
|
+
--nuraly-color-radio-disabled-dot: #c6c6c6;
|
|
1039
|
+
|
|
1040
|
+
--nuraly-color-radio-focus-outline: rgba(15, 98, 254, 0.4);
|
|
1041
|
+
--nuraly-color-radio-hover-ring: rgba(15, 98, 254, 0.1);
|
|
1042
|
+
--nuraly-color-radio-ripple: rgba(15, 98, 254, 0.2);
|
|
1043
|
+
}
|
|
1044
|
+
}
|
|
1045
|
+
|
|
1046
|
+
/* ==============================================
|
|
1047
|
+
* radio/dark.css
|
|
1048
|
+
* ============================================== */
|
|
1049
|
+
|
|
1050
|
+
[data-theme="carbon-dark"]{
|
|
1051
|
+
|
|
1052
|
+
--nuraly-color-radio-background: #262626;
|
|
1053
|
+
--nuraly-color-radio-text: #f4f4f4;
|
|
1054
|
+
--nuraly-color-radio-label: #f4f4f4;
|
|
1055
|
+
|
|
1056
|
+
--nuraly-color-radio-border: #8d8d8d;
|
|
1057
|
+
--nuraly-color-radio-border-focus: #78a9ff;
|
|
1058
|
+
--nuraly-color-radio-border-hover: #78a9ff;
|
|
1059
|
+
|
|
1060
|
+
--nuraly-color-radio-checked-border: #78a9ff;
|
|
1061
|
+
--nuraly-color-radio-dot: #78a9ff;
|
|
1062
|
+
--nuraly-color-radio-hover-enhanced: #a6c8ff;
|
|
1063
|
+
|
|
1064
|
+
--nuraly-color-radio-error-border: #fa4d56;
|
|
1065
|
+
--nuraly-color-radio-error-icon: #fa4d56;
|
|
1066
|
+
--nuraly-color-radio-error-text: #fa4d56;
|
|
1067
|
+
|
|
1068
|
+
--nuraly-color-radio-disabled-background: #262626;
|
|
1069
|
+
--nuraly-color-radio-disabled-border: #525252;
|
|
1070
|
+
--nuraly-color-radio-disabled-text: #525252;
|
|
1071
|
+
--nuraly-color-radio-disabled-dot: #525252;
|
|
1072
|
+
|
|
1073
|
+
--nuraly-color-radio-focus-outline: rgba(120, 169, 255, 0.4);
|
|
1074
|
+
--nuraly-color-radio-hover-ring: rgba(120, 169, 255, 0.1);
|
|
1075
|
+
--nuraly-color-radio-ripple: rgba(120, 169, 255, 0.2);
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
/* ==============================================
|
|
1079
|
+
* select/index.css
|
|
1080
|
+
* ============================================== */
|
|
1081
|
+
|
|
1082
|
+
/* ==============================================
|
|
1083
|
+
* select/common.css
|
|
1084
|
+
* ============================================== */
|
|
1085
|
+
|
|
1086
|
+
[data-theme^="carbon"] {
|
|
1087
|
+
|
|
1088
|
+
--nuraly-select-border-width: 1px;
|
|
1089
|
+
--nuraly-select-border-radius: 0px;
|
|
1090
|
+
|
|
1091
|
+
--nuraly-select-dropdown-z-index: 9999;
|
|
1092
|
+
--nuraly-select-dropdown-max-height: 200px;
|
|
1093
|
+
--nuraly-select-dropdown-border-radius: 0px;
|
|
1094
|
+
--nuraly-select-dropdown-border-width: 1px;
|
|
1095
|
+
|
|
1096
|
+
--nuraly-select-option-padding: 11px 16px;
|
|
1097
|
+
--nuraly-select-option-min-height: 40px;
|
|
1098
|
+
|
|
1099
|
+
--nuraly-select-warning-border-color: #f1c21b;
|
|
1100
|
+
--nuraly-select-warning-text-color: #f1c21b;
|
|
1101
|
+
|
|
1102
|
+
--nuraly-select-disabled-opacity: 1;
|
|
1103
|
+
|
|
1104
|
+
--nuraly-select-icon-size: 16px;
|
|
1105
|
+
--nuraly-select-arrow-icon-size: 16px;
|
|
1106
|
+
|
|
1107
|
+
--nuraly-select-tag-border-radius: 2px;
|
|
1108
|
+
|
|
1109
|
+
--nuraly-select-font-family: 'IBM Plex Sans', sans-serif;
|
|
1110
|
+
--nuraly-select-font-size: 14px;
|
|
1111
|
+
--nuraly-select-line-height: 1.28572;
|
|
1112
|
+
|
|
1113
|
+
--nuraly-select-min-height: 40px;
|
|
1114
|
+
--nuraly-select-padding: 11px 16px;
|
|
1115
|
+
--nuraly-select-small-height: 28px;
|
|
1116
|
+
--nuraly-select-small-font-size: 12px;
|
|
1117
|
+
--nuraly-select-small-padding: 7px 16px;
|
|
1118
|
+
--nuraly-select-medium-height: 44px;
|
|
1119
|
+
--nuraly-select-medium-font-size: 14px;
|
|
1120
|
+
--nuraly-select-medium-padding: 11px 16px;
|
|
1121
|
+
--nuraly-select-large-height: 48px;
|
|
1122
|
+
--nuraly-select-large-font-size: 16px;
|
|
1123
|
+
--nuraly-select-large-padding: 13px 16px;
|
|
1124
|
+
|
|
1125
|
+
--nuraly-select-transition-duration: 70ms;
|
|
1126
|
+
--nuraly-select-transition-timing: cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
1127
|
+
--nuraly-select-dropdown-animation-duration: 110ms;
|
|
1128
|
+
}
|
|
1129
|
+
|
|
1130
|
+
/* ==============================================
|
|
1131
|
+
* select/light.css
|
|
1132
|
+
* ============================================== */
|
|
1133
|
+
|
|
1134
|
+
[data-theme="carbon-light"] {
|
|
1135
|
+
|
|
1136
|
+
--nuraly-select-background-color: #ffffff;
|
|
1137
|
+
--nuraly-select-text-color: #161616;
|
|
1138
|
+
--nuraly-select-placeholder-color: #6f6f6f;
|
|
1139
|
+
|
|
1140
|
+
--nuraly-select-border-color: #8d8d8d;
|
|
1141
|
+
--nuraly-select-border-focus: #0f62fe;
|
|
1142
|
+
--nuraly-select-border-hover: #0f62fe;
|
|
1143
|
+
|
|
1144
|
+
--nuraly-select-dropdown-background: #ffffff;
|
|
1145
|
+
--nuraly-select-dropdown-border-color: #e0e0e0;
|
|
1146
|
+
--nuraly-select-dropdown-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
|
|
1147
|
+
|
|
1148
|
+
--nuraly-select-option-hover-background: #e8e8e8;
|
|
1149
|
+
--nuraly-select-option-selected-background: #e0e0e0;
|
|
1150
|
+
--nuraly-select-option-selected-color: #0f62fe;
|
|
1151
|
+
--nuraly-select-option-text-color: #161616;
|
|
1152
|
+
|
|
1153
|
+
--nuraly-select-error-border-color: #da1e28;
|
|
1154
|
+
--nuraly-select-error-text-color: #da1e28;
|
|
1155
|
+
|
|
1156
|
+
--nuraly-select-success-border-color: #24a148;
|
|
1157
|
+
--nuraly-select-success-text-color: #24a148;
|
|
1158
|
+
|
|
1159
|
+
--nuraly-select-disabled-background: #f4f4f4;
|
|
1160
|
+
--nuraly-select-disabled-border-color: #c6c6c6;
|
|
1161
|
+
--nuraly-select-disabled-text-color: #c6c6c6;
|
|
1162
|
+
|
|
1163
|
+
--nuraly-select-icon-color: #6f6f6f;
|
|
1164
|
+
--nuraly-select-icon-hover-color: #0f62fe;
|
|
1165
|
+
|
|
1166
|
+
--nuraly-select-tag-background: #e8e8e8;
|
|
1167
|
+
--nuraly-select-tag-color: #161616;
|
|
1168
|
+
--nuraly-select-tag-close-color: #6f6f6f;
|
|
1169
|
+
--nuraly-select-tag-close-hover-color: #da1e28;
|
|
1170
|
+
|
|
1171
|
+
--nuraly-select-focus-outline: rgba(15, 98, 254, 0.4);
|
|
1172
|
+
--nuraly-select-hover-ring: rgba(15, 98, 254, 0.1);
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
/* ==============================================
|
|
1176
|
+
* select/dark.css
|
|
1177
|
+
* ============================================== */
|
|
1178
|
+
|
|
1179
|
+
[data-theme="carbon-dark"] {
|
|
1180
|
+
|
|
1181
|
+
--nuraly-select-background-color: #262626;
|
|
1182
|
+
--nuraly-select-text-color: #f4f4f4;
|
|
1183
|
+
--nuraly-select-placeholder-color: #a8a8a8;
|
|
1184
|
+
|
|
1185
|
+
--nuraly-select-border-color: #525252;
|
|
1186
|
+
--nuraly-select-border-focus: #78a9ff;
|
|
1187
|
+
--nuraly-select-border-hover: #78a9ff;
|
|
1188
|
+
|
|
1189
|
+
--nuraly-select-dropdown-background: #262626;
|
|
1190
|
+
--nuraly-select-dropdown-border-color: #393939;
|
|
1191
|
+
--nuraly-select-dropdown-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.8);
|
|
1192
|
+
|
|
1193
|
+
--nuraly-select-option-hover-background: #393939;
|
|
1194
|
+
--nuraly-select-option-selected-background: #393939;
|
|
1195
|
+
--nuraly-select-option-selected-color: #78a9ff;
|
|
1196
|
+
--nuraly-select-option-text-color: #f4f4f4;
|
|
1197
|
+
|
|
1198
|
+
--nuraly-select-error-border-color: #ff8389;
|
|
1199
|
+
--nuraly-select-error-text-color: #ff8389;
|
|
1200
|
+
|
|
1201
|
+
--nuraly-select-success-border-color: #42be65;
|
|
1202
|
+
--nuraly-select-success-text-color: #42be65;
|
|
1203
|
+
|
|
1204
|
+
--nuraly-select-disabled-background: #161616;
|
|
1205
|
+
--nuraly-select-disabled-border-color: #525252;
|
|
1206
|
+
--nuraly-select-disabled-text-color: #6f6f6f;
|
|
1207
|
+
|
|
1208
|
+
--nuraly-select-icon-color: #a8a8a8;
|
|
1209
|
+
--nuraly-select-icon-hover-color: #78a9ff;
|
|
1210
|
+
|
|
1211
|
+
--nuraly-select-tag-background: #393939;
|
|
1212
|
+
--nuraly-select-tag-color: #f4f4f4;
|
|
1213
|
+
--nuraly-select-tag-close-color: #a8a8a8;
|
|
1214
|
+
--nuraly-select-tag-close-hover-color: #ff8389;
|
|
1215
|
+
|
|
1216
|
+
--nuraly-select-focus-outline: rgba(120, 169, 255, 0.5);
|
|
1217
|
+
--nuraly-select-hover-ring: rgba(120, 169, 255, 0.2);
|
|
1218
|
+
}
|
|
1219
|
+
|
|
1220
|
+
/* ==============================================
|
|
1221
|
+
* textarea/index.css
|
|
1222
|
+
* ============================================== */
|
|
1223
|
+
|
|
1224
|
+
/* ==============================================
|
|
1225
|
+
* textarea/common.css
|
|
1226
|
+
* ============================================== */
|
|
1227
|
+
|
|
1228
|
+
:root,
|
|
1229
|
+
[data-theme="carbon-light"],
|
|
1230
|
+
[data-theme="carbon-dark"] {
|
|
1231
|
+
|
|
1232
|
+
--nuraly-border-width-textarea: 2px;
|
|
1233
|
+
--nuraly-border-radius-textarea: 0px;
|
|
1234
|
+
--nuraly-color-textarea-border: transparent;
|
|
1235
|
+
--nuraly-color-textarea-border-focus: #0f62fe;
|
|
1236
|
+
--nuraly-textarea-border-radius:0px;
|
|
1237
|
+
|
|
1238
|
+
--nuraly-size-textarea-small-min-height: 32px;
|
|
1239
|
+
--nuraly-size-textarea-medium-min-height: 40px;
|
|
1240
|
+
--nuraly-size-textarea-large-min-height: 48px;
|
|
1241
|
+
|
|
1242
|
+
--nuraly-spacing-textarea-small-vertical: 4px;
|
|
1243
|
+
--nuraly-spacing-textarea-small-horizontal: 12px;
|
|
1244
|
+
--nuraly-spacing-textarea-medium-vertical: 7px;
|
|
1245
|
+
--nuraly-spacing-textarea-medium-horizontal: 16px;
|
|
1246
|
+
--nuraly-spacing-textarea-large-vertical: 10px;
|
|
1247
|
+
--nuraly-spacing-textarea-large-horizontal: 16px;
|
|
1248
|
+
|
|
1249
|
+
--nuraly-font-family-textarea: 'IBM Plex Sans', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
|
|
1250
|
+
--nuraly-font-size-textarea: 14px;
|
|
1251
|
+
--nuraly-font-size-textarea-label: 12px;
|
|
1252
|
+
--nuraly-font-size-textarea-helper: 12px;
|
|
1253
|
+
--nuraly-font-size-textarea-placeholder: 14px;
|
|
1254
|
+
--nuraly-line-height-textarea: 1.28;
|
|
1255
|
+
|
|
1256
|
+
--nuraly-size-textarea-icon: 16px;
|
|
1257
|
+
|
|
1258
|
+
--nuraly-border-radius-textarea-outlined: 0px;
|
|
1259
|
+
--nuraly-border-radius-textarea-filled-top: 0px;
|
|
1260
|
+
|
|
1261
|
+
--nuraly-spacing-textarea-label-bottom: 8px;
|
|
1262
|
+
--nuraly-spacing-textarea-helper-top: 8px;
|
|
1263
|
+
--nuraly-spacing-textarea-icon: 8px;
|
|
1264
|
+
|
|
1265
|
+
--nuraly-color-textarea-warning-icon: #f1c21b;
|
|
1266
|
+
|
|
1267
|
+
--nuraly-spacing-textarea-count-top: 4px;
|
|
1268
|
+
--nuraly-font-size-textarea-count: 12px;
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
/* ==============================================
|
|
1272
|
+
* textarea/light.css
|
|
1273
|
+
* ============================================== */
|
|
1274
|
+
|
|
1275
|
+
[data-theme="carbon-light"]{
|
|
1276
|
+
|
|
1277
|
+
--nuraly-color-textarea-background: #f4f4f4;
|
|
1278
|
+
--nuraly-color-textarea-text: #161616;
|
|
1279
|
+
--nuraly-color-textarea-placeholder: #a8a8a8;
|
|
1280
|
+
--nuraly-color-textarea-label: #393939;
|
|
1281
|
+
--nuraly-color-textarea-helper-text: #6f6f6f;
|
|
1282
|
+
|
|
1283
|
+
--nuraly-color-textarea-text-fallback: rgba(0, 0, 0, 0.88);
|
|
1284
|
+
--nuraly-color-textarea-background-fallback: #ffffff;
|
|
1285
|
+
--nuraly-color-textarea-disabled-text-fallback: rgba(0, 0, 0, 0.25);
|
|
1286
|
+
--nuraly-color-textarea-disabled-background-fallback: #f4f4f4;
|
|
1287
|
+
--nuraly-color-textarea-placeholder-fallback: #a8a8a8;
|
|
1288
|
+
--nuraly-color-textarea-disabled-placeholder-fallback: #c6c6c6;
|
|
1289
|
+
|
|
1290
|
+
--nuraly-color-textarea-border: #f4f4f4;
|
|
1291
|
+
--nuraly-color-textarea-border-bottom: #8d8d8d;
|
|
1292
|
+
--nuraly-color-textarea-border-focus: #0f62fe;
|
|
1293
|
+
--nuraly-color-textarea-border-hover: #0f62fe;
|
|
1294
|
+
--nuraly-border-width-textarea: 2px;
|
|
1295
|
+
--nuraly-border-radius-textarea: 0px;
|
|
1296
|
+
|
|
1297
|
+
--nuraly-color-textarea-disabled-background: #f4f4f4;
|
|
1298
|
+
--nuraly-color-textarea-disabled-text: #c6c6c6;
|
|
1299
|
+
--nuraly-color-textarea-disabled-placeholder: #c6c6c6;
|
|
1300
|
+
--nuraly-color-textarea-disabled-label: #c6c6c6;
|
|
1301
|
+
--nuraly-color-textarea-disabled-helper-text: #c6c6c6;
|
|
1302
|
+
|
|
1303
|
+
--nuraly-color-textarea-error-border: #da1e28;
|
|
1304
|
+
--nuraly-color-textarea-error-text: #da1e28;
|
|
1305
|
+
--nuraly-color-textarea-error-icon: #da1e28;
|
|
1306
|
+
|
|
1307
|
+
--nuraly-color-textarea-warning-text: #161616;
|
|
1308
|
+
--nuraly-color-textarea-warning-icon: #f1c21b;
|
|
1309
|
+
|
|
1310
|
+
--nuraly-color-textarea-success-border: #24a148;
|
|
1311
|
+
--nuraly-color-textarea-success-text: #161616;
|
|
1312
|
+
--nuraly-color-textarea-success-icon: #24a148;
|
|
1313
|
+
|
|
1314
|
+
--nuraly-color-textarea-focus-outline: rgba(15, 98, 254, 0.2);
|
|
1315
|
+
--nuraly-color-textarea-hover-ring: rgba(15, 98, 254, 0.1);
|
|
1316
|
+
|
|
1317
|
+
--nuraly-color-textarea-icon: #525252;
|
|
1318
|
+
--nuraly-color-textarea-icon-hover: #0f62fe;
|
|
1319
|
+
--nuraly-color-textarea-icon-active: #0043ce;
|
|
1320
|
+
--nuraly-color-textarea-icon-disabled: #c6c6c6;
|
|
1321
|
+
--nuraly-color-textarea-clear-icon: #525252;
|
|
1322
|
+
--nuraly-color-textarea-clear-icon-hover: #0f62fe;
|
|
1323
|
+
|
|
1324
|
+
--nuraly-color-textarea-count: #6f6f6f;
|
|
1325
|
+
--nuraly-color-textarea-count-over-limit: #da1e28;
|
|
1326
|
+
|
|
1327
|
+
--nuraly-color-textarea-validation-icon: #525252;
|
|
1328
|
+
--nuraly-color-textarea-validation-error: #da1e28;
|
|
1329
|
+
--nuraly-color-textarea-validation-warning: #f1c21b;
|
|
1330
|
+
--nuraly-color-textarea-validation-success: #24a148;
|
|
1331
|
+
|
|
1332
|
+
--nuraly-color-textarea-outlined-border: #8d8d8d;
|
|
1333
|
+
--nuraly-color-textarea-outlined-background: transparent;
|
|
1334
|
+
|
|
1335
|
+
--nuraly-color-textarea-filled-background: #f4f4f4;
|
|
1336
|
+
--nuraly-color-textarea-filled-border: transparent;
|
|
1337
|
+
}
|
|
1338
|
+
|
|
1339
|
+
/* ==============================================
|
|
1340
|
+
* textarea/dark.css
|
|
1341
|
+
* ============================================== */
|
|
1342
|
+
|
|
1343
|
+
:root,
|
|
1344
|
+
[data-theme="carbon-dark"]{
|
|
1345
|
+
|
|
1346
|
+
--nuraly-color-textarea-background: #393939;
|
|
1347
|
+
--nuraly-color-textarea-text: #f4f4f4;
|
|
1348
|
+
--nuraly-color-textarea-placeholder: #a8a8a8;
|
|
1349
|
+
--nuraly-color-textarea-label: #f4f4f4;
|
|
1350
|
+
--nuraly-color-textarea-helper-text: #c6c6c6;
|
|
1351
|
+
|
|
1352
|
+
--nuraly-color-textarea-text-fallback: rgba(255, 255, 255, 0.88);
|
|
1353
|
+
--nuraly-color-textarea-background-fallback: #262626;
|
|
1354
|
+
--nuraly-color-textarea-disabled-text-fallback: rgba(255, 255, 255, 0.25);
|
|
1355
|
+
--nuraly-color-textarea-disabled-background-fallback: #525252;
|
|
1356
|
+
--nuraly-color-textarea-placeholder-fallback: #a8a8a8;
|
|
1357
|
+
--nuraly-color-textarea-disabled-placeholder-fallback: #8d8d8d;
|
|
1358
|
+
|
|
1359
|
+
--nuraly-color-textarea-border: #393939;
|
|
1360
|
+
--nuraly-color-textarea-border-bottom: #a8a8a8;
|
|
1361
|
+
--nuraly-color-textarea-border-focus: #78a9ff;
|
|
1362
|
+
--nuraly-color-textarea-border-hover: #78a9ff;
|
|
1363
|
+
--nuraly-border-width-textarea: 2px;
|
|
1364
|
+
--nuraly-border-radius-textarea: 0px;
|
|
1365
|
+
|
|
1366
|
+
--nuraly-color-textarea-disabled-background: #525252;
|
|
1367
|
+
--nuraly-color-textarea-disabled-text: #8d8d8d;
|
|
1368
|
+
--nuraly-color-textarea-disabled-placeholder: #8d8d8d;
|
|
1369
|
+
--nuraly-color-textarea-disabled-label: #8d8d8d;
|
|
1370
|
+
--nuraly-color-textarea-disabled-helper-text: #8d8d8d;
|
|
1371
|
+
|
|
1372
|
+
--nuraly-color-textarea-error-border: #ff8389;
|
|
1373
|
+
--nuraly-color-textarea-error-text: #ffb3b8;
|
|
1374
|
+
--nuraly-color-textarea-error-icon: #ff8389;
|
|
1375
|
+
|
|
1376
|
+
--nuraly-color-textarea-warning-text: #f4f4f4;
|
|
1377
|
+
--nuraly-color-textarea-warning-icon: #f1c21b;
|
|
1378
|
+
|
|
1379
|
+
--nuraly-color-textarea-success-border: #42be65;
|
|
1380
|
+
--nuraly-color-textarea-success-text: #f4f4f4;
|
|
1381
|
+
--nuraly-color-textarea-success-icon: #42be65;
|
|
1382
|
+
|
|
1383
|
+
--nuraly-color-textarea-focus-outline: rgba(120, 169, 255, 0.2);
|
|
1384
|
+
--nuraly-color-textarea-hover-ring: rgba(120, 169, 255, 0.1);
|
|
1385
|
+
|
|
1386
|
+
--nuraly-color-textarea-icon: #a8a8a8;
|
|
1387
|
+
--nuraly-color-textarea-icon-hover: #78a9ff;
|
|
1388
|
+
--nuraly-color-textarea-icon-active: #4589ff;
|
|
1389
|
+
--nuraly-color-textarea-icon-disabled: #8d8d8d;
|
|
1390
|
+
--nuraly-color-textarea-clear-icon: #a8a8a8;
|
|
1391
|
+
--nuraly-color-textarea-clear-icon-hover: #78a9ff;
|
|
1392
|
+
|
|
1393
|
+
--nuraly-color-textarea-count: #c6c6c6;
|
|
1394
|
+
--nuraly-color-textarea-count-over-limit: #ff8389;
|
|
1395
|
+
|
|
1396
|
+
--nuraly-color-textarea-validation-icon: #a8a8a8;
|
|
1397
|
+
--nuraly-color-textarea-validation-error: #ff8389;
|
|
1398
|
+
--nuraly-color-textarea-validation-warning: #f1c21b;
|
|
1399
|
+
--nuraly-color-textarea-validation-success: #42be65;
|
|
1400
|
+
|
|
1401
|
+
--nuraly-color-textarea-outlined-border: #a8a8a8;
|
|
1402
|
+
--nuraly-color-textarea-outlined-background: transparent;
|
|
1403
|
+
|
|
1404
|
+
--nuraly-color-textarea-filled-background: #393939;
|
|
1405
|
+
--nuraly-color-textarea-filled-border: transparent;
|
|
1406
|
+
}
|
|
1407
|
+
|
|
1408
|
+
/* ==============================================
|
|
1409
|
+
* datepicker/index.css
|
|
1410
|
+
* ============================================== */
|
|
1411
|
+
|
|
1412
|
+
@media screen {
|
|
1413
|
+
[data-theme="carbon-dark"] {
|
|
1414
|
+
|
|
1415
|
+
--theme-mode: dark;
|
|
1416
|
+
}
|
|
1417
|
+
|
|
1418
|
+
[data-theme="carbon-light"]
|
|
1419
|
+
:root {
|
|
1420
|
+
|
|
1421
|
+
--theme-mode: light;
|
|
1422
|
+
}
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
/* ==============================================
|
|
1426
|
+
* datepicker/common.css
|
|
1427
|
+
* ============================================== */
|
|
1428
|
+
|
|
1429
|
+
[data-theme^="carbon"] {
|
|
1430
|
+
|
|
1431
|
+
--nuraly-color-datepicker-disabled: #c6c6c6;
|
|
1432
|
+
--nuraly-color-datepicker-disabled-text: #8d8d8d;
|
|
1433
|
+
--nuraly-color-datepicker-disabled-background: #f4f4f4;
|
|
1434
|
+
|
|
1435
|
+
--nuraly-color-datepicker-primary: #0f62fe;
|
|
1436
|
+
--nuraly-color-datepicker-selected: #0f62fe;
|
|
1437
|
+
--nuraly-color-datepicker-today: #0f62fe;
|
|
1438
|
+
--nuraly-color-datepicker-input-focus-border: #0f62fe;
|
|
1439
|
+
|
|
1440
|
+
--nuraly-shadow-datepicker-box: 0 2px 6px rgba(0, 0, 0, 0.2);
|
|
1441
|
+
--nuraly-shadow-datepicker-input-focus: 0 0 0 2px rgba(15, 98, 254, 0.2);
|
|
1442
|
+
|
|
1443
|
+
--nuraly-border-radius-datepicker: 0;
|
|
1444
|
+
|
|
1445
|
+
--nuraly-font-family-datepicker: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
|
|
1446
|
+
--nuraly-font-size-datepicker: 14px;
|
|
1447
|
+
--nuraly-font-weight-datepicker: 400;
|
|
1448
|
+
--nuraly-font-size-datepicker-header: 14px;
|
|
1449
|
+
--nuraly-font-weight-datepicker-header: 600;
|
|
1450
|
+
|
|
1451
|
+
--nuraly-spacing-datepicker-gap: 8px;
|
|
1452
|
+
--nuraly-spacing-datepicker-calendar-padding: 16px;
|
|
1453
|
+
--nuraly-spacing-datepicker-day-padding: 8px;
|
|
1454
|
+
--nuraly-spacing-datepicker-input-padding: 11px 16px;
|
|
1455
|
+
|
|
1456
|
+
--nuraly-size-datepicker-width: 288px;
|
|
1457
|
+
--nuraly-size-datepicker-calendar-width: 288px;
|
|
1458
|
+
--nuraly-size-datepicker-day: 40px;
|
|
1459
|
+
--nuraly-size-datepicker-header-height: 48px;
|
|
1460
|
+
|
|
1461
|
+
--nuraly-border-width-datepicker: 1px;
|
|
1462
|
+
--nuraly-border-width-datepicker-input: 1px;
|
|
1463
|
+
--nuraly-border-width-datepicker-focus: 2px;
|
|
1464
|
+
|
|
1465
|
+
--nuraly-transition-duration-datepicker: 0.11s;
|
|
1466
|
+
--nuraly-transition-timing-datepicker: cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
1467
|
+
--nuraly-transition-duration-datepicker-calendar: 0.11s;
|
|
1468
|
+
|
|
1469
|
+
--nuraly-z-index-datepicker-calendar: 9000;
|
|
1470
|
+
|
|
1471
|
+
--nuraly-size-datepicker-icon: 16px;
|
|
1472
|
+
--nuraly-size-datepicker-arrow-icon: 16px;
|
|
1473
|
+
|
|
1474
|
+
--nuraly-color-datepicker-error: #da1e28;
|
|
1475
|
+
--nuraly-color-datepicker-warning: #f1c21b;
|
|
1476
|
+
--nuraly-color-datepicker-success: #24a148;
|
|
1477
|
+
}
|
|
1478
|
+
|
|
1479
|
+
/* ==============================================
|
|
1480
|
+
* datepicker/light.css
|
|
1481
|
+
* ============================================== */
|
|
1482
|
+
|
|
1483
|
+
[data-theme="carbon-light"] {
|
|
1484
|
+
|
|
1485
|
+
--nuraly-color-datepicker-background: #ffffff;
|
|
1486
|
+
--nuraly-color-datepicker-header-background: #ffffff;
|
|
1487
|
+
--nuraly-color-datepicker-hover-background: #e0e0e0;
|
|
1488
|
+
--nuraly-color-datepicker-active-background: #c6c6c6;
|
|
1489
|
+
|
|
1490
|
+
--nuraly-color-datepicker-text: #161616;
|
|
1491
|
+
--nuraly-color-datepicker-selected-text: #ffffff;
|
|
1492
|
+
--nuraly-color-datepicker-weekday: #6f6f6f;
|
|
1493
|
+
--nuraly-color-datepicker-weekend: #da1e28;
|
|
1494
|
+
|
|
1495
|
+
--nuraly-color-datepicker-border: #c6c6c6;
|
|
1496
|
+
|
|
1497
|
+
--nuraly-color-datepicker-input-background: #ffffff;
|
|
1498
|
+
--nuraly-color-datepicker-input-border: #8d8d8d;
|
|
1499
|
+
--nuraly-color-datepicker-input-text: #161616;
|
|
1500
|
+
--nuraly-color-datepicker-input-placeholder: #a8a8a8;
|
|
1501
|
+
|
|
1502
|
+
--nuraly-color-datepicker-hover: #e0e0e0;
|
|
1503
|
+
|
|
1504
|
+
--nuraly-color-datepicker-range: rgba(15, 98, 254, 0.1);
|
|
1505
|
+
|
|
1506
|
+
--nuraly-color-datepicker-shadow: rgba(0, 0, 0, 0.3);
|
|
1507
|
+
|
|
1508
|
+
--nuraly-opacity-datepicker-disabled: 0.5;
|
|
1509
|
+
--nuraly-opacity-datepicker-hover: 1;
|
|
1510
|
+
}
|
|
1511
|
+
|
|
1512
|
+
/* ==============================================
|
|
1513
|
+
* datepicker/dark.css
|
|
1514
|
+
* ============================================== */
|
|
1515
|
+
|
|
1516
|
+
[data-theme="carbon-dark"] {
|
|
1517
|
+
|
|
1518
|
+
--nuraly-color-datepicker-background: #262626;
|
|
1519
|
+
--nuraly-color-datepicker-header-background: #262626;
|
|
1520
|
+
--nuraly-color-datepicker-hover-background: #353535;
|
|
1521
|
+
--nuraly-color-datepicker-active-background: #525252;
|
|
1522
|
+
|
|
1523
|
+
--nuraly-color-datepicker-text: #f4f4f4;
|
|
1524
|
+
--nuraly-color-datepicker-selected-text: #161616;
|
|
1525
|
+
--nuraly-color-datepicker-weekday: #c6c6c6;
|
|
1526
|
+
--nuraly-color-datepicker-weekend: #ff8389;
|
|
1527
|
+
|
|
1528
|
+
--nuraly-color-datepicker-border: #6f6f6f;
|
|
1529
|
+
|
|
1530
|
+
--nuraly-color-datepicker-input-background: #393939;
|
|
1531
|
+
--nuraly-color-datepicker-input-border: #6f6f6f;
|
|
1532
|
+
--nuraly-color-datepicker-input-text: #f4f4f4;
|
|
1533
|
+
--nuraly-color-datepicker-input-placeholder: #a8a8a8;
|
|
1534
|
+
|
|
1535
|
+
--nuraly-color-datepicker-hover: #393939;
|
|
1536
|
+
|
|
1537
|
+
--nuraly-color-datepicker-range: rgba(78, 151, 253, 0.2);
|
|
1538
|
+
|
|
1539
|
+
--nuraly-color-datepicker-shadow: rgba(0, 0, 0, 0.8);
|
|
1540
|
+
|
|
1541
|
+
--nuraly-opacity-datepicker-disabled: 0.25;
|
|
1542
|
+
--nuraly-opacity-datepicker-hover: 1;
|
|
1543
|
+
|
|
1544
|
+
--nuraly-color-datepicker-disabled: #6f6f6f;
|
|
1545
|
+
--nuraly-color-datepicker-disabled-text: #525252;
|
|
1546
|
+
--nuraly-color-datepicker-disabled-background: #262626;
|
|
1547
|
+
}
|
|
1548
|
+
|
|
1549
|
+
/* ==============================================
|
|
1550
|
+
* timepicker/index.css
|
|
1551
|
+
* ============================================== */
|
|
1552
|
+
|
|
1553
|
+
@media screen {
|
|
1554
|
+
[data-theme="carbon-dark"] {
|
|
1555
|
+
|
|
1556
|
+
--theme-mode: dark;
|
|
1557
|
+
}
|
|
1558
|
+
|
|
1559
|
+
[data-theme="carbon-light"] {
|
|
1560
|
+
|
|
1561
|
+
--theme-mode: light;
|
|
1562
|
+
}
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
/* ==============================================
|
|
1566
|
+
* timepicker/common.css
|
|
1567
|
+
* ============================================== */
|
|
1568
|
+
|
|
1569
|
+
[data-theme^="carbon"] {
|
|
1570
|
+
|
|
1571
|
+
--nuraly-color-timepicker-disabled: #c6c6c6;
|
|
1572
|
+
--nuraly-color-timepicker-disabled-text: #8d8d8d;
|
|
1573
|
+
--nuraly-color-timepicker-disabled-background: #f4f4f4;
|
|
1574
|
+
|
|
1575
|
+
--nuraly-color-timepicker-primary: #0f62fe;
|
|
1576
|
+
--nuraly-color-timepicker-selected: #0f62fe;
|
|
1577
|
+
--nuraly-color-timepicker-input-focus-border: #0f62fe;
|
|
1578
|
+
--nuraly-color-timepicker-clock-hand: #0f62fe;
|
|
1579
|
+
|
|
1580
|
+
--nuraly-shadow-timepicker-box: 0 2px 6px rgba(0, 0, 0, 0.2);
|
|
1581
|
+
--nuraly-shadow-timepicker-input-focus: 0 0 0 2px rgba(15, 98, 254, 0.2);
|
|
1582
|
+
|
|
1583
|
+
--nuraly-border-radius-timepicker: 0;
|
|
1584
|
+
--nuraly-border-radius-timepicker-sm: 0;
|
|
1585
|
+
|
|
1586
|
+
--nuraly-font-family-timepicker: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
|
|
1587
|
+
--nuraly-font-size-timepicker: 14px;
|
|
1588
|
+
--nuraly-font-weight-timepicker: 400;
|
|
1589
|
+
--nuraly-font-size-timepicker-clock: 14px;
|
|
1590
|
+
|
|
1591
|
+
--nuraly-spacing-timepicker-gap: 8px;
|
|
1592
|
+
--nuraly-spacing-timepicker-dropdown-padding: 16px;
|
|
1593
|
+
--nuraly-spacing-timepicker-input-padding: 11px 16px;
|
|
1594
|
+
|
|
1595
|
+
--nuraly-size-timepicker-width: 288px;
|
|
1596
|
+
--nuraly-size-timepicker-height: 48px;
|
|
1597
|
+
--nuraly-size-timepicker-dropdown-width: 200px;
|
|
1598
|
+
--nuraly-size-timepicker-clock: 200px;
|
|
1599
|
+
|
|
1600
|
+
--nuraly-border-width-timepicker: 1px;
|
|
1601
|
+
--nuraly-border-width-timepicker-input: 1px;
|
|
1602
|
+
--nuraly-border-width-timepicker-focus: 2px;
|
|
1603
|
+
|
|
1604
|
+
--nuraly-transition-duration-timepicker: 0.11s;
|
|
1605
|
+
--nuraly-transition-timing-timepicker: cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
1606
|
+
|
|
1607
|
+
--nuraly-z-index-timepicker-dropdown: 9000;
|
|
1608
|
+
|
|
1609
|
+
--nuraly-size-timepicker-icon: 16px;
|
|
1610
|
+
|
|
1611
|
+
--nuraly-color-timepicker-error: #da1e28;
|
|
1612
|
+
--nuraly-color-timepicker-warning: #f1c21b;
|
|
1613
|
+
--nuraly-color-timepicker-success: #24a148;
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
/* ==============================================
|
|
1617
|
+
* timepicker/light.css
|
|
1618
|
+
* ============================================== */
|
|
1619
|
+
|
|
1620
|
+
[data-theme="carbon-light"] {
|
|
1621
|
+
|
|
1622
|
+
--nuraly-color-timepicker-background: #ffffff;
|
|
1623
|
+
--nuraly-color-timepicker-dropdown-background: #ffffff;
|
|
1624
|
+
--nuraly-color-timepicker-clock-background: #ffffff;
|
|
1625
|
+
--nuraly-color-timepicker-hover-background: #e0e0e0;
|
|
1626
|
+
--nuraly-color-timepicker-active-background: #c6c6c6;
|
|
1627
|
+
|
|
1628
|
+
--nuraly-color-timepicker-text: #161616;
|
|
1629
|
+
--nuraly-color-timepicker-selected-text: #ffffff;
|
|
1630
|
+
--nuraly-color-timepicker-clock-text: #161616;
|
|
1631
|
+
--nuraly-color-timepicker-clock-face: #6f6f6f;
|
|
1632
|
+
|
|
1633
|
+
--nuraly-color-timepicker-border: #c6c6c6;
|
|
1634
|
+
--nuraly-color-timepicker-clock-border: #e0e0e0;
|
|
1635
|
+
|
|
1636
|
+
--nuraly-color-timepicker-input-background: #ffffff;
|
|
1637
|
+
--nuraly-color-timepicker-input-border: #8d8d8d;
|
|
1638
|
+
--nuraly-color-timepicker-input-text: #161616;
|
|
1639
|
+
--nuraly-color-timepicker-input-placeholder: #a8a8a8;
|
|
1640
|
+
|
|
1641
|
+
--nuraly-color-timepicker-hover: #e0e0e0;
|
|
1642
|
+
|
|
1643
|
+
--nuraly-color-timepicker-item-hover: #e0e0e0;
|
|
1644
|
+
--nuraly-color-timepicker-item-active: #e0e0e0;
|
|
1645
|
+
--nuraly-color-timepicker-item-selected: #0f62fe;
|
|
1646
|
+
--nuraly-color-timepicker-item-selected-text: #ffffff;
|
|
1647
|
+
|
|
1648
|
+
--nuraly-color-timepicker-shadow: rgba(0, 0, 0, 0.3);
|
|
1649
|
+
|
|
1650
|
+
--nuraly-opacity-timepicker-disabled: 0.5;
|
|
1651
|
+
--nuraly-opacity-timepicker-hover: 1;
|
|
1652
|
+
}
|
|
1653
|
+
|
|
1654
|
+
/* ==============================================
|
|
1655
|
+
* timepicker/dark.css
|
|
1656
|
+
* ============================================== */
|
|
1657
|
+
|
|
1658
|
+
[data-theme="carbon-dark"] {
|
|
1659
|
+
|
|
1660
|
+
--nuraly-color-timepicker-background: #262626;
|
|
1661
|
+
--nuraly-color-timepicker-dropdown-background: #262626;
|
|
1662
|
+
--nuraly-color-timepicker-clock-background: #262626;
|
|
1663
|
+
--nuraly-color-timepicker-hover-background: #353535;
|
|
1664
|
+
--nuraly-color-timepicker-active-background: #525252;
|
|
1665
|
+
|
|
1666
|
+
--nuraly-color-timepicker-text: #f4f4f4;
|
|
1667
|
+
--nuraly-color-timepicker-selected-text: #161616;
|
|
1668
|
+
--nuraly-color-timepicker-clock-text: #f4f4f4;
|
|
1669
|
+
--nuraly-color-timepicker-clock-face: #c6c6c6;
|
|
1670
|
+
|
|
1671
|
+
--nuraly-color-timepicker-border: #6f6f6f;
|
|
1672
|
+
--nuraly-color-timepicker-clock-border: #525252;
|
|
1673
|
+
|
|
1674
|
+
--nuraly-color-timepicker-input-background: #393939;
|
|
1675
|
+
--nuraly-color-timepicker-input-border: #6f6f6f;
|
|
1676
|
+
--nuraly-color-timepicker-input-text: #f4f4f4;
|
|
1677
|
+
--nuraly-color-timepicker-input-placeholder: #a8a8a8;
|
|
1678
|
+
|
|
1679
|
+
--nuraly-color-timepicker-hover: #393939;
|
|
1680
|
+
|
|
1681
|
+
--nuraly-color-timepicker-item-hover: #393939;
|
|
1682
|
+
--nuraly-color-timepicker-item-active: #525252;
|
|
1683
|
+
--nuraly-color-timepicker-item-selected: #0f62fe;
|
|
1684
|
+
--nuraly-color-timepicker-item-selected-text: #161616;
|
|
1685
|
+
|
|
1686
|
+
--nuraly-color-timepicker-shadow: rgba(0, 0, 0, 0.8);
|
|
1687
|
+
|
|
1688
|
+
--nuraly-opacity-timepicker-disabled: 0.25;
|
|
1689
|
+
--nuraly-opacity-timepicker-hover: 1;
|
|
1690
|
+
|
|
1691
|
+
--nuraly-color-timepicker-disabled: #6f6f6f;
|
|
1692
|
+
--nuraly-color-timepicker-disabled-text: #525252;
|
|
1693
|
+
--nuraly-color-timepicker-disabled-background: #262626;
|
|
1694
|
+
}
|
|
1695
|
+
|
|
1696
|
+
/* ==============================================
|
|
1697
|
+
* slider-input/index.css
|
|
1698
|
+
* ============================================== */
|
|
1699
|
+
|
|
1700
|
+
/* ==============================================
|
|
1701
|
+
* slider-input/common.css
|
|
1702
|
+
* ============================================== */
|
|
1703
|
+
|
|
1704
|
+
[data-theme^="carbon"] {
|
|
1705
|
+
|
|
1706
|
+
--nuraly-color-slider-input-disabled: #c6c6c6;
|
|
1707
|
+
--nuraly-color-slider-input-disabled-text: #8d8d8d;
|
|
1708
|
+
--nuraly-color-slider-input-disabled-background: #f4f4f4;
|
|
1709
|
+
|
|
1710
|
+
--nuraly-color-slider-input-primary: #0f62fe;
|
|
1711
|
+
--nuraly-color-slider-input-selected: #0f62fe;
|
|
1712
|
+
--nuraly-color-slider-input-focus: #0f62fe;
|
|
1713
|
+
|
|
1714
|
+
--nuraly-border-slider-input-radius: 0;
|
|
1715
|
+
--nuraly-border-slider-input-thumb-radius: 0;
|
|
1716
|
+
|
|
1717
|
+
--nuraly-font-family-slider-input: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
|
|
1718
|
+
--nuraly-font-size-slider-input: 14px;
|
|
1719
|
+
--nuraly-font-weight-slider-input: 400;
|
|
1720
|
+
|
|
1721
|
+
--nuraly-spacing-slider-input-gap: 8px;
|
|
1722
|
+
--nuraly-spacing-slider-input-padding: 16px;
|
|
1723
|
+
|
|
1724
|
+
--nuraly-size-slider-input-height: 2px;
|
|
1725
|
+
--nuraly-size-slider-input-thumb-diameter: 16px;
|
|
1726
|
+
--nuraly-size-slider-input-width: 100%;
|
|
1727
|
+
|
|
1728
|
+
--nuraly-border-width-slider-input: 0;
|
|
1729
|
+
--nuraly-border-width-slider-input-focus: 2px;
|
|
1730
|
+
|
|
1731
|
+
--nuraly-transition-duration-slider-input: 0.11s;
|
|
1732
|
+
--nuraly-transition-timing-slider-input: cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
1733
|
+
|
|
1734
|
+
--nuraly-z-index-slider-input: 1;
|
|
1735
|
+
|
|
1736
|
+
--nuraly-color-slider-input-error: #da1e28;
|
|
1737
|
+
--nuraly-color-slider-input-warning: #f1c21b;
|
|
1738
|
+
--nuraly-color-slider-input-success: #24a148;
|
|
1739
|
+
|
|
1740
|
+
--nuraly-shadow-slider-input-focus: 0 0 0 2px rgba(15, 98, 254, 0.2);
|
|
1741
|
+
}
|
|
1742
|
+
|
|
1743
|
+
/* ==============================================
|
|
1744
|
+
* slider-input/light.css
|
|
1745
|
+
* ============================================== */
|
|
1746
|
+
|
|
1747
|
+
[data-theme="carbon-light"] {
|
|
1748
|
+
|
|
1749
|
+
--nuraly-color-slider-input-background: #f4f4f4;
|
|
1750
|
+
--nuraly-color-slider-input-track: #e0e0e0;
|
|
1751
|
+
--nuraly-color-slider-input-track-filled: #0f62fe;
|
|
1752
|
+
|
|
1753
|
+
--nuraly-color-slider-input-text: #161616;
|
|
1754
|
+
--nuraly-color-slider-input-text-secondary: #525252;
|
|
1755
|
+
|
|
1756
|
+
--nuraly-color-slider-input-border: #c6c6c6;
|
|
1757
|
+
--nuraly-color-slider-input-border-hover: #a8a8a8;
|
|
1758
|
+
|
|
1759
|
+
--nuraly-color-slider-input-thumb: #ffffff;
|
|
1760
|
+
--nuraly-color-slider-input-thumb-hover: #f4f4f4;
|
|
1761
|
+
--nuraly-color-slider-input-thumb-active: #0f62fe;
|
|
1762
|
+
--nuraly-color-slider-input-thumb-border: #8d8d8d;
|
|
1763
|
+
|
|
1764
|
+
--nuraly-color-slider-input-hover: #e5e5e5;
|
|
1765
|
+
--nuraly-color-slider-input-active: #0f62fe;
|
|
1766
|
+
|
|
1767
|
+
--nuraly-color-slider-input-disabled-track: #c6c6c6;
|
|
1768
|
+
--nuraly-color-slider-input-disabled-thumb: #f4f4f4;
|
|
1769
|
+
--nuraly-color-slider-input-disabled-border: #c6c6c6;
|
|
1770
|
+
}
|
|
1771
|
+
|
|
1772
|
+
/* ==============================================
|
|
1773
|
+
* slider-input/dark.css
|
|
1774
|
+
* ============================================== */
|
|
1775
|
+
|
|
1776
|
+
[data-theme="carbon-dark"] {
|
|
1777
|
+
|
|
1778
|
+
--nuraly-color-slider-input-background: #262626;
|
|
1779
|
+
--nuraly-color-slider-input-track: #393939;
|
|
1780
|
+
--nuraly-color-slider-input-track-filled: #4589ff;
|
|
1781
|
+
|
|
1782
|
+
--nuraly-color-slider-input-text: #f4f4f4;
|
|
1783
|
+
--nuraly-color-slider-input-text-secondary: #c6c6c6;
|
|
1784
|
+
|
|
1785
|
+
--nuraly-color-slider-input-border: #525252;
|
|
1786
|
+
--nuraly-color-slider-input-border-hover: #697077;
|
|
1787
|
+
|
|
1788
|
+
--nuraly-color-slider-input-thumb: #f4f4f4;
|
|
1789
|
+
--nuraly-color-slider-input-thumb-hover: #e0e0e0;
|
|
1790
|
+
--nuraly-color-slider-input-thumb-active: #4589ff;
|
|
1791
|
+
--nuraly-color-slider-input-thumb-border: #8d8d8d;
|
|
1792
|
+
|
|
1793
|
+
--nuraly-color-slider-input-hover: #393939;
|
|
1794
|
+
--nuraly-color-slider-input-active: #4589ff;
|
|
1795
|
+
|
|
1796
|
+
--nuraly-color-slider-input-disabled-track: #525252;
|
|
1797
|
+
--nuraly-color-slider-input-disabled-thumb: #393939;
|
|
1798
|
+
--nuraly-color-slider-input-disabled-border: #525252;
|
|
1799
|
+
}
|
|
1800
|
+
|
|
1801
|
+
/* ==============================================
|
|
1802
|
+
* label/index.css
|
|
1803
|
+
* ============================================== */
|
|
1804
|
+
|
|
1805
|
+
/* ==============================================
|
|
1806
|
+
* label/common.css
|
|
1807
|
+
* ============================================== */
|
|
1808
|
+
|
|
1809
|
+
:root {
|
|
1810
|
+
|
|
1811
|
+
--nuraly-label-font-family: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
|
|
1812
|
+
--nuraly-label-font-weight-normal: 400;
|
|
1813
|
+
--nuraly-label-font-weight-medium: 500;
|
|
1814
|
+
|
|
1815
|
+
--nuraly-label-size-xs-font-size: 0.75rem;
|
|
1816
|
+
--nuraly-label-size-xs-line-height: 1rem;
|
|
1817
|
+
|
|
1818
|
+
--nuraly-label-size-sm-font-size: 0.875rem;
|
|
1819
|
+
--nuraly-label-size-sm-line-height: 1.125rem;
|
|
1820
|
+
|
|
1821
|
+
--nuraly-label-size-md-font-size: 1rem;
|
|
1822
|
+
--nuraly-label-size-md-line-height: 1.375rem;
|
|
1823
|
+
|
|
1824
|
+
--nuraly-label-size-lg-font-size: 1.125rem;
|
|
1825
|
+
--nuraly-label-size-lg-line-height: 1.5rem;
|
|
1826
|
+
|
|
1827
|
+
--nuraly-label-size-xl-font-size: 1.25rem;
|
|
1828
|
+
--nuraly-label-size-xl-line-height: 1.625rem;
|
|
1829
|
+
|
|
1830
|
+
--nuraly-label-margin-bottom: 0.5rem;
|
|
1831
|
+
--nuraly-label-required-margin-left: 0.25rem;
|
|
1832
|
+
}
|
|
1833
|
+
|
|
1834
|
+
/* ==============================================
|
|
1835
|
+
* label/light.css
|
|
1836
|
+
* ============================================== */
|
|
1837
|
+
|
|
1838
|
+
[data-theme="carbon-light"],
|
|
1839
|
+
[data-theme^="carbon"]:where([data-theme*="light"]) {
|
|
1840
|
+
|
|
1841
|
+
--nuraly-color-label-text: #161616;
|
|
1842
|
+
--nuraly-color-label-secondary: #525252;
|
|
1843
|
+
|
|
1844
|
+
--nuraly-color-label-error: #da1e28;
|
|
1845
|
+
--nuraly-color-label-warning: #f1c21b;
|
|
1846
|
+
--nuraly-color-label-success: #198038;
|
|
1847
|
+
|
|
1848
|
+
--nuraly-color-label-required: #da1e28;
|
|
1849
|
+
|
|
1850
|
+
--nuraly-color-label-disabled: #c6c6c6;
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
@media (prefers-color-scheme: light) {
|
|
1854
|
+
:root:not([data-theme]),
|
|
1855
|
+
[data-theme^="carbon"]:not([data-theme*="dark"]) {
|
|
1856
|
+
|
|
1857
|
+
--nuraly-color-label-text: #161616;
|
|
1858
|
+
--nuraly-color-label-secondary: #525252;
|
|
1859
|
+
|
|
1860
|
+
--nuraly-color-label-error: #da1e28;
|
|
1861
|
+
--nuraly-color-label-warning: #f1c21b;
|
|
1862
|
+
--nuraly-color-label-success: #198038;
|
|
1863
|
+
|
|
1864
|
+
--nuraly-color-label-required: #da1e28;
|
|
1865
|
+
|
|
1866
|
+
--nuraly-color-label-disabled: #c6c6c6;
|
|
1867
|
+
}
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1870
|
+
/* ==============================================
|
|
1871
|
+
* label/dark.css
|
|
1872
|
+
* ============================================== */
|
|
1873
|
+
|
|
1874
|
+
:root,
|
|
1875
|
+
[data-theme="carbon-dark"],
|
|
1876
|
+
[data-theme^="carbon"]:where([data-theme*="dark"]) {
|
|
1877
|
+
|
|
1878
|
+
--nuraly-color-label-text: #f4f4f4;
|
|
1879
|
+
--nuraly-color-label-secondary: #c6c6c6;
|
|
1880
|
+
|
|
1881
|
+
--nuraly-color-label-error: #ff8389;
|
|
1882
|
+
--nuraly-color-label-warning: #f1c21b;
|
|
1883
|
+
--nuraly-color-label-success: #42be65;
|
|
1884
|
+
|
|
1885
|
+
--nuraly-color-label-required: #ff8389;
|
|
1886
|
+
|
|
1887
|
+
--nuraly-color-label-disabled: #6f6f6f;
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
@media (prefers-color-scheme: dark) {
|
|
1891
|
+
:root:not([data-theme]),
|
|
1892
|
+
[data-theme^="carbon"]:not([data-theme*="light"]) {
|
|
1893
|
+
|
|
1894
|
+
--nuraly-color-label-text: #f4f4f4;
|
|
1895
|
+
--nuraly-color-label-secondary: #c6c6c6;
|
|
1896
|
+
|
|
1897
|
+
--nuraly-color-label-error: #ff8389;
|
|
1898
|
+
--nuraly-color-label-warning: #f1c21b;
|
|
1899
|
+
--nuraly-color-label-success: #42be65;
|
|
1900
|
+
|
|
1901
|
+
--nuraly-color-label-required: #ff8389;
|
|
1902
|
+
|
|
1903
|
+
--nuraly-color-label-disabled: #6f6f6f;
|
|
1904
|
+
}
|
|
1905
|
+
}
|
|
1906
|
+
|
|
1907
|
+
/* ==============================================
|
|
1908
|
+
* card/index.css
|
|
1909
|
+
* ============================================== */
|
|
1910
|
+
|
|
1911
|
+
@media screen {
|
|
1912
|
+
[data-theme="carbon-dark"] {
|
|
1913
|
+
|
|
1914
|
+
--theme-mode: dark;
|
|
1915
|
+
}
|
|
1916
|
+
|
|
1917
|
+
[data-theme="carbon-light"]
|
|
1918
|
+
:root {
|
|
1919
|
+
|
|
1920
|
+
--theme-mode: light;
|
|
1921
|
+
}
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1924
|
+
/* ==============================================
|
|
1925
|
+
* card/common.css
|
|
1926
|
+
* ============================================== */
|
|
1927
|
+
|
|
1928
|
+
[data-theme^="carbon"] {
|
|
1929
|
+
|
|
1930
|
+
--nuraly-card-border-radius: 0;
|
|
1931
|
+
|
|
1932
|
+
--nuraly-card-shadow: none;
|
|
1933
|
+
--nuraly-card-hover-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
|
|
1934
|
+
|
|
1935
|
+
--nuraly-card-font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
1936
|
+
--nuraly-card-font-size: 14px;
|
|
1937
|
+
--nuraly-card-line-height: 1.28571;
|
|
1938
|
+
--nuraly-card-header-font-weight: 600;
|
|
1939
|
+
|
|
1940
|
+
--nuraly-card-padding: 16px;
|
|
1941
|
+
--nuraly-card-small-padding: 12px;
|
|
1942
|
+
--nuraly-card-large-padding: 24px;
|
|
1943
|
+
|
|
1944
|
+
--nuraly-card-small-font-size: 12px;
|
|
1945
|
+
--nuraly-card-large-font-size: 16px;
|
|
1946
|
+
|
|
1947
|
+
--nuraly-card-transition: all 0.15s cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
1948
|
+
|
|
1949
|
+
--nuraly-card-cursor: default;
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1952
|
+
/* ==============================================
|
|
1953
|
+
* card/light.css
|
|
1954
|
+
* ============================================== */
|
|
1955
|
+
|
|
1956
|
+
[data-theme="carbon-light"] {
|
|
1957
|
+
|
|
1958
|
+
--nuraly-card-background-color: #f4f4f4;
|
|
1959
|
+
--nuraly-card-header-background-color: #ffffff;
|
|
1960
|
+
|
|
1961
|
+
--nuraly-card-border: 1px solid #e0e0e0;
|
|
1962
|
+
--nuraly-card-header-border-bottom: 1px solid #e0e0e0;
|
|
1963
|
+
|
|
1964
|
+
--nuraly-card-header-color: #161616;
|
|
1965
|
+
--nuraly-card-content-color: #525252;
|
|
1966
|
+
|
|
1967
|
+
--nuraly-card-hover-background-color: #f4f4f4;
|
|
1968
|
+
--nuraly-card-hover-border-color: #c6c6c6;
|
|
1969
|
+
|
|
1970
|
+
--nuraly-card-focus-outline: 2px solid #0f62fe;
|
|
1971
|
+
--nuraly-card-focus-offset: 2px;
|
|
1972
|
+
}
|
|
1973
|
+
|
|
1974
|
+
/* ==============================================
|
|
1975
|
+
* card/dark.css
|
|
1976
|
+
* ============================================== */
|
|
1977
|
+
|
|
1978
|
+
[data-theme="carbon-dark"] {
|
|
1979
|
+
|
|
1980
|
+
--nuraly-card-background-color: #262626;
|
|
1981
|
+
--nuraly-card-header-background-color: #393939;
|
|
1982
|
+
|
|
1983
|
+
--nuraly-card-border: 1px solid #525252;
|
|
1984
|
+
--nuraly-card-header-border-bottom: 1px solid #525252;
|
|
1985
|
+
|
|
1986
|
+
--nuraly-card-header-color: #f4f4f4;
|
|
1987
|
+
--nuraly-card-content-color: #c6c6c6;
|
|
1988
|
+
|
|
1989
|
+
--nuraly-card-hover-background-color: #393939;
|
|
1990
|
+
--nuraly-card-hover-border-color: #6f6f6f;
|
|
1991
|
+
|
|
1992
|
+
--nuraly-card-focus-outline: 2px solid #0f62fe;
|
|
1993
|
+
--nuraly-card-focus-offset: 2px;
|
|
1994
|
+
|
|
1995
|
+
--nuraly-card-hover-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
|
|
1996
|
+
}
|
|
1997
|
+
|
|
1998
|
+
/* ==============================================
|
|
1999
|
+
* dropdown/index.css
|
|
2000
|
+
* ============================================== */
|
|
2001
|
+
|
|
2002
|
+
/* ==============================================
|
|
2003
|
+
* dropdown/common.css
|
|
2004
|
+
* ============================================== */
|
|
2005
|
+
|
|
2006
|
+
[data-theme^="carbon"] {
|
|
2007
|
+
|
|
2008
|
+
--nuraly-dropdown-font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
|
|
2009
|
+
--nuraly-dropdown-font-size: 0.875rem;
|
|
2010
|
+
--nuraly-dropdown-font-weight: 400;
|
|
2011
|
+
--nuraly-dropdown-line-height: 1.28571;
|
|
2012
|
+
|
|
2013
|
+
--nuraly-dropdown-trigger-padding: 0;
|
|
2014
|
+
--nuraly-dropdown-trigger-border-radius: 0px;
|
|
2015
|
+
|
|
2016
|
+
--nuraly-dropdown-border-radius: 0px;
|
|
2017
|
+
--nuraly-dropdown-border-width: 1px;
|
|
2018
|
+
--nuraly-dropdown-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
|
|
2019
|
+
--nuraly-dropdown-z-index: 9999;
|
|
2020
|
+
--nuraly-dropdown-min-width: 10rem;
|
|
2021
|
+
--nuraly-dropdown-max-width: 20rem;
|
|
2022
|
+
|
|
2023
|
+
--nuraly-dropdown-item-padding: 0.75rem 1rem;
|
|
2024
|
+
--nuraly-dropdown-item-font-size: 0.875rem;
|
|
2025
|
+
--nuraly-dropdown-item-font-weight: 400;
|
|
2026
|
+
--nuraly-dropdown-item-line-height: 1.28571;
|
|
2027
|
+
--nuraly-dropdown-item-border-radius: 0px;
|
|
2028
|
+
--nuraly-dropdown-item-gap: 0.5rem;
|
|
2029
|
+
--nuraly-dropdown-item-transition: background-color 0.11s cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
2030
|
+
|
|
2031
|
+
--nuraly-dropdown-icon-size: 1rem;
|
|
2032
|
+
|
|
2033
|
+
--nuraly-dropdown-divider-width: 1px;
|
|
2034
|
+
--nuraly-dropdown-divider-margin: 0.25rem 0;
|
|
2035
|
+
|
|
2036
|
+
--nuraly-dropdown-arrow-size: 0.5rem;
|
|
2037
|
+
--nuraly-dropdown-arrow-offset: 0.75rem;
|
|
2038
|
+
|
|
2039
|
+
--nuraly-dropdown-small-font-size: 0.75rem;
|
|
2040
|
+
--nuraly-dropdown-small-item-padding: 0.5rem 0.75rem;
|
|
2041
|
+
--nuraly-dropdown-small-icon-size: 0.875rem;
|
|
2042
|
+
|
|
2043
|
+
--nuraly-dropdown-large-font-size: 1rem;
|
|
2044
|
+
--nuraly-dropdown-large-item-padding: 1rem 1.25rem;
|
|
2045
|
+
--nuraly-dropdown-large-icon-size: 1.25rem;
|
|
2046
|
+
|
|
2047
|
+
--nuraly-dropdown-animation-duration: 0.15s;
|
|
2048
|
+
--nuraly-dropdown-animation-timing: cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
2049
|
+
|
|
2050
|
+
--nuraly-dropdown-offset: 0.25rem;
|
|
2051
|
+
|
|
2052
|
+
--nuraly-dropdown-disabled-opacity: 1;
|
|
2053
|
+
--nuraly-dropdown-item-disabled-opacity: 0.25;
|
|
2054
|
+
}
|
|
2055
|
+
|
|
2056
|
+
/* ==============================================
|
|
2057
|
+
* dropdown/light.css
|
|
2058
|
+
* ============================================== */
|
|
2059
|
+
|
|
2060
|
+
[data-theme="carbon-light"] {
|
|
2061
|
+
|
|
2062
|
+
--nuraly-color-dropdown-background: #ffffff;
|
|
2063
|
+
--nuraly-color-dropdown-border: #e0e0e0;
|
|
2064
|
+
--nuraly-color-dropdown-shadow: rgba(0, 0, 0, 0.1);
|
|
2065
|
+
|
|
2066
|
+
--nuraly-color-dropdown-trigger-text: #161616;
|
|
2067
|
+
--nuraly-color-dropdown-trigger-background: transparent;
|
|
2068
|
+
--nuraly-color-dropdown-trigger-border: transparent;
|
|
2069
|
+
|
|
2070
|
+
--nuraly-color-dropdown-item-text: #161616;
|
|
2071
|
+
--nuraly-color-dropdown-item-background: transparent;
|
|
2072
|
+
--nuraly-color-dropdown-item-background-hover: #e5e5e5;
|
|
2073
|
+
--nuraly-color-dropdown-item-text-hover: #161616;
|
|
2074
|
+
--nuraly-color-dropdown-item-background-focus: #e5e5e5;
|
|
2075
|
+
--nuraly-color-dropdown-item-text-focus: #0f62fe;
|
|
2076
|
+
--nuraly-color-dropdown-item-background-active: #c6c6c6;
|
|
2077
|
+
--nuraly-color-dropdown-item-text-active: #161616;
|
|
2078
|
+
|
|
2079
|
+
--nuraly-color-dropdown-item-text-disabled: #c6c6c6;
|
|
2080
|
+
--nuraly-color-dropdown-item-background-disabled: transparent;
|
|
2081
|
+
|
|
2082
|
+
--nuraly-color-dropdown-icon: #525252;
|
|
2083
|
+
--nuraly-color-dropdown-icon-disabled: #c6c6c6;
|
|
2084
|
+
|
|
2085
|
+
--nuraly-color-dropdown-divider: #e0e0e0;
|
|
2086
|
+
|
|
2087
|
+
--nuraly-color-dropdown-arrow: #ffffff;
|
|
2088
|
+
--nuraly-color-dropdown-arrow-border: #e0e0e0;
|
|
2089
|
+
}
|
|
2090
|
+
|
|
2091
|
+
/* ==============================================
|
|
2092
|
+
* dropdown/dark.css
|
|
2093
|
+
* ============================================== */
|
|
2094
|
+
|
|
2095
|
+
[data-theme="carbon-dark"] {
|
|
2096
|
+
|
|
2097
|
+
--nuraly-color-dropdown-background: #262626;
|
|
2098
|
+
--nuraly-color-dropdown-border: #525252;
|
|
2099
|
+
--nuraly-color-dropdown-shadow: rgba(0, 0, 0, 0.5);
|
|
2100
|
+
|
|
2101
|
+
--nuraly-color-dropdown-trigger-text: #f4f4f4;
|
|
2102
|
+
--nuraly-color-dropdown-trigger-background: transparent;
|
|
2103
|
+
--nuraly-color-dropdown-trigger-border: transparent;
|
|
2104
|
+
|
|
2105
|
+
--nuraly-color-dropdown-item-text: #f4f4f4;
|
|
2106
|
+
--nuraly-color-dropdown-item-background: transparent;
|
|
2107
|
+
--nuraly-color-dropdown-item-background-hover: #353535;
|
|
2108
|
+
--nuraly-color-dropdown-item-text-hover: #ffffff;
|
|
2109
|
+
--nuraly-color-dropdown-item-background-focus: #353535;
|
|
2110
|
+
--nuraly-color-dropdown-item-text-focus: #78a9ff;
|
|
2111
|
+
--nuraly-color-dropdown-item-background-active: #525252;
|
|
2112
|
+
--nuraly-color-dropdown-item-text-active: #ffffff;
|
|
2113
|
+
|
|
2114
|
+
--nuraly-color-dropdown-item-text-disabled: #6f6f6f;
|
|
2115
|
+
--nuraly-color-dropdown-item-background-disabled: transparent;
|
|
2116
|
+
|
|
2117
|
+
--nuraly-color-dropdown-icon: #c6c6c6;
|
|
2118
|
+
--nuraly-color-dropdown-icon-disabled: #6f6f6f;
|
|
2119
|
+
|
|
2120
|
+
--nuraly-color-dropdown-divider: #525252;
|
|
2121
|
+
|
|
2122
|
+
--nuraly-color-dropdown-arrow: #262626;
|
|
2123
|
+
--nuraly-color-dropdown-arrow-border: #525252;
|
|
2124
|
+
}
|
|
2125
|
+
|
|
2126
|
+
/* ==============================================
|
|
2127
|
+
* modal/index.css
|
|
2128
|
+
* ============================================== */
|
|
2129
|
+
|
|
2130
|
+
@media screen {
|
|
2131
|
+
[data-theme="carbon-dark"] {
|
|
2132
|
+
|
|
2133
|
+
--theme-mode: dark;
|
|
2134
|
+
}
|
|
2135
|
+
|
|
2136
|
+
[data-theme="carbon-light"] {
|
|
2137
|
+
|
|
2138
|
+
--theme-mode: light;
|
|
2139
|
+
}
|
|
2140
|
+
}
|
|
2141
|
+
|
|
2142
|
+
/* ==============================================
|
|
2143
|
+
* modal/common.css
|
|
2144
|
+
* ============================================== */
|
|
2145
|
+
|
|
2146
|
+
[data-theme^="carbon"]{
|
|
2147
|
+
|
|
2148
|
+
--nuraly-modal-width-small: 400px;
|
|
2149
|
+
--nuraly-modal-width-medium: 600px;
|
|
2150
|
+
--nuraly-modal-width-large: 800px;
|
|
2151
|
+
--nuraly-modal-width-xl: 1000px;
|
|
2152
|
+
|
|
2153
|
+
--nuraly-modal-min-height-small: 200px;
|
|
2154
|
+
--nuraly-modal-min-height-medium: 300px;
|
|
2155
|
+
--nuraly-modal-min-height-large: 400px;
|
|
2156
|
+
--nuraly-modal-min-height-xl: 500px;
|
|
2157
|
+
|
|
2158
|
+
--nuraly-spacing-modal-padding: var(--nuraly-spacing-05, 1rem);
|
|
2159
|
+
--nuraly-spacing-modal-margin: var(--nuraly-spacing-07, 2rem);
|
|
2160
|
+
--nuraly-spacing-modal-top: var(--nuraly-spacing-07, 2rem);
|
|
2161
|
+
--nuraly-spacing-modal-bottom: var(--nuraly-spacing-07, 2rem);
|
|
2162
|
+
|
|
2163
|
+
--nuraly-modal-header-height: 48px;
|
|
2164
|
+
--nuraly-spacing-modal-header: var(--nuraly-spacing-05, 1rem) var(--nuraly-spacing-06, 1.5rem);
|
|
2165
|
+
--nuraly-modal-header-icon-size: 20px;
|
|
2166
|
+
|
|
2167
|
+
--nuraly-spacing-modal-body: var(--nuraly-spacing-05, 1rem) var(--nuraly-spacing-06, 1.5rem);
|
|
2168
|
+
|
|
2169
|
+
--nuraly-modal-footer-height: 64px;
|
|
2170
|
+
--nuraly-spacing-modal-footer: var(--nuraly-spacing-05, 1rem) var(--nuraly-spacing-06, 1.5rem);
|
|
2171
|
+
|
|
2172
|
+
--nuraly-modal-close-size: 28px;
|
|
2173
|
+
--nuraly-modal-close-icon-size: 14px;
|
|
2174
|
+
|
|
2175
|
+
--nuraly-border-radius-modal: 0;
|
|
2176
|
+
|
|
2177
|
+
--nuraly-transition-modal: 0.24s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
2178
|
+
|
|
2179
|
+
--nuraly-z-modal-backdrop: 1000;
|
|
2180
|
+
}
|
|
2181
|
+
|
|
2182
|
+
/* ==============================================
|
|
2183
|
+
* modal/light.css
|
|
2184
|
+
* ============================================== */
|
|
2185
|
+
|
|
2186
|
+
[data-theme="carbon-light"] {
|
|
2187
|
+
|
|
2188
|
+
--nuraly-color-modal-backdrop: rgba(22, 22, 22, 0.5);
|
|
2189
|
+
--nuraly-color-modal-backdrop-nested: rgba(22, 22, 22, 0.7);
|
|
2190
|
+
--nuraly-modal-backdrop-filter: none;
|
|
2191
|
+
|
|
2192
|
+
--nuraly-color-modal-background: #ffffff;
|
|
2193
|
+
--nuraly-border-modal: 1px solid #e0e0e0;
|
|
2194
|
+
--nuraly-shadow-modal:
|
|
2195
|
+
0 6px 16px 0 rgba(0, 0, 0, 0.08),
|
|
2196
|
+
0 3px 6px -4px rgba(0, 0, 0, 0.12),
|
|
2197
|
+
0 9px 28px 8px rgba(0, 0, 0, 0.05);
|
|
2198
|
+
|
|
2199
|
+
--nuraly-border-modal-header: 1px solid #e0e0e0;
|
|
2200
|
+
--nuraly-color-modal-title: #161616;
|
|
2201
|
+
--nuraly-font-size-modal-title: var(--nuraly-font-size-04, 1.125rem);
|
|
2202
|
+
--nuraly-font-weight-modal-title: var(--nuraly-font-weight-medium, 500);
|
|
2203
|
+
--nuraly-color-modal-header-icon: #525252;
|
|
2204
|
+
|
|
2205
|
+
--nuraly-color-modal-body-text: #161616;
|
|
2206
|
+
|
|
2207
|
+
--nuraly-border-modal-footer: 1px solid #e0e0e0;
|
|
2208
|
+
|
|
2209
|
+
--nuraly-color-modal-close-icon: #525252;
|
|
2210
|
+
--nuraly-color-modal-close-icon-hover: #161616;
|
|
2211
|
+
--nuraly-color-modal-close-hover: #f4f4f4;
|
|
2212
|
+
--nuraly-color-modal-close-active: #c6c6c6;
|
|
2213
|
+
}
|
|
2214
|
+
|
|
2215
|
+
/* ==============================================
|
|
2216
|
+
* modal/dark.css
|
|
2217
|
+
* ============================================== */
|
|
2218
|
+
|
|
2219
|
+
[data-theme="carbon-dark"] {
|
|
2220
|
+
|
|
2221
|
+
--nuraly-color-modal-backdrop: rgba(0, 0, 0, 0.6);
|
|
2222
|
+
--nuraly-color-modal-backdrop-nested: rgba(0, 0, 0, 0.8);
|
|
2223
|
+
--nuraly-modal-backdrop-filter: none;
|
|
2224
|
+
|
|
2225
|
+
--nuraly-color-modal-background: #262626;
|
|
2226
|
+
--nuraly-border-modal: 1px solid #525252;
|
|
2227
|
+
--nuraly-shadow-modal:
|
|
2228
|
+
0 6px 16px 0 rgba(0, 0, 0, 0.3),
|
|
2229
|
+
0 3px 6px -4px rgba(0, 0, 0, 0.2),
|
|
2230
|
+
0 9px 28px 8px rgba(0, 0, 0, 0.15);
|
|
2231
|
+
|
|
2232
|
+
--nuraly-border-modal-header: 1px solid #525252;
|
|
2233
|
+
--nuraly-color-modal-title: #f4f4f4;
|
|
2234
|
+
--nuraly-font-size-modal-title: var(--nuraly-font-size-04, 1.125rem);
|
|
2235
|
+
--nuraly-font-weight-modal-title: var(--nuraly-font-weight-medium, 500);
|
|
2236
|
+
--nuraly-color-modal-header-icon: #c6c6c6;
|
|
2237
|
+
|
|
2238
|
+
--nuraly-color-modal-body-text: #f4f4f4;
|
|
2239
|
+
|
|
2240
|
+
--nuraly-border-modal-footer: 1px solid #525252;
|
|
2241
|
+
|
|
2242
|
+
--nuraly-color-modal-close-icon: #c6c6c6;
|
|
2243
|
+
--nuraly-color-modal-close-icon-hover: #f4f4f4;
|
|
2244
|
+
--nuraly-color-modal-close-hover: #393939;
|
|
2245
|
+
--nuraly-color-modal-close-active: #525252;
|
|
2246
|
+
}
|
|
2247
|
+
|
|
2248
|
+
/* ==============================================
|
|
2249
|
+
* tabs/index.css
|
|
2250
|
+
* ============================================== */
|
|
2251
|
+
|
|
2252
|
+
@media screen {
|
|
2253
|
+
[data-theme="carbon-dark"] {
|
|
2254
|
+
|
|
2255
|
+
--theme-mode: dark;
|
|
2256
|
+
}
|
|
2257
|
+
|
|
2258
|
+
[data-theme="carbon-light"] {
|
|
2259
|
+
|
|
2260
|
+
--theme-mode: light;
|
|
2261
|
+
}
|
|
2262
|
+
}
|
|
2263
|
+
|
|
2264
|
+
/* ==============================================
|
|
2265
|
+
* tabs/common.css
|
|
2266
|
+
* ============================================== */
|
|
2267
|
+
|
|
2268
|
+
[data-theme^="carbon"] {
|
|
2269
|
+
|
|
2270
|
+
--nuraly-spacing-tabs-padding: 0.875rem 1rem;
|
|
2271
|
+
--nuraly-spacing-tabs-content-padding: 1rem;
|
|
2272
|
+
|
|
2273
|
+
--nuraly-border-radius-tabs: 0;
|
|
2274
|
+
--nuraly-border-radius-tabs-active: 0.125rem;
|
|
2275
|
+
--nuraly-border-width-tabs: 1px;
|
|
2276
|
+
|
|
2277
|
+
--nuraly-border-radius-tabs-first: 0.125rem 0 0 0.125rem;
|
|
2278
|
+
--nuraly-border-radius-tabs-middle: 0;
|
|
2279
|
+
--nuraly-border-radius-tabs-last: 0 0.125rem 0.125rem 0;
|
|
2280
|
+
--nuraly-border-radius-tabs-single: 0.125rem;
|
|
2281
|
+
|
|
2282
|
+
--nuraly-border-radius-small: 0.125rem;
|
|
2283
|
+
--nuraly-border-radius-medium: 0.25rem;
|
|
2284
|
+
|
|
2285
|
+
--nuraly-font-tabs-weight: 400;
|
|
2286
|
+
--nuraly-font-tabs-size: 0.875rem;
|
|
2287
|
+
--nuraly-font-tabs-line-height: 1.125rem;
|
|
2288
|
+
|
|
2289
|
+
--nuraly-tabs-icon-size: 1rem;
|
|
2290
|
+
--nuraly-tabs-close-icon-size: 1rem;
|
|
2291
|
+
--nuraly-tabs-add-icon-size: 1rem;
|
|
2292
|
+
--nuraly-tabs-add-button-size: 2.5rem;
|
|
2293
|
+
|
|
2294
|
+
--nuraly-tabs-vertical-width: 12rem;
|
|
2295
|
+
|
|
2296
|
+
--nuraly-color-tabs-focus-outline: #0f62fe;
|
|
2297
|
+
--nuraly-color-tabs-focus-ring: rgba(15, 98, 254, 0.2);
|
|
2298
|
+
|
|
2299
|
+
--nuraly-shadow-tabs: none;
|
|
2300
|
+
--nuraly-shadow-tabs-hover: none;
|
|
2301
|
+
--nuraly-shadow-tabs-active: none;
|
|
2302
|
+
--nuraly-shadow-tabs-focus: 0 0 0 2px rgba(15, 98, 254, 0.2);
|
|
2303
|
+
|
|
2304
|
+
--nuraly-transition-tabs: all 0.15s ease;
|
|
2305
|
+
|
|
2306
|
+
--nuraly-color-tabs-disabled: #c6c6c6;
|
|
2307
|
+
--nuraly-color-tabs-disabled-text: #8d8d8d;
|
|
2308
|
+
--nuraly-color-tabs-disabled-border: #c6c6c6;
|
|
2309
|
+
}
|
|
2310
|
+
|
|
2311
|
+
/* ==============================================
|
|
2312
|
+
* tabs/light.css
|
|
2313
|
+
* ============================================== */
|
|
2314
|
+
|
|
2315
|
+
[data-theme="carbon-light"] {
|
|
2316
|
+
|
|
2317
|
+
--nuraly-color-tabs-header-background: #f4f4f4;
|
|
2318
|
+
--nuraly-border-tabs-header: 1px solid #e0e0e0;
|
|
2319
|
+
|
|
2320
|
+
--nuraly-color-tabs-label-background: #f4f4f4;
|
|
2321
|
+
--nuraly-color-tabs-label-text: #161616;
|
|
2322
|
+
--nuraly-border-tabs-label: 1px solid #e0e0e0;
|
|
2323
|
+
|
|
2324
|
+
--nuraly-color-tabs-label-background-hover: #e0e0e0;
|
|
2325
|
+
--nuraly-color-tabs-label-text-hover: #161616;
|
|
2326
|
+
--nuraly-color-tabs-label-border-hover: #c6c6c6;
|
|
2327
|
+
|
|
2328
|
+
--nuraly-color-tabs-label-background-active: #ffffff;
|
|
2329
|
+
--nuraly-color-tabs-label-text-active: #161616;
|
|
2330
|
+
--nuraly-color-tabs-label-border-active: #0f62fe;
|
|
2331
|
+
|
|
2332
|
+
--nuraly-color-tabs-content-background: #ffffff;
|
|
2333
|
+
--nuraly-border-tabs-content: 1px solid #e0e0e0;
|
|
2334
|
+
|
|
2335
|
+
--nuraly-color-tabs-edit-background: rgba(15, 98, 254, 0.1);
|
|
2336
|
+
|
|
2337
|
+
--nuraly-color-tabs-close-icon: #525252;
|
|
2338
|
+
--nuraly-color-tabs-close-icon-hover: #da1e28;
|
|
2339
|
+
--nuraly-color-tabs-close-icon-background-hover: rgba(218, 30, 40, 0.1);
|
|
2340
|
+
--nuraly-color-tabs-close-icon-active: #ba1b23;
|
|
2341
|
+
--nuraly-color-tabs-close-icon-background-active: rgba(218, 30, 40, 0.2);
|
|
2342
|
+
|
|
2343
|
+
--nuraly-color-tabs-add-icon: #0f62fe;
|
|
2344
|
+
--nuraly-color-tabs-add-icon-hover: #0353e9;
|
|
2345
|
+
--nuraly-color-tabs-add-background-hover: rgba(15, 98, 254, 0.1);
|
|
2346
|
+
|
|
2347
|
+
--nuraly-color-border: #e0e0e0;
|
|
2348
|
+
}
|
|
2349
|
+
|
|
2350
|
+
/* ==============================================
|
|
2351
|
+
* tabs/dark.css
|
|
2352
|
+
* ============================================== */
|
|
2353
|
+
|
|
2354
|
+
[data-theme="carbon-dark"] {
|
|
2355
|
+
|
|
2356
|
+
--nuraly-color-tabs-header-background: #262626;
|
|
2357
|
+
--nuraly-border-tabs-header: 1px solid #393939;
|
|
2358
|
+
|
|
2359
|
+
--nuraly-color-tabs-label-background: #262626;
|
|
2360
|
+
--nuraly-color-tabs-label-text: #f4f4f4;
|
|
2361
|
+
--nuraly-border-tabs-label: 1px solid #393939;
|
|
2362
|
+
|
|
2363
|
+
--nuraly-color-tabs-label-background-hover: #393939;
|
|
2364
|
+
--nuraly-color-tabs-label-text-hover: #f4f4f4;
|
|
2365
|
+
--nuraly-color-tabs-label-border-hover: #525252;
|
|
2366
|
+
|
|
2367
|
+
--nuraly-color-tabs-label-background-active: #161616;
|
|
2368
|
+
--nuraly-color-tabs-label-text-active: #f4f4f4;
|
|
2369
|
+
--nuraly-color-tabs-label-border-active: #4589ff;
|
|
2370
|
+
|
|
2371
|
+
--nuraly-color-tabs-content-background: #161616;
|
|
2372
|
+
--nuraly-border-tabs-content: 1px solid #393939;
|
|
2373
|
+
|
|
2374
|
+
--nuraly-color-tabs-edit-background: rgba(69, 137, 255, 0.2);
|
|
2375
|
+
|
|
2376
|
+
--nuraly-color-tabs-close-icon: #c6c6c6;
|
|
2377
|
+
--nuraly-color-tabs-close-icon-hover: #ff8389;
|
|
2378
|
+
--nuraly-color-tabs-close-icon-background-hover: rgba(255, 131, 137, 0.2);
|
|
2379
|
+
--nuraly-color-tabs-close-icon-active: #ff6168;
|
|
2380
|
+
--nuraly-color-tabs-close-icon-background-active: rgba(255, 131, 137, 0.3);
|
|
2381
|
+
|
|
2382
|
+
--nuraly-color-tabs-add-icon: #4589ff;
|
|
2383
|
+
--nuraly-color-tabs-add-icon-hover: #78a9ff;
|
|
2384
|
+
--nuraly-color-tabs-add-background-hover: rgba(69, 137, 255, 0.2);
|
|
2385
|
+
|
|
2386
|
+
--nuraly-color-border: #393939;
|
|
2387
|
+
}
|
|
2388
|
+
|
|
2389
|
+
/* ==============================================
|
|
2390
|
+
* collapse/index.css
|
|
2391
|
+
* ============================================== */
|
|
2392
|
+
|
|
2393
|
+
/* ==============================================
|
|
2394
|
+
* collapse/common.css
|
|
2395
|
+
* ============================================== */
|
|
2396
|
+
|
|
2397
|
+
[data-theme^="carbon"] {
|
|
2398
|
+
|
|
2399
|
+
--nuraly-spacing-collapse-padding: 0.75rem 1rem;
|
|
2400
|
+
--nuraly-spacing-collapse-content-padding: 1rem;
|
|
2401
|
+
--nuraly-spacing-collapse-gap: 0;
|
|
2402
|
+
|
|
2403
|
+
--nuraly-border-radius-collapse: 0;
|
|
2404
|
+
--nuraly-border-radius-collapse-header: 0;
|
|
2405
|
+
--nuraly-border-radius-collapse-content: 0;
|
|
2406
|
+
--nuraly-border-width-collapse: 1px;
|
|
2407
|
+
|
|
2408
|
+
--nuraly-font-collapse-header-weight: 600;
|
|
2409
|
+
--nuraly-font-collapse-header-size: 0.875rem;
|
|
2410
|
+
--nuraly-font-collapse-header-line-height: 1.25rem;
|
|
2411
|
+
--nuraly-font-collapse-content-weight: 400;
|
|
2412
|
+
--nuraly-font-collapse-content-size: 0.875rem;
|
|
2413
|
+
--nuraly-font-collapse-content-line-height: 1.5rem;
|
|
2414
|
+
|
|
2415
|
+
--nuraly-collapse-icon-size: 1rem;
|
|
2416
|
+
--nuraly-collapse-icon-transition: transform 0.2s ease;
|
|
2417
|
+
|
|
2418
|
+
--nuraly-spacing-collapse-small-padding: 0.5rem 0.75rem;
|
|
2419
|
+
--nuraly-spacing-collapse-small-content-padding: 0.75rem;
|
|
2420
|
+
--nuraly-spacing-collapse-medium-padding: 0.75rem 1rem;
|
|
2421
|
+
--nuraly-spacing-collapse-medium-content-padding: 1rem;
|
|
2422
|
+
--nuraly-spacing-collapse-large-padding: 1rem 1.25rem;
|
|
2423
|
+
--nuraly-spacing-collapse-large-content-padding: 1.25rem;
|
|
2424
|
+
|
|
2425
|
+
--nuraly-collapse-transition-duration: 0.15s;
|
|
2426
|
+
--nuraly-collapse-transition-easing: cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
2427
|
+
|
|
2428
|
+
--nuraly-color-collapse-focus-outline: #0f62fe;
|
|
2429
|
+
--nuraly-color-collapse-focus-ring: rgba(15, 98, 254, 0.4);
|
|
2430
|
+
|
|
2431
|
+
--nuraly-opacity-collapse-disabled: 0.5;
|
|
2432
|
+
}
|
|
2433
|
+
|
|
2434
|
+
/* ==============================================
|
|
2435
|
+
* collapse/light.css
|
|
2436
|
+
* ============================================== */
|
|
2437
|
+
|
|
2438
|
+
[data-theme="carbon-light"],
|
|
2439
|
+
:root {
|
|
2440
|
+
|
|
2441
|
+
--nuraly-color-collapse-header-background: #f4f4f4;
|
|
2442
|
+
--nuraly-color-collapse-header-background-hover: #e0e0e0;
|
|
2443
|
+
--nuraly-color-collapse-header-background-active: #c6c6c6;
|
|
2444
|
+
--nuraly-color-collapse-header-background-expanded: #e0e0e0;
|
|
2445
|
+
--nuraly-color-collapse-header-text: #161616;
|
|
2446
|
+
--nuraly-color-collapse-header-text-disabled: #a8a8a8;
|
|
2447
|
+
|
|
2448
|
+
--nuraly-color-collapse-content-background: #ffffff;
|
|
2449
|
+
--nuraly-color-collapse-content-text: #393939;
|
|
2450
|
+
--nuraly-color-collapse-content-text-secondary: #6f6f6f;
|
|
2451
|
+
|
|
2452
|
+
--nuraly-color-collapse-border: #e0e0e0;
|
|
2453
|
+
--nuraly-color-collapse-border-hover: #c6c6c6;
|
|
2454
|
+
--nuraly-color-collapse-border-active: #a8a8a8;
|
|
2455
|
+
--nuraly-color-collapse-border-focus: #0f62fe;
|
|
2456
|
+
|
|
2457
|
+
--nuraly-color-collapse-icon: #393939;
|
|
2458
|
+
--nuraly-color-collapse-icon-hover: #161616;
|
|
2459
|
+
--nuraly-color-collapse-icon-disabled: #a8a8a8;
|
|
2460
|
+
|
|
2461
|
+
--nuraly-shadow-collapse: none;
|
|
2462
|
+
--nuraly-shadow-collapse-hover: none;
|
|
2463
|
+
--nuraly-shadow-collapse-focus: 0 0 0 2px rgba(15, 98, 254, 0.4);
|
|
2464
|
+
|
|
2465
|
+
--nuraly-color-collapse-bordered-border: #e0e0e0;
|
|
2466
|
+
--nuraly-color-collapse-bordered-background: #ffffff;
|
|
2467
|
+
|
|
2468
|
+
--nuraly-color-collapse-ghost-background: transparent;
|
|
2469
|
+
--nuraly-color-collapse-ghost-border: transparent;
|
|
2470
|
+
--nuraly-color-collapse-ghost-hover: #f4f4f4;
|
|
2471
|
+
}
|
|
2472
|
+
|
|
2473
|
+
/* ==============================================
|
|
2474
|
+
* collapse/dark.css
|
|
2475
|
+
* ============================================== */
|
|
2476
|
+
|
|
2477
|
+
[data-theme="carbon-dark"] {
|
|
2478
|
+
|
|
2479
|
+
--nuraly-color-collapse-header-background: #393939;
|
|
2480
|
+
--nuraly-color-collapse-header-background-hover: #4c4c4c;
|
|
2481
|
+
--nuraly-color-collapse-header-background-active: #6f6f6f;
|
|
2482
|
+
--nuraly-color-collapse-header-background-expanded: #4c4c4c;
|
|
2483
|
+
--nuraly-color-collapse-header-text: #f4f4f4;
|
|
2484
|
+
--nuraly-color-collapse-header-text-disabled: #6f6f6f;
|
|
2485
|
+
|
|
2486
|
+
--nuraly-color-collapse-content-background: #262626;
|
|
2487
|
+
--nuraly-color-collapse-content-text: #e0e0e0;
|
|
2488
|
+
--nuraly-color-collapse-content-text-secondary: #a8a8a8;
|
|
2489
|
+
|
|
2490
|
+
--nuraly-color-collapse-border: #525252;
|
|
2491
|
+
--nuraly-color-collapse-border-hover: #6f6f6f;
|
|
2492
|
+
--nuraly-color-collapse-border-active: #8d8d8d;
|
|
2493
|
+
--nuraly-color-collapse-border-focus: #4589ff;
|
|
2494
|
+
|
|
2495
|
+
--nuraly-color-collapse-icon: #e0e0e0;
|
|
2496
|
+
--nuraly-color-collapse-icon-hover: #f4f4f4;
|
|
2497
|
+
--nuraly-color-collapse-icon-disabled: #6f6f6f;
|
|
2498
|
+
|
|
2499
|
+
--nuraly-shadow-collapse: none;
|
|
2500
|
+
--nuraly-shadow-collapse-hover: none;
|
|
2501
|
+
--nuraly-shadow-collapse-focus: 0 0 0 2px rgba(69, 137, 255, 0.4);
|
|
2502
|
+
|
|
2503
|
+
--nuraly-color-collapse-bordered-border: #525252;
|
|
2504
|
+
--nuraly-color-collapse-bordered-background: #262626;
|
|
2505
|
+
|
|
2506
|
+
--nuraly-color-collapse-ghost-background: transparent;
|
|
2507
|
+
--nuraly-color-collapse-ghost-border: transparent;
|
|
2508
|
+
--nuraly-color-collapse-ghost-hover: #393939;
|
|
2509
|
+
}
|
|
2510
|
+
|
|
2511
|
+
/* ==============================================
|
|
2512
|
+
* colorpicker/index.css
|
|
2513
|
+
* ============================================== */
|
|
2514
|
+
|
|
2515
|
+
@media screen {
|
|
2516
|
+
[data-theme="carbon-dark"] {
|
|
2517
|
+
|
|
2518
|
+
--theme-mode: dark;
|
|
2519
|
+
}
|
|
2520
|
+
|
|
2521
|
+
[data-theme="carbon-light"]
|
|
2522
|
+
:root {
|
|
2523
|
+
|
|
2524
|
+
--theme-mode: light;
|
|
2525
|
+
}
|
|
2526
|
+
}
|
|
2527
|
+
|
|
2528
|
+
/* ==============================================
|
|
2529
|
+
* colorpicker/common.css
|
|
2530
|
+
* ============================================== */
|
|
2531
|
+
|
|
2532
|
+
:root,
|
|
2533
|
+
[data-theme="carbon-light"],
|
|
2534
|
+
[data-theme="carbon-dark"] {
|
|
2535
|
+
|
|
2536
|
+
--nuraly-size-colorpicker-default: 32px;
|
|
2537
|
+
--nuraly-size-colorpicker-default-height: 32px;
|
|
2538
|
+
--nuraly-size-colorpicker-small: 24px;
|
|
2539
|
+
--nuraly-size-colorpicker-small-height: 24px;
|
|
2540
|
+
--nuraly-size-colorpicker-large: 40px;
|
|
2541
|
+
--nuraly-size-colorpicker-large-height: 40px;
|
|
2542
|
+
|
|
2543
|
+
--nuraly-border-radius-colorpicker: 0px;
|
|
2544
|
+
--nuraly-border-width-colorpicker: 1px;
|
|
2545
|
+
|
|
2546
|
+
--nuraly-z-index-dropdown: 6000;
|
|
2547
|
+
--nuraly-shadow-dropdown: 0 2px 6px rgba(0, 0, 0, 0.3);
|
|
2548
|
+
--nuraly-border-radius-dropdown: 0px;
|
|
2549
|
+
|
|
2550
|
+
--nuraly-spacing-colorpicker-padding: 8px;
|
|
2551
|
+
--nuraly-spacing-colorpicker-preset-gap: 4px;
|
|
2552
|
+
|
|
2553
|
+
--nuraly-opacity-disabled: 0.5;
|
|
2554
|
+
--nuraly-opacity-hover: 0.85;
|
|
2555
|
+
|
|
2556
|
+
--nuraly-color-focus: rgba(15, 98, 254, 0.5);
|
|
2557
|
+
--nuraly-color-focus-active: rgba(15, 98, 254, 0.8);
|
|
2558
|
+
|
|
2559
|
+
--nuraly-transition-fast: 0.11s;
|
|
2560
|
+
--nuraly-transition-base: 0.15s;
|
|
2561
|
+
}
|
|
2562
|
+
|
|
2563
|
+
/* ==============================================
|
|
2564
|
+
* colorpicker/light.css
|
|
2565
|
+
* ============================================== */
|
|
2566
|
+
|
|
2567
|
+
[data-theme="carbon-light"] {
|
|
2568
|
+
|
|
2569
|
+
--nuraly-color-surface: #f4f4f4;
|
|
2570
|
+
--nuraly-color-surface-hover: #e8e8e8;
|
|
2571
|
+
|
|
2572
|
+
--nuraly-color-border: #c6c6c6;
|
|
2573
|
+
--nuraly-color-border-hover: #8d8d8d;
|
|
2574
|
+
|
|
2575
|
+
--nuraly-color-text: #161616;
|
|
2576
|
+
--nuraly-color-text-secondary: #525252;
|
|
2577
|
+
|
|
2578
|
+
--nuraly-color-background: #ffffff;
|
|
2579
|
+
--nuraly-color-background-hover: #f4f4f4;
|
|
2580
|
+
|
|
2581
|
+
--nuraly-color-dropdown-background: #f4f4f4;
|
|
2582
|
+
--nuraly-color-dropdown-border: #8d8d8d;
|
|
2583
|
+
|
|
2584
|
+
--nuraly-color-colorholder-border: #e0e0e0;
|
|
2585
|
+
--nuraly-color-colorholder-border-hover: #8d8d8d;
|
|
2586
|
+
|
|
2587
|
+
--nuraly-color-preset-background: transparent;
|
|
2588
|
+
--nuraly-color-preset-border: transparent;
|
|
2589
|
+
}
|
|
2590
|
+
|
|
2591
|
+
/* ==============================================
|
|
2592
|
+
* colorpicker/dark.css
|
|
2593
|
+
* ============================================== */
|
|
2594
|
+
|
|
2595
|
+
[data-theme="carbon-dark"],
|
|
2596
|
+
html[data-theme="carbon-dark"],
|
|
2597
|
+
body[data-theme="carbon-dark"],
|
|
2598
|
+
html[data-theme="carbon-dark"] *,
|
|
2599
|
+
body[data-theme="carbon-dark"] * {
|
|
2600
|
+
|
|
2601
|
+
--nuraly-color-surface: #262626 !important;
|
|
2602
|
+
--nuraly-color-surface-hover: #333333 !important;
|
|
2603
|
+
|
|
2604
|
+
--nuraly-color-border: #6f6f6f !important;
|
|
2605
|
+
--nuraly-color-border-hover: #8d8d8d !important;
|
|
2606
|
+
|
|
2607
|
+
--nuraly-color-text: #f4f4f4 !important;
|
|
2608
|
+
--nuraly-color-text-secondary: #c6c6c6 !important;
|
|
2609
|
+
|
|
2610
|
+
--nuraly-color-background: #161616 !important;
|
|
2611
|
+
--nuraly-color-background-hover: #262626 !important;
|
|
2612
|
+
|
|
2613
|
+
--nuraly-color-dropdown-background: #262626 !important;
|
|
2614
|
+
--nuraly-color-dropdown-border: #6f6f6f !important;
|
|
2615
|
+
|
|
2616
|
+
--nuraly-color-colorholder-border: #525252 !important;
|
|
2617
|
+
--nuraly-color-colorholder-border-hover: #8d8d8d !important;
|
|
2618
|
+
|
|
2619
|
+
--nuraly-color-preset-background: transparent !important;
|
|
2620
|
+
--nuraly-color-preset-border: transparent !important;
|
|
2621
|
+
|
|
2622
|
+
--nuraly-shadow-dropdown: 0 2px 6px rgba(0, 0, 0, 0.8) !important;
|
|
2623
|
+
}
|
|
2624
|
+
|
|
2625
|
+
/* ==============================================
|
|
2626
|
+
* tag/index.css
|
|
2627
|
+
* ============================================== */
|
|
2628
|
+
|
|
2629
|
+
/* ==============================================
|
|
2630
|
+
* tag/common.css
|
|
2631
|
+
* ============================================== */
|
|
2632
|
+
|
|
2633
|
+
:root,
|
|
2634
|
+
[data-theme="carbon-light"],
|
|
2635
|
+
[data-theme="carbon-dark"] {
|
|
2636
|
+
--nuraly-tag-padding-x: 8px;
|
|
2637
|
+
--nuraly-tag-padding-y: 2px;
|
|
2638
|
+
--nuraly-tag-padding-x-sm: 6px;
|
|
2639
|
+
--nuraly-tag-padding-y-sm: 1px;
|
|
2640
|
+
--nuraly-tag-font-size: var(--nuraly-font-size-sm);
|
|
2641
|
+
--nuraly-tag-font-size-sm: var(--nuraly-font-size-xs);
|
|
2642
|
+
--nuraly-tag-radius: var(--nuraly-border-radius-sm);
|
|
2643
|
+
--nuraly-tag-gap: 6px;
|
|
2644
|
+
}
|
|
2645
|
+
|
|
2646
|
+
/* ==============================================
|
|
2647
|
+
* tag/light.css
|
|
2648
|
+
* ============================================== */
|
|
2649
|
+
|
|
2650
|
+
[data-theme="carbon-light"] {
|
|
2651
|
+
--nuraly-tag-bg: var(--nuraly-color-surface, #f4f4f4);
|
|
2652
|
+
--nuraly-tag-color: var(--nuraly-color-text, #161616);
|
|
2653
|
+
--nuraly-tag-border-color: var(--nuraly-color-border, #e0e0e0);
|
|
2654
|
+
--nuraly-tag-checkable-hover-bg: #e8e8e8;
|
|
2655
|
+
--nuraly-tag-checked-bg: #ddeeff;
|
|
2656
|
+
--nuraly-tag-checked-color: #0043ce;
|
|
2657
|
+
--nuraly-tag-checked-border-color: #0f62fe;
|
|
2658
|
+
}
|
|
2659
|
+
|
|
2660
|
+
/* ==============================================
|
|
2661
|
+
* tag/dark.css
|
|
2662
|
+
* ============================================== */
|
|
2663
|
+
|
|
2664
|
+
[data-theme="carbon-dark"] {
|
|
2665
|
+
--nuraly-tag-bg: #262626;
|
|
2666
|
+
--nuraly-tag-color: #f4f4f4;
|
|
2667
|
+
--nuraly-tag-border-color: #393939;
|
|
2668
|
+
--nuraly-tag-checkable-hover-bg: #333333;
|
|
2669
|
+
--nuraly-tag-checked-bg: #002d9c33;
|
|
2670
|
+
--nuraly-tag-checked-color: #4589ff;
|
|
2671
|
+
--nuraly-tag-checked-border-color: #78a9ff;
|
|
2672
|
+
}
|
|
2673
|
+
|
|
2674
|
+
/* ==============================================
|
|
2675
|
+
* chatbot/index.css
|
|
2676
|
+
* ============================================== */
|
|
2677
|
+
|
|
2678
|
+
/* ==============================================
|
|
2679
|
+
* chatbot/common.css
|
|
2680
|
+
* ============================================== */
|
|
2681
|
+
|
|
2682
|
+
[data-theme^="carbon"] {
|
|
2683
|
+
|
|
2684
|
+
--nuraly-size-chatbot-width: 100%;
|
|
2685
|
+
--nuraly-size-chatbot-max-width: none;
|
|
2686
|
+
--nuraly-size-chatbot-height: 600px;
|
|
2687
|
+
--nuraly-size-chatbot-min-height: 400px;
|
|
2688
|
+
--nuraly-border-radius-chatbot: 0;
|
|
2689
|
+
|
|
2690
|
+
--nuraly-spacing-chatbot-messages-padding: var(--nuraly-spacing-04, 0.75rem);
|
|
2691
|
+
--nuraly-spacing-chatbot-messages-gap: var(--nuraly-spacing-04, 0.75rem);
|
|
2692
|
+
--nuraly-size-chatbot-messages-max-height: calc(100% - 140px);
|
|
2693
|
+
--nuraly-size-chatbot-messages-max-width: none;
|
|
2694
|
+
|
|
2695
|
+
--nuraly-spacing-chatbot-message-padding-vertical: var(--nuraly-spacing-03, 0.5rem);
|
|
2696
|
+
--nuraly-spacing-chatbot-message-padding-horizontal: var(--nuraly-spacing-04, 0.75rem);
|
|
2697
|
+
--nuraly-spacing-chatbot-message-margin: var(--nuraly-spacing-03, 0.5rem) 0;
|
|
2698
|
+
--nuraly-border-radius-chatbot-message: 18px;
|
|
2699
|
+
--nuraly-size-chatbot-message-max-width: 90%;
|
|
2700
|
+
--nuraly-font-size-chatbot-message: 16px;
|
|
2701
|
+
--nuraly-line-height-chatbot-message: 1.5;
|
|
2702
|
+
|
|
2703
|
+
--nuraly-font-size-chatbot-timestamp: 11px;
|
|
2704
|
+
--nuraly-spacing-chatbot-timestamp-margin: var(--nuraly-spacing-02, 0.25rem) 0 0 0;
|
|
2705
|
+
--nuraly-opacity-chatbot-timestamp: 0.7;
|
|
2706
|
+
|
|
2707
|
+
--nuraly-spacing-chatbot-input-area-padding: var(--nuraly-spacing-06, 1.5rem);
|
|
2708
|
+
--nuraly-border-width-chatbot-input-area: 1px;
|
|
2709
|
+
--nuraly-size-chatbot-input-min-height: 52px;
|
|
2710
|
+
--nuraly-spacing-chatbot-input-gap: var(--nuraly-spacing-04, 0.75rem);
|
|
2711
|
+
--nuraly-border-radius-chatbot-input: 26px;
|
|
2712
|
+
|
|
2713
|
+
--nuraly-spacing-chatbot-suggestions-gap: var(--nuraly-spacing-04, 0.75rem);
|
|
2714
|
+
--nuraly-spacing-chatbot-suggestions-margin: var(--nuraly-spacing-05, 1rem) 0;
|
|
2715
|
+
--nuraly-spacing-chatbot-suggestion-padding-vertical: var(--nuraly-spacing-02, 0.25rem);
|
|
2716
|
+
--nuraly-spacing-chatbot-suggestion-padding-horizontal: var(--nuraly-spacing-04, 0.75rem);
|
|
2717
|
+
--nuraly-border-radius-chatbot-suggestion: 24px;
|
|
2718
|
+
--nuraly-font-size-chatbot-suggestion: 15px;
|
|
2719
|
+
|
|
2720
|
+
--nuraly-spacing-chatbot-file-upload-padding: var(--nuraly-spacing-05, 1rem);
|
|
2721
|
+
--nuraly-border-radius-chatbot-file-upload: 12px;
|
|
2722
|
+
--nuraly-border-width-chatbot-file-upload: 2px;
|
|
2723
|
+
--nuraly-border-style-chatbot-file-upload: dashed;
|
|
2724
|
+
--nuraly-size-chatbot-file-upload-min-height: 120px;
|
|
2725
|
+
|
|
2726
|
+
--nuraly-size-chatbot-file-preview: 32px;
|
|
2727
|
+
--nuraly-spacing-chatbot-file-preview-gap: var(--nuraly-spacing-03, 0.5rem);
|
|
2728
|
+
--nuraly-border-radius-chatbot-file-preview: var(--nuraly-spacing-02, 0.25rem);
|
|
2729
|
+
|
|
2730
|
+
--nuraly-size-chatbot-typing-dot: 6px;
|
|
2731
|
+
--nuraly-animation-chatbot-typing-duration: 1.4s;
|
|
2732
|
+
|
|
2733
|
+
--nuraly-size-chatbot-action-button: 32px;
|
|
2734
|
+
--nuraly-spacing-chatbot-action-button-gap: var(--nuraly-spacing-02, 0.25rem);
|
|
2735
|
+
--nuraly-border-radius-chatbot-action-button: 16px;
|
|
2736
|
+
|
|
2737
|
+
--nuraly-size-chatbot-sidebar-width: 260px;
|
|
2738
|
+
--nuraly-spacing-chatbot-sidebar-padding: var(--nuraly-spacing-04, 0.75rem);
|
|
2739
|
+
|
|
2740
|
+
--nuraly-size-chatbot-send-button-width: 32px;
|
|
2741
|
+
--nuraly-size-chatbot-send-button-height: 32px;
|
|
2742
|
+
--nuraly-border-radius-chatbot-send-button: 16px;
|
|
2743
|
+
|
|
2744
|
+
--nuraly-border-radius-chatbot-dropdown-panel: 8px;
|
|
2745
|
+
--nuraly-size-chatbot-dropdown-panel-min-width: 160px;
|
|
2746
|
+
--nuraly-shadow-chatbot-dropdown-panel: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
2747
|
+
|
|
2748
|
+
--nuraly-transition-chatbot-fast: var(--nuraly-transition-fast, 0.15s ease-out);
|
|
2749
|
+
--nuraly-transition-chatbot-normal: var(--nuraly-transition-normal, 0.25s ease-out);
|
|
2750
|
+
--nuraly-transition-chatbot-slow: var(--nuraly-transition-slow, 0.35s ease-out);
|
|
2751
|
+
|
|
2752
|
+
--nuraly-z-index-chatbot-input: 10;
|
|
2753
|
+
--nuraly-z-index-chatbot-suggestions: 20;
|
|
2754
|
+
--nuraly-z-index-chatbot-file-upload: 30;
|
|
2755
|
+
--nuraly-z-index-chatbot-typing: 5;
|
|
2756
|
+
--nuraly-z-index-chatbot-dropdown: 100;
|
|
2757
|
+
|
|
2758
|
+
--nuraly-spacing-chatbot-boxed-padding: var(--nuraly-spacing-07, 1.5rem);
|
|
2759
|
+
--nuraly-size-chatbot-boxed-max-width: 768px;
|
|
2760
|
+
--nuraly-size-chatbot-boxed-content-max-width: 100%;
|
|
2761
|
+
--nuraly-spacing-chatbot-boxed-content-padding: var(--nuraly-spacing-06, 1.5rem);
|
|
2762
|
+
--nuraly-border-radius-chatbot-boxed: 12px;
|
|
2763
|
+
--nuraly-shadow-chatbot-boxed: 0 4px 24px rgba(0, 0, 0, 0.1);
|
|
2764
|
+
}
|
|
2765
|
+
|
|
2766
|
+
/* ==============================================
|
|
2767
|
+
* chatbot/light.css
|
|
2768
|
+
* ============================================== */
|
|
2769
|
+
|
|
2770
|
+
[data-theme="carbon-light"] {
|
|
2771
|
+
|
|
2772
|
+
--nuraly-color-chatbot-background: #ffffff;
|
|
2773
|
+
--nuraly-color-chatbot-surface: #f9f9f9;
|
|
2774
|
+
--nuraly-color-chatbot-surface-hover: #f1f1f1;
|
|
2775
|
+
--nuraly-color-chatbot-border: #e5e5e5;
|
|
2776
|
+
--nuraly-shadow-chatbot: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
2777
|
+
|
|
2778
|
+
--nuraly-color-chatbot-sidebar-background: #f7f7f8;
|
|
2779
|
+
--nuraly-color-chatbot-sidebar-border: #d1d5db;
|
|
2780
|
+
--nuraly-color-chatbot-sidebar-text: #374151;
|
|
2781
|
+
|
|
2782
|
+
--nuraly-color-chatbot-message-user-background: #343541;
|
|
2783
|
+
--nuraly-color-chatbot-message-user-text: #ffffff;
|
|
2784
|
+
--nuraly-color-chatbot-message-user-border: transparent;
|
|
2785
|
+
|
|
2786
|
+
--nuraly-color-chatbot-message-bot-background: transparent;
|
|
2787
|
+
--nuraly-color-chatbot-message-bot-text: #374151;
|
|
2788
|
+
--nuraly-color-chatbot-message-bot-border: transparent;
|
|
2789
|
+
|
|
2790
|
+
--nuraly-color-chatbot-message-error-background: #fff1f1;
|
|
2791
|
+
--nuraly-color-chatbot-message-error-text: #da1e28;
|
|
2792
|
+
--nuraly-color-chatbot-message-error-border: #da1e28;
|
|
2793
|
+
|
|
2794
|
+
--nuraly-color-chatbot-message-system-background: #f4f4f4;
|
|
2795
|
+
--nuraly-color-chatbot-message-system-text: #6f6f6f;
|
|
2796
|
+
--nuraly-color-chatbot-message-system-border: #e0e0e0;
|
|
2797
|
+
|
|
2798
|
+
--nuraly-color-chatbot-text-primary: #2d2d2d;
|
|
2799
|
+
--nuraly-color-chatbot-text-secondary: #676767;
|
|
2800
|
+
--nuraly-color-chatbot-text-helper: #8e8e8e;
|
|
2801
|
+
--nuraly-color-chatbot-text-on-accent: #ffffff;
|
|
2802
|
+
--nuraly-color-chatbot-text-disabled: #c4c4c4;
|
|
2803
|
+
|
|
2804
|
+
--nuraly-color-chatbot-timestamp: #9ca3af;
|
|
2805
|
+
|
|
2806
|
+
--nuraly-color-chatbot-input-background: #ffffff;
|
|
2807
|
+
--nuraly-color-chatbot-input-text: #2d2d2d;
|
|
2808
|
+
--nuraly-color-chatbot-input-placeholder: #8e8ea0;
|
|
2809
|
+
--nuraly-color-chatbot-input-border: #d9d9e3;
|
|
2810
|
+
--nuraly-color-chatbot-input-border-focus: #10a37f;
|
|
2811
|
+
|
|
2812
|
+
--nuraly-color-chatbot-suggestion-background: #f4f4f4;
|
|
2813
|
+
--nuraly-color-chatbot-suggestion-background-hover: #e8e8e8;
|
|
2814
|
+
--nuraly-color-chatbot-suggestion-background-active: #d9d9d9;
|
|
2815
|
+
--nuraly-color-chatbot-suggestion-text: #2d2d2d;
|
|
2816
|
+
--nuraly-color-chatbot-suggestion-border: #e0e0e0;
|
|
2817
|
+
--nuraly-color-chatbot-suggestion-border-hover: #c5c5d2;
|
|
2818
|
+
--nuraly-color-chatbot-suggestion-focus: #10a37f;
|
|
2819
|
+
|
|
2820
|
+
--nuraly-color-chatbot-send-button-background: #10a37f;
|
|
2821
|
+
--nuraly-color-chatbot-send-button-background-hover: #0d8f6e;
|
|
2822
|
+
--nuraly-color-chatbot-send-button-background-active: #0a7c5d;
|
|
2823
|
+
--nuraly-color-chatbot-send-button-background-disabled: #d9d9e3;
|
|
2824
|
+
--nuraly-color-chatbot-send-button-text: #ffffff;
|
|
2825
|
+
--nuraly-color-chatbot-send-button-text-disabled: #8e8ea0;
|
|
2826
|
+
--nuraly-color-chatbot-send-button-focus: #10a37f;
|
|
2827
|
+
|
|
2828
|
+
--nuraly-color-chatbot-file-upload-background: rgba(15, 98, 254, 0.05);
|
|
2829
|
+
--nuraly-color-chatbot-file-upload-background-hover: rgba(15, 98, 254, 0.1);
|
|
2830
|
+
--nuraly-color-chatbot-file-upload-border: #0f62fe;
|
|
2831
|
+
--nuraly-color-chatbot-file-upload-text: #161616;
|
|
2832
|
+
--nuraly-color-chatbot-file-upload-helper: #6f6f6f;
|
|
2833
|
+
|
|
2834
|
+
--nuraly-color-chatbot-file-preview-background: #ffffff;
|
|
2835
|
+
--nuraly-color-chatbot-file-preview-border: #e0e0e0;
|
|
2836
|
+
--nuraly-color-chatbot-file-preview-text: #161616;
|
|
2837
|
+
--nuraly-color-chatbot-file-preview-icon: #525252;
|
|
2838
|
+
|
|
2839
|
+
--nuraly-color-chatbot-typing-dot: #8d8d8d;
|
|
2840
|
+
--nuraly-color-chatbot-typing-background: #ffffff;
|
|
2841
|
+
--nuraly-color-chatbot-typing-text: #6f6f6f;
|
|
2842
|
+
|
|
2843
|
+
--nuraly-color-chatbot-action-button-background: transparent;
|
|
2844
|
+
--nuraly-color-chatbot-action-button-background-hover: #f4f4f4;
|
|
2845
|
+
--nuraly-color-chatbot-action-button-text: #525252;
|
|
2846
|
+
--nuraly-color-chatbot-action-button-text-hover: #161616;
|
|
2847
|
+
--nuraly-color-chatbot-action-button-border: #e0e0e0;
|
|
2848
|
+
--nuraly-color-chatbot-action-button-border-hover: #525252;
|
|
2849
|
+
--nuraly-color-chatbot-action-button-focus: #0f62fe;
|
|
2850
|
+
--nuraly-color-chatbot-action-button-background-disabled: #f4f4f4;
|
|
2851
|
+
--nuraly-color-chatbot-action-button-text-disabled: #c6c6c6;
|
|
2852
|
+
--nuraly-color-chatbot-action-button-border-disabled: #e0e0e0;
|
|
2853
|
+
|
|
2854
|
+
--nuraly-color-chatbot-dropdown-panel-background: #ffffff;
|
|
2855
|
+
--nuraly-color-chatbot-dropdown-panel-border: #e5e5e5;
|
|
2856
|
+
|
|
2857
|
+
--nuraly-color-chatbot-boxed-background: #f7f7f8;
|
|
2858
|
+
|
|
2859
|
+
--nuraly-color-chatbot-accent: #10a37f;
|
|
2860
|
+
--nuraly-color-chatbot-accent-hover: #0d8f72;
|
|
2861
|
+
--nuraly-color-chatbot-accent-active: #0a7c66;
|
|
2862
|
+
|
|
2863
|
+
--nuraly-color-chatbot-thread-background: transparent;
|
|
2864
|
+
--nuraly-color-chatbot-thread-background-hover: #e8e8e8;
|
|
2865
|
+
--nuraly-color-chatbot-thread-background-active: #0f62fe;
|
|
2866
|
+
--nuraly-color-chatbot-thread-text: #161616;
|
|
2867
|
+
--nuraly-color-chatbot-thread-text-active: #ffffff;
|
|
2868
|
+
|
|
2869
|
+
--nuraly-color-chatbot-disabled: #c6c6c6;
|
|
2870
|
+
--nuraly-color-chatbot-disabled-text: #8d8d8d;
|
|
2871
|
+
|
|
2872
|
+
--nuraly-color-chatbot-scrollbar-track: #f4f4f4;
|
|
2873
|
+
--nuraly-color-chatbot-scrollbar-thumb: #c6c6c6;
|
|
2874
|
+
--nuraly-color-chatbot-scrollbar-thumb-hover: #a8a8a8;
|
|
2875
|
+
}
|
|
2876
|
+
|
|
2877
|
+
/* ==============================================
|
|
2878
|
+
* chatbot/dark.css
|
|
2879
|
+
* ============================================== */
|
|
2880
|
+
|
|
2881
|
+
[data-theme="carbon-dark"] {
|
|
2882
|
+
|
|
2883
|
+
--nuraly-color-chatbot-background: #161616;
|
|
2884
|
+
--nuraly-color-chatbot-surface: #262626;
|
|
2885
|
+
--nuraly-color-chatbot-surface-hover: #353535;
|
|
2886
|
+
--nuraly-color-chatbot-border: #393939;
|
|
2887
|
+
--nuraly-shadow-chatbot: none;
|
|
2888
|
+
|
|
2889
|
+
--nuraly-color-chatbot-sidebar-background: #262626;
|
|
2890
|
+
--nuraly-color-chatbot-sidebar-border: #393939;
|
|
2891
|
+
--nuraly-color-chatbot-sidebar-text: #f4f4f4;
|
|
2892
|
+
|
|
2893
|
+
--nuraly-color-chatbot-message-user-background: #262626;
|
|
2894
|
+
--nuraly-color-chatbot-message-user-text: #f4f4f4;
|
|
2895
|
+
--nuraly-color-chatbot-message-user-border: transparent;
|
|
2896
|
+
|
|
2897
|
+
--nuraly-color-chatbot-message-bot-background: transparent;
|
|
2898
|
+
--nuraly-color-chatbot-message-bot-text: #f4f4f4;
|
|
2899
|
+
--nuraly-color-chatbot-message-bot-border: transparent;
|
|
2900
|
+
|
|
2901
|
+
--nuraly-color-chatbot-message-error-background: rgba(218, 30, 40, 0.1);
|
|
2902
|
+
--nuraly-color-chatbot-message-error-text: #ff8389;
|
|
2903
|
+
--nuraly-color-chatbot-message-error-border: #da1e28;
|
|
2904
|
+
|
|
2905
|
+
--nuraly-color-chatbot-message-system-background: #262626;
|
|
2906
|
+
--nuraly-color-chatbot-message-system-text: #a8a8a8;
|
|
2907
|
+
--nuraly-color-chatbot-message-system-border: #393939;
|
|
2908
|
+
|
|
2909
|
+
--nuraly-color-chatbot-text-primary: #f4f4f4;
|
|
2910
|
+
--nuraly-color-chatbot-text-secondary: #c6c6c6;
|
|
2911
|
+
--nuraly-color-chatbot-text-helper: #a8a8a8;
|
|
2912
|
+
--nuraly-color-chatbot-text-on-accent: #ffffff;
|
|
2913
|
+
--nuraly-color-chatbot-text-disabled: #6f6f6f;
|
|
2914
|
+
|
|
2915
|
+
--nuraly-color-chatbot-timestamp: #8d8d8d;
|
|
2916
|
+
|
|
2917
|
+
--nuraly-color-chatbot-input-background: #262626;
|
|
2918
|
+
--nuraly-color-chatbot-input-text: #f4f4f4;
|
|
2919
|
+
--nuraly-color-chatbot-input-placeholder: #6f6f6f;
|
|
2920
|
+
--nuraly-color-chatbot-input-border: #393939;
|
|
2921
|
+
--nuraly-color-chatbot-input-border-focus: #0f62fe;
|
|
2922
|
+
|
|
2923
|
+
--nuraly-color-chatbot-suggestion-background: #262626;
|
|
2924
|
+
--nuraly-color-chatbot-suggestion-background-hover: #353535;
|
|
2925
|
+
--nuraly-color-chatbot-suggestion-background-active: #404040;
|
|
2926
|
+
--nuraly-color-chatbot-suggestion-text: #f4f4f4;
|
|
2927
|
+
--nuraly-color-chatbot-suggestion-border: #393939;
|
|
2928
|
+
--nuraly-color-chatbot-suggestion-border-hover: #0f62fe;
|
|
2929
|
+
--nuraly-color-chatbot-suggestion-focus: #0f62fe;
|
|
2930
|
+
|
|
2931
|
+
--nuraly-color-chatbot-send-button-background: #0f62fe;
|
|
2932
|
+
--nuraly-color-chatbot-send-button-background-hover: #0353e9;
|
|
2933
|
+
--nuraly-color-chatbot-send-button-background-active: #0530ad;
|
|
2934
|
+
--nuraly-color-chatbot-send-button-background-disabled: #393939;
|
|
2935
|
+
--nuraly-color-chatbot-send-button-text: #ffffff;
|
|
2936
|
+
--nuraly-color-chatbot-send-button-text-disabled: #6f6f6f;
|
|
2937
|
+
--nuraly-color-chatbot-send-button-focus: #0f62fe;
|
|
2938
|
+
|
|
2939
|
+
--nuraly-color-chatbot-file-upload-background: rgba(15, 98, 254, 0.1);
|
|
2940
|
+
--nuraly-color-chatbot-file-upload-background-hover: rgba(15, 98, 254, 0.15);
|
|
2941
|
+
--nuraly-color-chatbot-file-upload-border: #0f62fe;
|
|
2942
|
+
--nuraly-color-chatbot-file-upload-text: #f4f4f4;
|
|
2943
|
+
--nuraly-color-chatbot-file-upload-helper: #a8a8a8;
|
|
2944
|
+
|
|
2945
|
+
--nuraly-color-chatbot-file-preview-background: #262626;
|
|
2946
|
+
--nuraly-color-chatbot-file-preview-border: #393939;
|
|
2947
|
+
--nuraly-color-chatbot-file-preview-text: #f4f4f4;
|
|
2948
|
+
--nuraly-color-chatbot-file-preview-icon: #c6c6c6;
|
|
2949
|
+
|
|
2950
|
+
--nuraly-color-chatbot-typing-dot: #8d8d8d;
|
|
2951
|
+
--nuraly-color-chatbot-typing-background: #161616;
|
|
2952
|
+
--nuraly-color-chatbot-typing-text: #a8a8a8;
|
|
2953
|
+
|
|
2954
|
+
--nuraly-color-chatbot-action-button-background: transparent;
|
|
2955
|
+
--nuraly-color-chatbot-action-button-background-hover: #393939;
|
|
2956
|
+
--nuraly-color-chatbot-action-button-text: #c6c6c6;
|
|
2957
|
+
--nuraly-color-chatbot-action-button-text-hover: #f4f4f4;
|
|
2958
|
+
--nuraly-color-chatbot-action-button-border: #525252;
|
|
2959
|
+
--nuraly-color-chatbot-action-button-border-hover: #c6c6c6;
|
|
2960
|
+
--nuraly-color-chatbot-action-button-focus: #0f62fe;
|
|
2961
|
+
--nuraly-color-chatbot-action-button-background-disabled: #262626;
|
|
2962
|
+
--nuraly-color-chatbot-action-button-text-disabled: #6f6f6f;
|
|
2963
|
+
--nuraly-color-chatbot-action-button-border-disabled: #393939;
|
|
2964
|
+
|
|
2965
|
+
--nuraly-color-chatbot-dropdown-panel-background: #262626;
|
|
2966
|
+
--nuraly-color-chatbot-dropdown-panel-border: #393939;
|
|
2967
|
+
|
|
2968
|
+
--nuraly-color-chatbot-boxed-background: #0d1117;
|
|
2969
|
+
|
|
2970
|
+
--nuraly-color-chatbot-accent: #0f62fe;
|
|
2971
|
+
--nuraly-color-chatbot-accent-hover: #0353e9;
|
|
2972
|
+
--nuraly-color-chatbot-accent-active: #002d9c;
|
|
2973
|
+
|
|
2974
|
+
--nuraly-color-chatbot-thread-background: transparent;
|
|
2975
|
+
--nuraly-color-chatbot-thread-background-hover: #353535;
|
|
2976
|
+
--nuraly-color-chatbot-thread-background-active: #0f62fe;
|
|
2977
|
+
--nuraly-color-chatbot-thread-text: #f4f4f4;
|
|
2978
|
+
--nuraly-color-chatbot-thread-text-active: #ffffff;
|
|
2979
|
+
|
|
2980
|
+
--nuraly-color-chatbot-disabled: #6f6f6f;
|
|
2981
|
+
--nuraly-color-chatbot-disabled-text: #525252;
|
|
2982
|
+
|
|
2983
|
+
--nuraly-color-chatbot-scrollbar-track: #262626;
|
|
2984
|
+
--nuraly-color-chatbot-scrollbar-thumb: #525252;
|
|
2985
|
+
--nuraly-color-chatbot-scrollbar-thumb-hover: #6f6f6f;
|
|
2986
|
+
}
|
|
2987
|
+
|