@incursa/ui-kit 0.4.1 → 1.0.1
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/AI-AGENT-INSTRUCTIONS.md +5 -4
- package/LLMS.txt +23 -7
- package/README.md +28 -10
- package/dist/inc-design-language.css +64 -62
- package/dist/inc-design-language.css.map +1 -1
- package/dist/inc-design-language.js +27 -0
- package/dist/inc-design-language.min.css +1 -1
- package/dist/inc-design-language.min.css.map +1 -1
- package/package.json +6 -3
- package/src/_inc-tokens.scss +12 -0
- package/src/inc-design-language.js +27 -0
- package/src/inc-design-language.scss +49 -142
package/AI-AGENT-INSTRUCTIONS.md
CHANGED
|
@@ -8,8 +8,8 @@ Repository brand assets live under `assets/brand/`. Prefer those local files whe
|
|
|
8
8
|
|
|
9
9
|
- Prefer `dist/inc-design-language.css` if the target app already has working HTML and only needs the look.
|
|
10
10
|
- Prefer `src/inc-design-language.scss` if you need to tune tokens, density, or Bootstrap defaults.
|
|
11
|
-
- Prefer `dist/inc-design-language.js` only for stateful UI primitives such as menus, tabs,
|
|
12
|
-
- Prefer `reference.html` when you need copy/paste starter markup for a supported control before composing a full page.
|
|
11
|
+
- Prefer `dist/inc-design-language.js` only for stateful UI primitives such as menus, tabs, collapsible sections, modal/offcanvas shells, native dialog launch hooks, and auto-refresh widgets.
|
|
12
|
+
- Prefer `reference.html` when you need copy/paste starter markup for a supported control or page-frame primitive before composing a full page.
|
|
13
13
|
- Prefer `states.html`, `forms-and-validation.html`, and `data-grid-advanced.html` when the target screen is workflow-heavy and you need realistic composition patterns, not isolated snippets.
|
|
14
14
|
|
|
15
15
|
## Naming rules
|
|
@@ -34,11 +34,11 @@ Repository brand assets live under `assets/brand/`. Prefer those local files whe
|
|
|
34
34
|
Use `inc-card` for plain cards and `inc-header-body inc-header-body--card` for titled sections with actions.
|
|
35
35
|
Use `inc-header-body--table-body` when the body contains a table and should keep section padding without adding extra bottom table margin.
|
|
36
36
|
- App layout:
|
|
37
|
-
Use `inc-app-shell`, `inc-footer-bar`, `inc-navbar`, `inc-breadcrumb`, `inc-nav-triad`, and `inc-sidebar-menu` when you need an opinionated application frame instead of isolated components.
|
|
37
|
+
Use `inc-app-shell`, `inc-page`, `inc-breadcrumb-body`, `inc-footer-bar`, `inc-footer-bar__menu`, `inc-footer-bar__meta`, `inc-navbar`, `inc-breadcrumb`, `inc-nav-triad`, and `inc-sidebar-menu` when you need an opinionated application frame instead of isolated components.
|
|
38
38
|
- States and workflow:
|
|
39
39
|
Use `inc-state-panel`, `inc-permission-banner`, `inc-toast-card`, `inc-timeline`, `inc-file-dropzone`, `inc-file-row`, and `inc-key-value` for non-happy-path and detail-heavy B2B flows.
|
|
40
40
|
- Interaction:
|
|
41
|
-
Use `data-inc-toggle="menu"`, `data-inc-toggle="tab"`, and `data-inc-toggle="collapse"` with `data-inc-target="#target-id"` when you want the optional vanilla-JS helper to wire behavior.
|
|
41
|
+
Use `data-inc-toggle="menu"`, `data-inc-toggle="tab"`, and `data-inc-toggle="collapse"` with `data-inc-target="#target-id"` when you want the optional vanilla-JS helper to wire behavior. Use `data-inc-toggle="modal"`, `data-inc-toggle="offcanvas"`, `data-inc-dismiss="modal"`, `data-inc-dismiss="offcanvas"`, and `data-inc-native-dialog-open` only when the helper-managed or launch-hook contract is the intended path.
|
|
42
42
|
- Native interaction:
|
|
43
43
|
Use `details.inc-disclosure` for section stacks, `details.inc-native-menu` for lightweight menus, and `dialog.inc-native-dialog` for native modal surfaces.
|
|
44
44
|
- Status:
|
|
@@ -55,6 +55,7 @@ Repository brand assets live under `assets/brand/`. Prefer those local files whe
|
|
|
55
55
|
|
|
56
56
|
## Packaging
|
|
57
57
|
|
|
58
|
+
- Use `npm run verify` before versioning when you want to rebuild, smoke-test, and dry-run the package.
|
|
58
59
|
- Use `npm run build` to rebuild distributables.
|
|
59
60
|
- Use `npm pack` or `npm run package` to produce a local installable tarball.
|
|
60
61
|
- The repository is licensed under Apache 2.0.
|
package/LLMS.txt
CHANGED
|
@@ -10,32 +10,47 @@ Package identity:
|
|
|
10
10
|
|
|
11
11
|
Fast path:
|
|
12
12
|
- Use `dist/inc-design-language.css` if the target app already has working HTML and mainly needs the visual language.
|
|
13
|
-
- Use `dist/inc-design-language.js` only for stateful primitives such as menus, tabs, and
|
|
13
|
+
- Use `dist/inc-design-language.js` only for stateful primitives such as menus, tabs, collapsible sections, auto-refresh widgets, the native dialog launch hook, and legacy modal/offcanvas shells.
|
|
14
14
|
- Use `src/inc-design-language.scss` if the consumer needs to tune tokens, theme variables, density, or Bootstrap defaults.
|
|
15
15
|
|
|
16
16
|
Primary files:
|
|
17
17
|
- `dist/inc-design-language.css`: compiled standalone CSS output.
|
|
18
|
-
- `dist/inc-design-language.js`: optional dependency-free helper for menus, tabs, and
|
|
18
|
+
- `dist/inc-design-language.js`: optional dependency-free helper for menus, tabs, collapsible sections, auto-refresh widgets, the native dialog launch hook, and legacy modal/offcanvas shells.
|
|
19
19
|
- `src/inc-design-language.scss`: main SCSS entrypoint.
|
|
20
20
|
- `src/_inc-theme.scss`: brand-facing fonts, palette, semantic surfaces, and text colors.
|
|
21
21
|
- `src/_inc-tokens.scss`: deeper token and Bootstrap-facing overrides.
|
|
22
|
-
- `reference.html`: copy/paste catalog for standard controls and
|
|
22
|
+
- `reference.html`: copy/paste catalog for standard controls, page-frame primitives, metric variants, and overlay shells.
|
|
23
|
+
- `specs/architecture/_index.md`: design-rationale layer for token boundaries, helper scope, and package intent.
|
|
24
|
+
- `specs/requirements/ui-kit/_index.md`: first-pass Spec Trace suite for the UI kit.
|
|
25
|
+
- `specs/requirements/ui-kit/REQUIREMENT-GAPS.md`: unresolved requirement gaps and follow-up questions.
|
|
26
|
+
- `specs/requirements/ui-kit/SPEC-UIK-STD.md`: public surface standards for `inc-` naming and accessible interactive behavior.
|
|
27
|
+
- `specs/requirements/ui-kit/SPEC-UIK-CNV.md`: shared control conventions for base-plus-modifier surfaces, density suffixes, and state hooks.
|
|
28
|
+
- `specs/verification/ui-kit/_index.md`: auditable source-review and smoke-validation baseline for the UI kit surface.
|
|
23
29
|
- `states.html`, `forms-and-validation.html`, `data-grid-advanced.html`, `overlay-workflows.html`: workflow-heavy composition patterns.
|
|
24
30
|
- `demo.html`, `work-queue.html`, `record-detail.html`, `native-patterns.html`: fuller page examples.
|
|
25
31
|
|
|
26
32
|
Public naming rules:
|
|
27
33
|
- Use the `inc-` prefix for public classes.
|
|
28
34
|
- Keep the existing BEM structure: `inc-block`, `inc-block__element`, `inc-block--modifier`.
|
|
35
|
+
- Use the shared control modifier grammar for density, expansion, and state hooks instead of inventing one-off suffixes.
|
|
36
|
+
- Avoid nested element names such as `inc-form__check__input`; keep public element names one level deep.
|
|
37
|
+
- Preserve native semantics and accessible focus/disabled/hidden states for interactive surfaces.
|
|
38
|
+
- Treat light and dark as global theme concerns activated through `data-bs-theme` on the root scope, not public component-class modifiers.
|
|
29
39
|
|
|
30
40
|
Core primitives:
|
|
41
|
+
- Typography: use `inc-text`, `inc-heading`, `inc-data`, `inc-button-text`, `inc-form-text`, and `inc-table-text` for public text helpers.
|
|
31
42
|
- Tables: start with `inc-table`; use modifiers such as `inc-table__cell--numeric`, `inc-table__cell--action`, `inc-table__cell--min`, and `inc-table__cell--expand`.
|
|
32
|
-
- Buttons: use `inc-btn` with semantic modifiers such as `inc-btn--primary`, `inc-btn--secondary`, and `inc-btn--danger`.
|
|
33
|
-
- Forms: use `inc-form--inline`, `inc-form__field`, `inc-
|
|
43
|
+
- Buttons: use `inc-btn` with semantic modifiers such as `inc-btn--primary`, `inc-btn--secondary`, and `inc-btn--danger`. Keep the visual treatment identical on `<button>` and `<a>` markup, use `<button>` for in-place actions, use `<a>` for navigation, and use `inc-btn--micro` for in-row actions.
|
|
44
|
+
- Forms: use `inc-form--inline`, `inc-form__field`, `inc-form__fieldset`, `inc-form__legend`, `inc-form__control`, `inc-form__select`, `inc-input-group`, `inc-readonly-field`, `inc-form-text`, `inc-form__feedback--error`, `inc-form__feedback--success`, and `inc-form__error-summary`.
|
|
45
|
+
- Form choices: use `inc-form__check`, `inc-form__check-input`, `inc-form__check-label`, `inc-form__switch`, and `inc-form__choices` for checkbox and radio groups.
|
|
46
|
+
- Control conventions: use the shared base-plus-modifier patterns from `SPEC-UIK-CNV.md` for density, expansion, and state hooks.
|
|
47
|
+
- Control density: use the shared `inc-control-density-micro-*` tokens for compact buttons, inputs, selects, and input groups instead of hard-coded micro values.
|
|
34
48
|
- Filter bars: use `inc-filter-bar`, `inc-filter-chip`, and `inc-bulk-bar`.
|
|
35
49
|
- Cards and shells: use `inc-card` for plain cards. Use `inc-header-body` for titled sections with actions. Use `inc-header-body--table-body` when the body contains a table and should keep body padding without extra bottom table margin.
|
|
36
|
-
- App layout: use `inc-app-shell`, `inc-footer-bar`, `inc-navbar`, `inc-breadcrumb`, `inc-nav-triad`, and `inc-sidebar-menu`.
|
|
50
|
+
- App layout: use `inc-app-shell`, `inc-page`, `inc-breadcrumb-body`, `inc-footer-bar`, `inc-footer-bar__menu`, `inc-footer-bar__meta`, `inc-navbar`, `inc-breadcrumb`, `inc-nav-triad`, and `inc-sidebar-menu`.
|
|
51
|
+
- Utilities: use `inc-u-stack-*`, `inc-u-gap-*`, `inc-grid`, `inc-row`, `inc-col`, `inc-stack`, and `inc-flex-*` when composition needs a public helper class.
|
|
37
52
|
- States and workflow: use `inc-state-panel`, `inc-permission-banner`, `inc-toast-card`, `inc-timeline`, `inc-file-dropzone`, `inc-file-row`, and `inc-key-value`.
|
|
38
|
-
- Interaction: use `data-inc-toggle="menu"`, `data-inc-toggle="tab"`, and `data-inc-toggle="collapse"` with `data-inc-target="#target-id"` when you want the helper to wire behavior.
|
|
53
|
+
- Interaction: use `data-inc-toggle="menu"`, `data-inc-toggle="tab"`, and `data-inc-toggle="collapse"` with `data-inc-target="#target-id"` when you want the helper to wire behavior. Use `data-inc-dismiss="modal"` / `data-inc-dismiss="offcanvas"`, `data-inc-accordion`, `data-inc-backdrop-for`, `data-inc-initial-focus`, `data-inc-auto-refresh`, and the `data-inc-refresh-seconds`, `data-inc-refresh-label`, `data-inc-refresh-loading-label`, `data-inc-refresh-paused-label`, `data-inc-refresh-pause-action-label`, and `data-inc-refresh-resume-action-label` hooks when you need the rest of the helper contract. Use `data-inc-native-dialog-open="dialog-id"` when you want the helper to open a native `<dialog>`.
|
|
39
54
|
- Native interaction: use `details.inc-disclosure`, `details.inc-native-menu`, and `dialog.inc-native-dialog`.
|
|
40
55
|
- Status: use `inc-badge--success|warning|danger|info`.
|
|
41
56
|
- Metrics: use `inc-summary-overview` and `inc-summary-block`.
|
|
@@ -47,6 +62,7 @@ Customization order:
|
|
|
47
62
|
4. Only add new component rules after checking whether an existing `inc-*` block already fits.
|
|
48
63
|
|
|
49
64
|
Packaging and build:
|
|
65
|
+
- `npm run verify` rebuilds distributables, runs the smoke gate, and dry-runs the package.
|
|
50
66
|
- `npm run build` rebuilds distributables.
|
|
51
67
|
- `npm pack` or `npm run package` produces a local installable tarball.
|
|
52
68
|
- The compiled CSS already includes the Bootstrap layer it was built from, so consumers do not need Bootstrap CSS at runtime when using compiled assets.
|
package/README.md
CHANGED
|
@@ -21,14 +21,16 @@ Licensed under Apache 2.0.
|
|
|
21
21
|
- Bootstrap theming overrides for colors, typography, spacing, borders, inputs, cards, tabs, and tables.
|
|
22
22
|
- Dense but readable table styling with strong teal headers and mono-friendly numeric cells.
|
|
23
23
|
- Compact action buttons and inline forms that work well inside grids and table rows.
|
|
24
|
-
- Card, section-shell, summary-block, vertical-list, and layout primitives used across admin screens.
|
|
24
|
+
- Card, section-shell, summary-block, page-frame, vertical-list, and layout primitives used across admin screens.
|
|
25
25
|
- Status-oriented badges and alerts with soft backgrounds and stronger foreground/border cues.
|
|
26
26
|
- Validation states, error summaries, fieldset/legend groups, filter chips, and dense toolbar patterns for search-heavy screens.
|
|
27
27
|
- Operational states such as empty, no-results, loading, error, permission, lock, toast, live-region, auto-refresh, and activity timeline surfaces.
|
|
28
28
|
- Bulk-action, sticky-header, and row-state table patterns for operator-facing grids.
|
|
29
29
|
- File/document dropzones, file rows, read-only description-list grids, progress/meter surfaces, and drawer-style side panels.
|
|
30
|
-
-
|
|
31
|
-
-
|
|
30
|
+
- Contextual floating content for tooltip and popover shells anchored to a trigger.
|
|
31
|
+
- A small overlay/navigation layer for tabs, pagination, dropdown actions, native details/dialog patterns, and compatibility modals/offcanvas panels.
|
|
32
|
+
- Opinionated app-shell pieces for navbar/topbar, breadcrumb/nav-triad, page-frame wrappers, footer-bar action clusters, sticky footer, user menu, and common two/three-column page layouts.
|
|
33
|
+
- A public-surface standards layer for `inc-` prefixing, BEM naming, and accessible interactive behavior.
|
|
32
34
|
|
|
33
35
|
## What was intentionally left out
|
|
34
36
|
|
|
@@ -36,6 +38,13 @@ Licensed under Apache 2.0.
|
|
|
36
38
|
- App-specific background art and report/print-only styling.
|
|
37
39
|
- Feature-specific one-off classes that do not generalize cleanly across products.
|
|
38
40
|
|
|
41
|
+
## Specification Baseline
|
|
42
|
+
|
|
43
|
+
- First-pass Spec Trace suite: [specs/requirements/ui-kit/_index.md](./specs/requirements/ui-kit/_index.md)
|
|
44
|
+
- Open requirement gaps and follow-up questions: [specs/requirements/ui-kit/REQUIREMENT-GAPS.md](./specs/requirements/ui-kit/REQUIREMENT-GAPS.md)
|
|
45
|
+
- Architecture / design-rationale layer: [specs/architecture/_index.md](./specs/architecture/_index.md)
|
|
46
|
+
- Verification baseline and smoke gate: [specs/verification/ui-kit/_index.md](./specs/verification/ui-kit/_index.md)
|
|
47
|
+
|
|
39
48
|
## Files
|
|
40
49
|
|
|
41
50
|
- `assets/brand/`
|
|
@@ -49,7 +58,7 @@ Licensed under Apache 2.0.
|
|
|
49
58
|
- `dist/inc-design-language.css`
|
|
50
59
|
Compiled standalone CSS output.
|
|
51
60
|
- `dist/inc-design-language.js`
|
|
52
|
-
Optional vanilla-JS helper for menus, tabs, collapsible sections, and auto-refresh widgets with pause/resume controls.
|
|
61
|
+
Optional vanilla-JS helper for menus, tabs, collapsible sections, modal/offcanvas shells, native dialog launch hooks, and auto-refresh widgets with pause/resume controls.
|
|
53
62
|
- `index.html`
|
|
54
63
|
Showcase hub for the included example pages.
|
|
55
64
|
- `demo.html`
|
|
@@ -63,7 +72,11 @@ Licensed under Apache 2.0.
|
|
|
63
72
|
- `overlay-workflows.html`
|
|
64
73
|
Modal and offcanvas workflow example with validation and assignment flows.
|
|
65
74
|
- `reference.html`
|
|
66
|
-
Copy/paste catalog for the standard controls and markup patterns.
|
|
75
|
+
Copy/paste catalog for the standard controls, page framing, metrics, lists, overlays, and markup patterns.
|
|
76
|
+
- `specs/requirements/ui-kit/`
|
|
77
|
+
First-pass Spec Trace specification suite for the UI kit, including the gap log for unresolved questions.
|
|
78
|
+
- `specs/verification/ui-kit/`
|
|
79
|
+
Auditable verification baseline for the current UI kit public surface, including the repo-local smoke gate.
|
|
67
80
|
- `states.html`
|
|
68
81
|
Empty, no-results, loading, error, permission, timeline, file, and notification patterns.
|
|
69
82
|
- `forms-and-validation.html`
|
|
@@ -85,6 +98,9 @@ Examples:
|
|
|
85
98
|
|
|
86
99
|
- `inc-table`
|
|
87
100
|
- `inc-btn`
|
|
101
|
+
- `inc-text`
|
|
102
|
+
- `inc-heading`
|
|
103
|
+
- `inc-data`
|
|
88
104
|
- `inc-card`
|
|
89
105
|
- `inc-header-body`
|
|
90
106
|
- `inc-summary-block`
|
|
@@ -110,9 +126,10 @@ For titled sections that wrap tables, use `inc-header-body--table-body` to keep
|
|
|
110
126
|
|
|
111
127
|
- CSS-only/native behavior is enough for layout, cards, tables, buttons, alerts, form fields, badges, breadcrumbs, sticky footer, and most surface styling.
|
|
112
128
|
- Stateful controls still need behavior:
|
|
113
|
-
tabs, collapsible sections, menus/dropdowns,
|
|
129
|
+
tabs, collapsible sections, menus/dropdowns, modal and offcanvas shells, and auto-refresh countdowns with pause/resume behavior.
|
|
130
|
+
- Alert and toast surfaces stay CSS/HTML-first unless the consuming app adds its own dismissal or lifecycle logic.
|
|
114
131
|
- This package now includes an optional dependency-free helper at `dist/inc-design-language.js` for:
|
|
115
|
-
user-menu dropdowns, tab switching, collapse/accordion toggles, and page auto-refresh countdown widgets.
|
|
132
|
+
user-menu dropdowns, tab switching, collapse/accordion toggles, legacy modal/offcanvas shells, native dialog launching, and page auto-refresh countdown widgets.
|
|
116
133
|
- This package also includes native-styled patterns for:
|
|
117
134
|
`details.inc-disclosure`, `details.inc-native-menu`, `dialog.inc-native-dialog`, and `dialog.inc-native-dialog--drawer`.
|
|
118
135
|
- If you prefer native HTML behavior where possible, use browser primitives like `<details>` and `<dialog>` for product-specific implementations. The helper exists for places where the design language is intentionally Bootstrap-like and needs matching interaction behavior.
|
|
@@ -122,7 +139,7 @@ For titled sections that wrap tables, use `inc-header-body--table-body` to keep
|
|
|
122
139
|
If you just want the look in another app:
|
|
123
140
|
|
|
124
141
|
1. Copy `dist/inc-design-language.css`.
|
|
125
|
-
2. If you need interactive tabs/menus/collapses, also copy `dist/inc-design-language.js`.
|
|
142
|
+
2. If you need interactive tabs/menus/collapses or helper-managed overlays, also copy `dist/inc-design-language.js`.
|
|
126
143
|
3. Load the CSS after your reset or base stylesheet.
|
|
127
144
|
4. Load the optional JS near the end of the page.
|
|
128
145
|
5. Use the `inc-*` classes shown in `reference.html` for direct copy/paste control markup.
|
|
@@ -138,12 +155,13 @@ This repository is shaped as a normal npm package:
|
|
|
138
155
|
- `npm pack` produces a local tarball.
|
|
139
156
|
- `publishConfig.access` is set for public scoped publishing.
|
|
140
157
|
- GitHub Actions is set up for npm Trusted Publishing on release.
|
|
158
|
+
- `npm run verify` is the repo-local build, smoke, and dry-run package gate.
|
|
141
159
|
|
|
142
160
|
Typical flow:
|
|
143
161
|
|
|
144
162
|
```bash
|
|
145
163
|
npm install
|
|
146
|
-
npm run
|
|
164
|
+
npm run verify
|
|
147
165
|
npm pack
|
|
148
166
|
```
|
|
149
167
|
|
|
@@ -226,7 +244,7 @@ For normal releases:
|
|
|
226
244
|
"@
|
|
227
245
|
```
|
|
228
246
|
|
|
229
|
-
Use `minor` or `major` when needed. The script verifies the repo state, bumps the version, runs the package validation step, updates `CHANGELOG.md`, creates the release commit and tag, and pushes them. Pushing the tag publishes the package to npm automatically. If you need to retry a failed publish, rerun the original tag-triggered workflow run rather than dispatching a separate manual publish.
|
|
247
|
+
Use `minor` or `major` when needed. The script verifies the repo state, bumps the version, runs the build, smoke, and package validation step, updates `CHANGELOG.md`, creates the release commit and tag, and pushes them. Pushing the tag publishes the package to npm automatically. If you need to retry a failed publish, rerun the original tag-triggered workflow run rather than dispatching a separate manual publish.
|
|
230
248
|
|
|
231
249
|
## Use it as source
|
|
232
250
|
|
|
@@ -2000,8 +2000,7 @@ progress {
|
|
|
2000
2000
|
border-color: var(--bs-table-border-color);
|
|
2001
2001
|
}
|
|
2002
2002
|
|
|
2003
|
-
.table-light
|
|
2004
|
-
.inc-table__header th.inc-table__header--light, .inc-table--light {
|
|
2003
|
+
.table-light {
|
|
2005
2004
|
--bs-table-color: #121316;
|
|
2006
2005
|
--bs-table-bg: #f6f6f6;
|
|
2007
2006
|
--bs-table-border-color: rgb(200.4, 200.6, 201.2);
|
|
@@ -2015,8 +2014,7 @@ progress {
|
|
|
2015
2014
|
border-color: var(--bs-table-border-color);
|
|
2016
2015
|
}
|
|
2017
2016
|
|
|
2018
|
-
.table-dark
|
|
2019
|
-
.inc-table__header th.inc-table__header--dark, .inc-table--dark {
|
|
2017
|
+
.table-dark {
|
|
2020
2018
|
--bs-table-color: #ffffff;
|
|
2021
2019
|
--bs-table-bg: #121316;
|
|
2022
2020
|
--bs-table-border-color: rgb(65.4, 66.2, 68.6);
|
|
@@ -2313,7 +2311,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
2313
2311
|
padding-left: 1.5em;
|
|
2314
2312
|
margin-bottom: 0.125rem;
|
|
2315
2313
|
}
|
|
2316
|
-
.form-check .form-check-input, .form-check .inc-
|
|
2314
|
+
.form-check .form-check-input, .form-check .inc-form__check-input, .inc-form__check .form-check-input, .inc-form__check .inc-form__check-input {
|
|
2317
2315
|
float: left;
|
|
2318
2316
|
margin-left: -1.5em;
|
|
2319
2317
|
}
|
|
@@ -2323,13 +2321,13 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
2323
2321
|
padding-left: 0;
|
|
2324
2322
|
text-align: right;
|
|
2325
2323
|
}
|
|
2326
|
-
.form-check-reverse .form-check-input, .form-check-reverse .inc-
|
|
2324
|
+
.form-check-reverse .form-check-input, .form-check-reverse .inc-form__check-input {
|
|
2327
2325
|
float: right;
|
|
2328
2326
|
margin-right: -1.5em;
|
|
2329
2327
|
margin-left: 0;
|
|
2330
2328
|
}
|
|
2331
2329
|
|
|
2332
|
-
.form-check-input, .inc-
|
|
2330
|
+
.form-check-input, .inc-form__check-input {
|
|
2333
2331
|
--bs-form-check-bg: #ffffff;
|
|
2334
2332
|
flex-shrink: 0;
|
|
2335
2333
|
width: 1em;
|
|
@@ -2345,41 +2343,41 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
2345
2343
|
border: var(--bs-border-width) solid var(--bs-border-color);
|
|
2346
2344
|
print-color-adjust: exact;
|
|
2347
2345
|
}
|
|
2348
|
-
.form-check-input[type=checkbox], [type=checkbox].inc-
|
|
2346
|
+
.form-check-input[type=checkbox], [type=checkbox].inc-form__check-input {
|
|
2349
2347
|
border-radius: 0.25em;
|
|
2350
2348
|
}
|
|
2351
|
-
.form-check-input[type=radio], [type=radio].inc-
|
|
2349
|
+
.form-check-input[type=radio], [type=radio].inc-form__check-input {
|
|
2352
2350
|
border-radius: 50%;
|
|
2353
2351
|
}
|
|
2354
|
-
.form-check-input:active, .inc-
|
|
2352
|
+
.form-check-input:active, .inc-form__check-input:active {
|
|
2355
2353
|
filter: brightness(90%);
|
|
2356
2354
|
}
|
|
2357
|
-
.form-check-input:focus, .inc-
|
|
2355
|
+
.form-check-input:focus, .inc-form__check-input:focus {
|
|
2358
2356
|
border-color: #b9c5ff;
|
|
2359
2357
|
outline: 0;
|
|
2360
2358
|
box-shadow: 0 0 0 0.25rem rgba(68, 89, 198, 0.25);
|
|
2361
2359
|
}
|
|
2362
|
-
.form-check-input:checked, .inc-
|
|
2360
|
+
.form-check-input:checked, .inc-form__check-input:checked {
|
|
2363
2361
|
background-color: #4459c6;
|
|
2364
2362
|
border-color: #4459c6;
|
|
2365
2363
|
}
|
|
2366
|
-
.form-check-input:checked[type=checkbox], .inc-
|
|
2364
|
+
.form-check-input:checked[type=checkbox], .inc-form__check-input:checked[type=checkbox] {
|
|
2367
2365
|
--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
|
|
2368
2366
|
}
|
|
2369
|
-
.form-check-input:checked[type=radio], .inc-
|
|
2367
|
+
.form-check-input:checked[type=radio], .inc-form__check-input:checked[type=radio] {
|
|
2370
2368
|
--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23ffffff'/%3e%3c/svg%3e");
|
|
2371
2369
|
}
|
|
2372
|
-
.form-check-input[type=checkbox]:indeterminate, [type=checkbox].inc-
|
|
2370
|
+
.form-check-input[type=checkbox]:indeterminate, [type=checkbox].inc-form__check-input:indeterminate {
|
|
2373
2371
|
background-color: #4459c6;
|
|
2374
2372
|
border-color: #4459c6;
|
|
2375
2373
|
--bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
|
|
2376
2374
|
}
|
|
2377
|
-
.form-check-input:disabled, .inc-
|
|
2375
|
+
.form-check-input:disabled, .inc-form__check-input:disabled {
|
|
2378
2376
|
pointer-events: none;
|
|
2379
2377
|
filter: none;
|
|
2380
2378
|
opacity: 0.5;
|
|
2381
2379
|
}
|
|
2382
|
-
.form-check-input[disabled] ~ .form-check-label, .form-check-input[disabled] ~ .inc-
|
|
2380
|
+
.form-check-input[disabled] ~ .form-check-label, .form-check-input[disabled] ~ .inc-form__check-label, [disabled].inc-form__check-input ~ .form-check-label, [disabled].inc-form__check-input ~ .inc-form__check-label, .form-check-input:disabled ~ .form-check-label, .form-check-input:disabled ~ .inc-form__check-label, .inc-form__check-input:disabled ~ .form-check-label, .inc-form__check-input:disabled ~ .inc-form__check-label {
|
|
2383
2381
|
cursor: default;
|
|
2384
2382
|
opacity: 0.5;
|
|
2385
2383
|
}
|
|
@@ -2387,7 +2385,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
2387
2385
|
.form-switch, .inc-form__switch {
|
|
2388
2386
|
padding-left: 2.5em;
|
|
2389
2387
|
}
|
|
2390
|
-
.form-switch .form-check-input, .inc-form__switch .form-check-input, .form-switch .inc-
|
|
2388
|
+
.form-switch .form-check-input, .inc-form__switch .form-check-input, .form-switch .inc-form__check-input, .inc-form__switch .inc-form__check-input {
|
|
2391
2389
|
--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%2842, 49, 66, 0.25%29'/%3e%3c/svg%3e");
|
|
2392
2390
|
width: 2em;
|
|
2393
2391
|
margin-left: -2.5em;
|
|
@@ -2397,14 +2395,14 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
2397
2395
|
transition: background-position 0.15s ease-in-out;
|
|
2398
2396
|
}
|
|
2399
2397
|
@media (prefers-reduced-motion: reduce) {
|
|
2400
|
-
.form-switch .form-check-input, .inc-form__switch .form-check-input, .form-switch .inc-
|
|
2398
|
+
.form-switch .form-check-input, .inc-form__switch .form-check-input, .form-switch .inc-form__check-input, .inc-form__switch .inc-form__check-input {
|
|
2401
2399
|
transition: none;
|
|
2402
2400
|
}
|
|
2403
2401
|
}
|
|
2404
|
-
.form-switch .form-check-input:focus, .inc-form__switch .form-check-input:focus, .form-switch .inc-
|
|
2402
|
+
.form-switch .form-check-input:focus, .inc-form__switch .form-check-input:focus, .form-switch .inc-form__check-input:focus, .inc-form__switch .inc-form__check-input:focus {
|
|
2405
2403
|
--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23b9c5ff'/%3e%3c/svg%3e");
|
|
2406
2404
|
}
|
|
2407
|
-
.form-switch .form-check-input:checked, .inc-form__switch .form-check-input:checked, .form-switch .inc-
|
|
2405
|
+
.form-switch .form-check-input:checked, .inc-form__switch .form-check-input:checked, .form-switch .inc-form__check-input:checked, .inc-form__switch .inc-form__check-input:checked {
|
|
2408
2406
|
background-position: right center;
|
|
2409
2407
|
--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e");
|
|
2410
2408
|
}
|
|
@@ -2412,7 +2410,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
2412
2410
|
padding-right: 2.5em;
|
|
2413
2411
|
padding-left: 0;
|
|
2414
2412
|
}
|
|
2415
|
-
.form-switch.form-check-reverse .form-check-input, .form-check-reverse.inc-form__switch .form-check-input, .form-switch.form-check-reverse .inc-
|
|
2413
|
+
.form-switch.form-check-reverse .form-check-input, .form-check-reverse.inc-form__switch .form-check-input, .form-switch.form-check-reverse .inc-form__check-input, .form-check-reverse.inc-form__switch .inc-form__check-input {
|
|
2416
2414
|
margin-right: -2.5em;
|
|
2417
2415
|
margin-left: 0;
|
|
2418
2416
|
}
|
|
@@ -2433,7 +2431,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
2433
2431
|
opacity: 0.65;
|
|
2434
2432
|
}
|
|
2435
2433
|
|
|
2436
|
-
[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus), [data-bs-theme=dark] .inc-form__switch .form-check-input:not(:checked):not(:focus), [data-bs-theme=dark] .form-switch .inc-
|
|
2434
|
+
[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus), [data-bs-theme=dark] .inc-form__switch .form-check-input:not(:checked):not(:focus), [data-bs-theme=dark] .form-switch .inc-form__check-input:not(:checked):not(:focus), [data-bs-theme=dark] .inc-form__switch .inc-form__check-input:not(:checked):not(:focus) {
|
|
2437
2435
|
--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e");
|
|
2438
2436
|
}
|
|
2439
2437
|
|
|
@@ -2878,20 +2876,20 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
2878
2876
|
width: calc(3rem + calc(1.5em + 0.75rem));
|
|
2879
2877
|
}
|
|
2880
2878
|
|
|
2881
|
-
.was-validated .form-check-input:valid, .was-validated .inc-
|
|
2879
|
+
.was-validated .form-check-input:valid, .was-validated .inc-form__check-input:valid, .form-check-input.is-valid, .form-check-input.inc-form--is-valid, .is-valid.inc-form__check-input, .inc-form__check-input.inc-form--is-valid {
|
|
2882
2880
|
border-color: var(--bs-form-valid-border-color);
|
|
2883
2881
|
}
|
|
2884
|
-
.was-validated .form-check-input:valid:checked, .was-validated .inc-
|
|
2882
|
+
.was-validated .form-check-input:valid:checked, .was-validated .inc-form__check-input:valid:checked, .form-check-input.is-valid:checked, .form-check-input.inc-form--is-valid:checked, .is-valid.inc-form__check-input:checked, .inc-form__check-input.inc-form--is-valid:checked {
|
|
2885
2883
|
background-color: var(--bs-form-valid-color);
|
|
2886
2884
|
}
|
|
2887
|
-
.was-validated .form-check-input:valid:focus, .was-validated .inc-
|
|
2885
|
+
.was-validated .form-check-input:valid:focus, .was-validated .inc-form__check-input:valid:focus, .form-check-input.is-valid:focus, .form-check-input.inc-form--is-valid:focus, .is-valid.inc-form__check-input:focus, .inc-form__check-input.inc-form--is-valid:focus {
|
|
2888
2886
|
box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
|
|
2889
2887
|
}
|
|
2890
|
-
.was-validated .form-check-input:valid ~ .form-check-label, .was-validated .form-check-input:valid ~ .inc-
|
|
2888
|
+
.was-validated .form-check-input:valid ~ .form-check-label, .was-validated .form-check-input:valid ~ .inc-form__check-label, .was-validated .inc-form__check-input:valid ~ .form-check-label, .was-validated .inc-form__check-input:valid ~ .inc-form__check-label, .form-check-input.is-valid ~ .form-check-label, .form-check-input.inc-form--is-valid ~ .form-check-label, .form-check-input.is-valid ~ .inc-form__check-label, .form-check-input.inc-form--is-valid ~ .inc-form__check-label, .is-valid.inc-form__check-input ~ .form-check-label, .inc-form__check-input.inc-form--is-valid ~ .form-check-label, .is-valid.inc-form__check-input ~ .inc-form__check-label, .inc-form__check-input.inc-form--is-valid ~ .inc-form__check-label {
|
|
2891
2889
|
color: var(--bs-form-valid-color);
|
|
2892
2890
|
}
|
|
2893
2891
|
|
|
2894
|
-
.form-check-inline .form-check-input ~ .valid-feedback, .form-check-inline .form-check-input ~ .inc-form__valid-feedback, .form-check-inline .inc-
|
|
2892
|
+
.form-check-inline .form-check-input ~ .valid-feedback, .form-check-inline .form-check-input ~ .inc-form__valid-feedback, .form-check-inline .inc-form__check-input ~ .valid-feedback, .form-check-inline .inc-form__check-input ~ .inc-form__valid-feedback {
|
|
2895
2893
|
margin-left: 0.5em;
|
|
2896
2894
|
}
|
|
2897
2895
|
|
|
@@ -2995,20 +2993,20 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
2995
2993
|
width: calc(3rem + calc(1.5em + 0.75rem));
|
|
2996
2994
|
}
|
|
2997
2995
|
|
|
2998
|
-
.was-validated .form-check-input:invalid, .was-validated .inc-
|
|
2996
|
+
.was-validated .form-check-input:invalid, .was-validated .inc-form__check-input:invalid, .form-check-input.is-invalid, .form-check-input.inc-form--is-invalid, .is-invalid.inc-form__check-input, .inc-form__check-input.inc-form--is-invalid {
|
|
2999
2997
|
border-color: var(--bs-form-invalid-border-color);
|
|
3000
2998
|
}
|
|
3001
|
-
.was-validated .form-check-input:invalid:checked, .was-validated .inc-
|
|
2999
|
+
.was-validated .form-check-input:invalid:checked, .was-validated .inc-form__check-input:invalid:checked, .form-check-input.is-invalid:checked, .form-check-input.inc-form--is-invalid:checked, .is-invalid.inc-form__check-input:checked, .inc-form__check-input.inc-form--is-invalid:checked {
|
|
3002
3000
|
background-color: var(--bs-form-invalid-color);
|
|
3003
3001
|
}
|
|
3004
|
-
.was-validated .form-check-input:invalid:focus, .was-validated .inc-
|
|
3002
|
+
.was-validated .form-check-input:invalid:focus, .was-validated .inc-form__check-input:invalid:focus, .form-check-input.is-invalid:focus, .form-check-input.inc-form--is-invalid:focus, .is-invalid.inc-form__check-input:focus, .inc-form__check-input.inc-form--is-invalid:focus {
|
|
3005
3003
|
box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
|
|
3006
3004
|
}
|
|
3007
|
-
.was-validated .form-check-input:invalid ~ .form-check-label, .was-validated .form-check-input:invalid ~ .inc-
|
|
3005
|
+
.was-validated .form-check-input:invalid ~ .form-check-label, .was-validated .form-check-input:invalid ~ .inc-form__check-label, .was-validated .inc-form__check-input:invalid ~ .form-check-label, .was-validated .inc-form__check-input:invalid ~ .inc-form__check-label, .form-check-input.is-invalid ~ .form-check-label, .form-check-input.inc-form--is-invalid ~ .form-check-label, .form-check-input.is-invalid ~ .inc-form__check-label, .form-check-input.inc-form--is-invalid ~ .inc-form__check-label, .is-invalid.inc-form__check-input ~ .form-check-label, .inc-form__check-input.inc-form--is-invalid ~ .form-check-label, .is-invalid.inc-form__check-input ~ .inc-form__check-label, .inc-form__check-input.inc-form--is-invalid ~ .inc-form__check-label {
|
|
3008
3006
|
color: var(--bs-form-invalid-color);
|
|
3009
3007
|
}
|
|
3010
3008
|
|
|
3011
|
-
.form-check-inline .form-check-input ~ .invalid-feedback, .form-check-inline .form-check-input ~ .inc-form__invalid-feedback, .form-check-inline .inc-
|
|
3009
|
+
.form-check-inline .form-check-input ~ .invalid-feedback, .form-check-inline .form-check-input ~ .inc-form__invalid-feedback, .form-check-inline .inc-form__check-input ~ .invalid-feedback, .form-check-inline .inc-form__check-input ~ .inc-form__invalid-feedback {
|
|
3012
3010
|
margin-left: 0.5em;
|
|
3013
3011
|
}
|
|
3014
3012
|
|
|
@@ -3224,7 +3222,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
3224
3222
|
--bs-btn-disabled-border-color: #d11a2a;
|
|
3225
3223
|
}
|
|
3226
3224
|
|
|
3227
|
-
.btn-light
|
|
3225
|
+
.btn-light {
|
|
3228
3226
|
--bs-btn-color: #121316;
|
|
3229
3227
|
--bs-btn-bg: #f6f6f6;
|
|
3230
3228
|
--bs-btn-border-color: #f6f6f6;
|
|
@@ -3241,7 +3239,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
3241
3239
|
--bs-btn-disabled-border-color: #f6f6f6;
|
|
3242
3240
|
}
|
|
3243
3241
|
|
|
3244
|
-
.btn-dark
|
|
3242
|
+
.btn-dark {
|
|
3245
3243
|
--bs-btn-color: #ffffff;
|
|
3246
3244
|
--bs-btn-bg: #121316;
|
|
3247
3245
|
--bs-btn-border-color: #121316;
|
|
@@ -3275,7 +3273,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
3275
3273
|
--bs-gradient: none;
|
|
3276
3274
|
}
|
|
3277
3275
|
|
|
3278
|
-
.btn-outline-secondary, .inc-btn--outline-secondary {
|
|
3276
|
+
.btn-outline-secondary, .inc-user-menu__toggle, .inc-btn--outline-secondary {
|
|
3279
3277
|
--bs-btn-color: #3a4358;
|
|
3280
3278
|
--bs-btn-border-color: #3a4358;
|
|
3281
3279
|
--bs-btn-hover-color: #ffffff;
|
|
@@ -3360,7 +3358,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
3360
3358
|
--bs-gradient: none;
|
|
3361
3359
|
}
|
|
3362
3360
|
|
|
3363
|
-
.btn-outline-light
|
|
3361
|
+
.btn-outline-light {
|
|
3364
3362
|
--bs-btn-color: #f6f6f6;
|
|
3365
3363
|
--bs-btn-border-color: #f6f6f6;
|
|
3366
3364
|
--bs-btn-hover-color: #121316;
|
|
@@ -3377,7 +3375,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
3377
3375
|
--bs-gradient: none;
|
|
3378
3376
|
}
|
|
3379
3377
|
|
|
3380
|
-
.btn-outline-dark
|
|
3378
|
+
.btn-outline-dark {
|
|
3381
3379
|
--bs-btn-color: #121316;
|
|
3382
3380
|
--bs-btn-border-color: #121316;
|
|
3383
3381
|
--bs-btn-hover-color: #ffffff;
|
|
@@ -3771,7 +3769,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
3771
3769
|
color: var(--bs-dropdown-link-color);
|
|
3772
3770
|
}
|
|
3773
3771
|
|
|
3774
|
-
.dropdown-menu-dark
|
|
3772
|
+
.dropdown-menu-dark {
|
|
3775
3773
|
--bs-dropdown-color: #f1f1f1;
|
|
3776
3774
|
--bs-dropdown-bg: #525355;
|
|
3777
3775
|
--bs-dropdown-border-color: var(--bs-border-color-translucent);
|
|
@@ -4554,7 +4552,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
4554
4552
|
overflow-y: visible;
|
|
4555
4553
|
}
|
|
4556
4554
|
|
|
4557
|
-
.navbar-dark,
|
|
4555
|
+
.navbar-dark,
|
|
4558
4556
|
.navbar[data-bs-theme=dark],
|
|
4559
4557
|
[data-bs-theme=dark].inc-navbar {
|
|
4560
4558
|
--bs-navbar-color: rgba(255, 255, 255, 0.55);
|
|
@@ -5160,14 +5158,14 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
5160
5158
|
--bs-alert-link-color: var(--bs-danger-text-emphasis);
|
|
5161
5159
|
}
|
|
5162
5160
|
|
|
5163
|
-
.alert-light
|
|
5161
|
+
.alert-light {
|
|
5164
5162
|
--bs-alert-color: var(--bs-light-text-emphasis);
|
|
5165
5163
|
--bs-alert-bg: var(--bs-light-bg-subtle);
|
|
5166
5164
|
--bs-alert-border-color: var(--bs-light-border-subtle);
|
|
5167
5165
|
--bs-alert-link-color: var(--bs-light-text-emphasis);
|
|
5168
5166
|
}
|
|
5169
5167
|
|
|
5170
|
-
.alert-dark
|
|
5168
|
+
.alert-dark {
|
|
5171
5169
|
--bs-alert-color: var(--bs-dark-text-emphasis);
|
|
5172
5170
|
--bs-alert-bg: var(--bs-dark-bg-subtle);
|
|
5173
5171
|
--bs-alert-border-color: var(--bs-dark-border-subtle);
|
|
@@ -5554,7 +5552,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
5554
5552
|
--bs-list-group-active-border-color: var(--bs-danger-text-emphasis);
|
|
5555
5553
|
}
|
|
5556
5554
|
|
|
5557
|
-
.list-group-item-light
|
|
5555
|
+
.list-group-item-light {
|
|
5558
5556
|
--bs-list-group-color: var(--bs-light-text-emphasis);
|
|
5559
5557
|
--bs-list-group-bg: var(--bs-light-bg-subtle);
|
|
5560
5558
|
--bs-list-group-border-color: var(--bs-light-border-subtle);
|
|
@@ -5567,7 +5565,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
5567
5565
|
--bs-list-group-active-border-color: var(--bs-light-text-emphasis);
|
|
5568
5566
|
}
|
|
5569
5567
|
|
|
5570
|
-
.list-group-item-dark
|
|
5568
|
+
.list-group-item-dark {
|
|
5571
5569
|
--bs-list-group-color: var(--bs-dark-text-emphasis);
|
|
5572
5570
|
--bs-list-group-bg: var(--bs-dark-bg-subtle);
|
|
5573
5571
|
--bs-list-group-border-color: var(--bs-dark-border-subtle);
|
|
@@ -8725,12 +8723,12 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
8725
8723
|
color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
|
|
8726
8724
|
}
|
|
8727
8725
|
|
|
8728
|
-
.text-light
|
|
8726
|
+
.text-light {
|
|
8729
8727
|
--bs-text-opacity: 1;
|
|
8730
8728
|
color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
|
|
8731
8729
|
}
|
|
8732
8730
|
|
|
8733
|
-
.text-dark, .inc-
|
|
8731
|
+
.text-dark, .inc-form__select--warning, .inc-form__control--warning {
|
|
8734
8732
|
--bs-text-opacity: 1;
|
|
8735
8733
|
color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
|
|
8736
8734
|
}
|
|
@@ -9020,12 +9018,12 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
9020
9018
|
background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
|
|
9021
9019
|
}
|
|
9022
9020
|
|
|
9023
|
-
.bg-light
|
|
9021
|
+
.bg-light {
|
|
9024
9022
|
--bs-bg-opacity: 1;
|
|
9025
9023
|
background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
|
|
9026
9024
|
}
|
|
9027
9025
|
|
|
9028
|
-
.bg-dark
|
|
9026
|
+
.bg-dark {
|
|
9029
9027
|
--bs-bg-opacity: 1;
|
|
9030
9028
|
background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
|
|
9031
9029
|
}
|
|
@@ -13309,24 +13307,24 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
13309
13307
|
padding: 1rem;
|
|
13310
13308
|
}
|
|
13311
13309
|
}
|
|
13312
|
-
.inc-page
|
|
13310
|
+
.inc-page,
|
|
13311
|
+
.inc-breadcrumb-body {
|
|
13313
13312
|
display: flex;
|
|
13314
13313
|
flex-direction: column;
|
|
13315
13314
|
gap: 1rem;
|
|
13316
13315
|
min-width: 0;
|
|
13317
13316
|
}
|
|
13318
|
-
|
|
13317
|
+
|
|
13318
|
+
.inc-page__breadcrumbs,
|
|
13319
|
+
.inc-breadcrumb-body__breadcrumb {
|
|
13319
13320
|
margin-bottom: 0;
|
|
13320
13321
|
}
|
|
13321
|
-
|
|
13322
|
+
|
|
13323
|
+
.inc-page__body,
|
|
13324
|
+
.inc-breadcrumb-body__body {
|
|
13322
13325
|
min-width: 0;
|
|
13323
13326
|
}
|
|
13324
13327
|
|
|
13325
|
-
.inc-breadcrumb-body {
|
|
13326
|
-
display: flex;
|
|
13327
|
-
flex-direction: column;
|
|
13328
|
-
gap: 1rem;
|
|
13329
|
-
}
|
|
13330
13328
|
.inc-breadcrumb-body__breadcrumb {
|
|
13331
13329
|
margin-bottom: 0;
|
|
13332
13330
|
}
|
|
@@ -14298,11 +14296,6 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
|
|
|
14298
14296
|
border-top-right-radius: 0.25rem;
|
|
14299
14297
|
border-right: none;
|
|
14300
14298
|
}
|
|
14301
|
-
.inc-table--light thead th {
|
|
14302
|
-
background-color: #ffffff !important;
|
|
14303
|
-
color: #121316 !important;
|
|
14304
|
-
border-color: #c4c4c5 !important;
|
|
14305
|
-
}
|
|
14306
14299
|
.inc-table tbody td,
|
|
14307
14300
|
.inc-table tbody th,
|
|
14308
14301
|
.inc-table tfoot td,
|
|
@@ -14907,7 +14900,7 @@ body.inc-offcanvas-open {
|
|
|
14907
14900
|
border-color: #009743;
|
|
14908
14901
|
box-shadow: 0 0 0 0.1875rem rgba(0, 151, 67, 0.12);
|
|
14909
14902
|
}
|
|
14910
|
-
.inc-form__check.is-invalid .inc-
|
|
14903
|
+
.inc-form__check.is-invalid .inc-form__check-label, .inc-form__check.inc-form--is-invalid .inc-form__check-label {
|
|
14911
14904
|
color: #d11a2a;
|
|
14912
14905
|
}
|
|
14913
14906
|
.inc-form__error-summary {
|
|
@@ -15209,6 +15202,9 @@ body.inc-offcanvas-open {
|
|
|
15209
15202
|
overflow: hidden;
|
|
15210
15203
|
white-space: nowrap;
|
|
15211
15204
|
}
|
|
15205
|
+
.inc-btn.is-loading:has(> .inc-spinner)::after, .inc-btn.is-loading:has(> .inc-loading-dots)::after {
|
|
15206
|
+
display: none;
|
|
15207
|
+
}
|
|
15212
15208
|
.inc-btn.is-loading::after {
|
|
15213
15209
|
content: "";
|
|
15214
15210
|
position: absolute;
|
|
@@ -15221,6 +15217,12 @@ body.inc-offcanvas-open {
|
|
|
15221
15217
|
border-right-color: transparent;
|
|
15222
15218
|
animation: inc-loading-spin 0.8s linear infinite;
|
|
15223
15219
|
}
|
|
15220
|
+
.inc-btn.is-loading > .inc-spinner,
|
|
15221
|
+
.inc-btn.is-loading > .inc-loading-dots {
|
|
15222
|
+
position: absolute;
|
|
15223
|
+
inset: 50% auto auto 50%;
|
|
15224
|
+
transform: translate(-50%, -50%);
|
|
15225
|
+
}
|
|
15224
15226
|
|
|
15225
15227
|
.inc-bulk-bar {
|
|
15226
15228
|
display: flex;
|