@incursa/ui-kit 0.3.5 → 0.3.7
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 +1 -0
- package/LLMS.txt +64 -0
- package/README.md +5 -1
- package/dist/inc-design-language.css +94 -94
- package/dist/inc-design-language.css.map +1 -1
- package/dist/inc-design-language.min.css +1 -1
- package/dist/inc-design-language.min.css.map +1 -1
- package/package.json +4 -3
- package/src/_inc-tokens.scss +3 -1
- package/src/inc-design-language.scss +1 -1
package/AI-AGENT-INSTRUCTIONS.md
CHANGED
|
@@ -32,6 +32,7 @@ Repository brand assets live under `assets/brand/`. Prefer those local files whe
|
|
|
32
32
|
Use `inc-filter-bar`, `inc-filter-chip`, and `inc-bulk-bar` for search-heavy or multi-select operator screens.
|
|
33
33
|
- Cards and shells:
|
|
34
34
|
Use `inc-card` for plain cards and `inc-header-body inc-header-body--card` for titled sections with actions.
|
|
35
|
+
Use `inc-header-body--table-body` when the body contains a table and should keep section padding without adding extra bottom table margin.
|
|
35
36
|
- App layout:
|
|
36
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
38
|
- States and workflow:
|
package/LLMS.txt
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
Incursa UI Kit
|
|
2
|
+
|
|
3
|
+
Short description:
|
|
4
|
+
Reusable UI kit for data-heavy business applications. The public surface uses `inc-*` classes and ships compiled CSS, optional vanilla-JS helpers, and SCSS source entrypoints.
|
|
5
|
+
|
|
6
|
+
Package identity:
|
|
7
|
+
- npm package: `@incursa/ui-kit`
|
|
8
|
+
- license: Apache-2.0
|
|
9
|
+
- repository: https://github.com/incursa/ui-kit
|
|
10
|
+
|
|
11
|
+
Fast path:
|
|
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 collapsible sections.
|
|
14
|
+
- Use `src/inc-design-language.scss` if the consumer needs to tune tokens, theme variables, density, or Bootstrap defaults.
|
|
15
|
+
|
|
16
|
+
Primary files:
|
|
17
|
+
- `dist/inc-design-language.css`: compiled standalone CSS output.
|
|
18
|
+
- `dist/inc-design-language.js`: optional dependency-free helper for menus, tabs, and collapsible sections.
|
|
19
|
+
- `src/inc-design-language.scss`: main SCSS entrypoint.
|
|
20
|
+
- `src/_inc-theme.scss`: brand-facing fonts, palette, semantic surfaces, and text colors.
|
|
21
|
+
- `src/_inc-tokens.scss`: deeper token and Bootstrap-facing overrides.
|
|
22
|
+
- `reference.html`: copy/paste catalog for standard controls and markup patterns.
|
|
23
|
+
- `states.html`, `forms-and-validation.html`, `data-grid-advanced.html`, `overlay-workflows.html`: workflow-heavy composition patterns.
|
|
24
|
+
- `demo.html`, `work-queue.html`, `record-detail.html`, `native-patterns.html`: fuller page examples.
|
|
25
|
+
|
|
26
|
+
Public naming rules:
|
|
27
|
+
- Use the `inc-` prefix for public classes.
|
|
28
|
+
- Keep the existing BEM structure: `inc-block`, `inc-block__element`, `inc-block--modifier`.
|
|
29
|
+
|
|
30
|
+
Core primitives:
|
|
31
|
+
- 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`. Use `inc-btn--micro` for in-row actions.
|
|
33
|
+
- Forms: use `inc-form--inline`, `inc-form__field`, `inc-form__group`, `inc-input-group`, `inc-form__hint`, `inc-form__feedback--error`, `inc-form__feedback--success`, and `inc-form__error-summary`.
|
|
34
|
+
- Filter bars: use `inc-filter-bar`, `inc-filter-chip`, and `inc-bulk-bar`.
|
|
35
|
+
- 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`.
|
|
37
|
+
- 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.
|
|
39
|
+
- Native interaction: use `details.inc-disclosure`, `details.inc-native-menu`, and `dialog.inc-native-dialog`.
|
|
40
|
+
- Status: use `inc-badge--success|warning|danger|info`.
|
|
41
|
+
- Metrics: use `inc-summary-overview` and `inc-summary-block`.
|
|
42
|
+
|
|
43
|
+
Customization order:
|
|
44
|
+
1. Change fonts and colors in `src/_inc-theme.scss`.
|
|
45
|
+
2. Use `src/_inc-tokens.scss` only for deeper token or Bootstrap-level tuning.
|
|
46
|
+
3. Rebuild the CSS.
|
|
47
|
+
4. Only add new component rules after checking whether an existing `inc-*` block already fits.
|
|
48
|
+
|
|
49
|
+
Packaging and build:
|
|
50
|
+
- `npm run build` rebuilds distributables.
|
|
51
|
+
- `npm pack` or `npm run package` produces a local installable tarball.
|
|
52
|
+
- 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.
|
|
53
|
+
- The SCSS source path does require Bootstrap Sass at build time because it imports `bootstrap/scss/bootstrap`.
|
|
54
|
+
|
|
55
|
+
Guardrails:
|
|
56
|
+
- Keep typography split: sans for UI text, mono for data.
|
|
57
|
+
- Preserve explicit alignment classes for numeric table data.
|
|
58
|
+
- Avoid product-specific shell or background styles in this package.
|
|
59
|
+
- Keep new components generic enough to reuse across admin/data apps.
|
|
60
|
+
- Prefer native browser behavior first for disclosures and dialogs when it fits the product.
|
|
61
|
+
|
|
62
|
+
See also:
|
|
63
|
+
- `README.md` for package usage, release flow, and repository structure.
|
|
64
|
+
- `AI-AGENT-INSTRUCTIONS.md` for the same guidance in markdown form.
|
package/README.md
CHANGED
|
@@ -72,6 +72,8 @@ Licensed under Apache 2.0.
|
|
|
72
72
|
Sticky-header table, bulk selection, row states, busy buttons, and side drawer pattern.
|
|
73
73
|
- `showcase.css`
|
|
74
74
|
Small demo-only helper stylesheet for the static examples.
|
|
75
|
+
- `LLMS.txt`
|
|
76
|
+
Plain-text agent guidance in the emerging `llms.txt`-style format for packaged consumers and tooling.
|
|
75
77
|
- `AI-AGENT-INSTRUCTIONS.md`
|
|
76
78
|
Short operational guidance for an AI agent or another engineer.
|
|
77
79
|
|
|
@@ -89,6 +91,8 @@ Examples:
|
|
|
89
91
|
|
|
90
92
|
The BEM/modifier structure stays consistent across the package, for example `inc-table__cell--numeric` or `inc-btn--primary`.
|
|
91
93
|
|
|
94
|
+
For titled sections that wrap tables, use `inc-header-body--table-body` to keep body padding while removing extra bottom margin from nested table wrappers.
|
|
95
|
+
|
|
92
96
|
## Design language summary
|
|
93
97
|
|
|
94
98
|
- Typography: IBM Plex Sans for UI copy and IBM Plex Mono for data, amounts, and identifiers.
|
|
@@ -146,7 +150,7 @@ npm pack
|
|
|
146
150
|
Then in the consuming app:
|
|
147
151
|
|
|
148
152
|
```bash
|
|
149
|
-
npm install ../path-to-tarball/incursa-ui-kit-
|
|
153
|
+
npm install ../path-to-tarball/incursa-ui-kit-x.y.z.tgz
|
|
150
154
|
```
|
|
151
155
|
|
|
152
156
|
Or, while iterating locally:
|
|
@@ -1912,105 +1912,105 @@ progress {
|
|
|
1912
1912
|
|
|
1913
1913
|
.table-primary, .inc-table__cell--primary, .inc-table__row--primary, .inc-table__header--primary,
|
|
1914
1914
|
.inc-table__header th.inc-table__header--primary, .inc-table--primary {
|
|
1915
|
-
--bs-table-color: #
|
|
1915
|
+
--bs-table-color: #121316;
|
|
1916
1916
|
--bs-table-bg: rgb(217.6, 221.8, 243.6);
|
|
1917
|
-
--bs-table-border-color: rgb(
|
|
1918
|
-
--bs-table-striped-bg: rgb(
|
|
1919
|
-
--bs-table-striped-color: #
|
|
1920
|
-
--bs-table-active-bg: rgb(
|
|
1921
|
-
--bs-table-active-color: #
|
|
1922
|
-
--bs-table-hover-bg: rgb(
|
|
1923
|
-
--bs-table-hover-color: #
|
|
1917
|
+
--bs-table-border-color: rgb(177.68, 181.24, 199.28);
|
|
1918
|
+
--bs-table-striped-bg: rgb(207.62, 211.66, 232.52);
|
|
1919
|
+
--bs-table-striped-color: #121316;
|
|
1920
|
+
--bs-table-active-bg: rgb(197.64, 201.52, 221.44);
|
|
1921
|
+
--bs-table-active-color: #121316;
|
|
1922
|
+
--bs-table-hover-bg: rgb(202.63, 206.59, 226.98);
|
|
1923
|
+
--bs-table-hover-color: #121316;
|
|
1924
1924
|
color: var(--bs-table-color);
|
|
1925
1925
|
border-color: var(--bs-table-border-color);
|
|
1926
1926
|
}
|
|
1927
1927
|
|
|
1928
1928
|
.table-secondary, .inc-table__cell--secondary, .inc-table__row--secondary, .inc-table__header--secondary,
|
|
1929
1929
|
.inc-table__header th.inc-table__header--secondary, .inc-table--secondary {
|
|
1930
|
-
--bs-table-color: #
|
|
1930
|
+
--bs-table-color: #121316;
|
|
1931
1931
|
--bs-table-bg: rgb(215.6, 217.4, 221.6);
|
|
1932
|
-
--bs-table-border-color: rgb(
|
|
1933
|
-
--bs-table-striped-bg: rgb(
|
|
1934
|
-
--bs-table-striped-color: #
|
|
1935
|
-
--bs-table-active-bg: rgb(
|
|
1936
|
-
--bs-table-active-color: #
|
|
1937
|
-
--bs-table-hover-bg: rgb(
|
|
1938
|
-
--bs-table-hover-color: #
|
|
1932
|
+
--bs-table-border-color: rgb(176.08, 177.72, 181.68);
|
|
1933
|
+
--bs-table-striped-bg: rgb(205.72, 207.48, 211.62);
|
|
1934
|
+
--bs-table-striped-color: #121316;
|
|
1935
|
+
--bs-table-active-bg: rgb(195.84, 197.56, 201.64);
|
|
1936
|
+
--bs-table-active-color: #121316;
|
|
1937
|
+
--bs-table-hover-bg: rgb(200.78, 202.52, 206.63);
|
|
1938
|
+
--bs-table-hover-color: #121316;
|
|
1939
1939
|
color: var(--bs-table-color);
|
|
1940
1940
|
border-color: var(--bs-table-border-color);
|
|
1941
1941
|
}
|
|
1942
1942
|
|
|
1943
1943
|
.table-success, .inc-table__cell--success, .inc-table__row--success, .inc-table__header--success,
|
|
1944
1944
|
.inc-table__header th.inc-table__header--success, .inc-table--success {
|
|
1945
|
-
--bs-table-color: #
|
|
1945
|
+
--bs-table-color: #121316;
|
|
1946
1946
|
--bs-table-bg: rgb(204, 234.2, 217.4);
|
|
1947
|
-
--bs-table-border-color: rgb(
|
|
1948
|
-
--bs-table-striped-bg: rgb(
|
|
1949
|
-
--bs-table-striped-color: #
|
|
1950
|
-
--bs-table-active-bg: rgb(
|
|
1951
|
-
--bs-table-active-color: #
|
|
1952
|
-
--bs-table-hover-bg: rgb(
|
|
1953
|
-
--bs-table-hover-color: #
|
|
1947
|
+
--bs-table-border-color: rgb(166.8, 191.16, 178.32);
|
|
1948
|
+
--bs-table-striped-bg: rgb(194.7, 223.44, 207.63);
|
|
1949
|
+
--bs-table-striped-color: #121316;
|
|
1950
|
+
--bs-table-active-bg: rgb(185.4, 212.68, 197.86);
|
|
1951
|
+
--bs-table-active-color: #121316;
|
|
1952
|
+
--bs-table-hover-bg: rgb(190.05, 218.06, 202.745);
|
|
1953
|
+
--bs-table-hover-color: #121316;
|
|
1954
1954
|
color: var(--bs-table-color);
|
|
1955
1955
|
border-color: var(--bs-table-border-color);
|
|
1956
1956
|
}
|
|
1957
1957
|
|
|
1958
1958
|
.table-info, .inc-table__cell--info, .inc-table__row--info, .inc-table__header--info,
|
|
1959
1959
|
.inc-table__header th.inc-table__header--info, .inc-table--info {
|
|
1960
|
-
--bs-table-color: #
|
|
1960
|
+
--bs-table-color: #121316;
|
|
1961
1961
|
--bs-table-bg: rgb(231, 234.4, 251.6);
|
|
1962
|
-
--bs-table-border-color: rgb(
|
|
1963
|
-
--bs-table-striped-bg: rgb(
|
|
1964
|
-
--bs-table-striped-color: #
|
|
1965
|
-
--bs-table-active-bg: rgb(
|
|
1966
|
-
--bs-table-active-color: #
|
|
1967
|
-
--bs-table-hover-bg: rgb(
|
|
1968
|
-
--bs-table-hover-color: #
|
|
1962
|
+
--bs-table-border-color: rgb(188.4, 191.32, 205.68);
|
|
1963
|
+
--bs-table-striped-bg: rgb(220.35, 223.63, 240.12);
|
|
1964
|
+
--bs-table-striped-color: #121316;
|
|
1965
|
+
--bs-table-active-bg: rgb(209.7, 212.86, 228.64);
|
|
1966
|
+
--bs-table-active-color: #121316;
|
|
1967
|
+
--bs-table-hover-bg: rgb(215.025, 218.245, 234.38);
|
|
1968
|
+
--bs-table-hover-color: #121316;
|
|
1969
1969
|
color: var(--bs-table-color);
|
|
1970
1970
|
border-color: var(--bs-table-border-color);
|
|
1971
1971
|
}
|
|
1972
1972
|
|
|
1973
1973
|
.table-warning, .inc-table__cell--warning, .inc-table__row--warning, .inc-table__header--warning,
|
|
1974
1974
|
.inc-table__header th.inc-table__header--warning, .inc-table--warning {
|
|
1975
|
-
--bs-table-color: #
|
|
1975
|
+
--bs-table-color: #121316;
|
|
1976
1976
|
--bs-table-bg: rgb(244, 231.6, 204);
|
|
1977
|
-
--bs-table-border-color: rgb(
|
|
1978
|
-
--bs-table-striped-bg: rgb(
|
|
1979
|
-
--bs-table-striped-color: #
|
|
1980
|
-
--bs-table-active-bg: rgb(
|
|
1981
|
-
--bs-table-active-color: #
|
|
1982
|
-
--bs-table-hover-bg: rgb(
|
|
1983
|
-
--bs-table-hover-color: #
|
|
1977
|
+
--bs-table-border-color: rgb(198.8, 189.08, 167.6);
|
|
1978
|
+
--bs-table-striped-bg: rgb(232.7, 220.97, 194.9);
|
|
1979
|
+
--bs-table-striped-color: #121316;
|
|
1980
|
+
--bs-table-active-bg: rgb(221.4, 210.34, 185.8);
|
|
1981
|
+
--bs-table-active-color: #121316;
|
|
1982
|
+
--bs-table-hover-bg: rgb(227.05, 215.655, 190.35);
|
|
1983
|
+
--bs-table-hover-color: #121316;
|
|
1984
1984
|
color: var(--bs-table-color);
|
|
1985
1985
|
border-color: var(--bs-table-border-color);
|
|
1986
1986
|
}
|
|
1987
1987
|
|
|
1988
1988
|
.table-danger, .inc-table__cell--danger, .inc-table__row--danger, .inc-table__header--danger,
|
|
1989
1989
|
.inc-table__header th.inc-table__header--danger, .inc-table--danger {
|
|
1990
|
-
--bs-table-color: #
|
|
1990
|
+
--bs-table-color: #121316;
|
|
1991
1991
|
--bs-table-bg: rgb(245.8, 209.2, 212.4);
|
|
1992
|
-
--bs-table-border-color: rgb(
|
|
1993
|
-
--bs-table-striped-bg: rgb(
|
|
1994
|
-
--bs-table-striped-color: #
|
|
1995
|
-
--bs-table-active-bg: rgb(
|
|
1996
|
-
--bs-table-active-color: #
|
|
1997
|
-
--bs-table-hover-bg: rgb(
|
|
1998
|
-
--bs-table-hover-color: #
|
|
1992
|
+
--bs-table-border-color: rgb(200.24, 171.16, 174.32);
|
|
1993
|
+
--bs-table-striped-bg: rgb(234.41, 199.69, 202.88);
|
|
1994
|
+
--bs-table-striped-color: #121316;
|
|
1995
|
+
--bs-table-active-bg: rgb(223.02, 190.18, 193.36);
|
|
1996
|
+
--bs-table-active-color: #121316;
|
|
1997
|
+
--bs-table-hover-bg: rgb(228.715, 194.935, 198.12);
|
|
1998
|
+
--bs-table-hover-color: #121316;
|
|
1999
1999
|
color: var(--bs-table-color);
|
|
2000
2000
|
border-color: var(--bs-table-border-color);
|
|
2001
2001
|
}
|
|
2002
2002
|
|
|
2003
2003
|
.table-light, .inc-table__cell--light, .inc-table__row--light, .inc-table__header--light,
|
|
2004
2004
|
.inc-table__header th.inc-table__header--light, .inc-table--light {
|
|
2005
|
-
--bs-table-color: #
|
|
2005
|
+
--bs-table-color: #121316;
|
|
2006
2006
|
--bs-table-bg: #f6f6f6;
|
|
2007
|
-
--bs-table-border-color: rgb(
|
|
2008
|
-
--bs-table-striped-bg: rgb(
|
|
2009
|
-
--bs-table-striped-color: #
|
|
2010
|
-
--bs-table-active-bg: rgb(
|
|
2011
|
-
--bs-table-active-color: #
|
|
2012
|
-
--bs-table-hover-bg: rgb(
|
|
2013
|
-
--bs-table-hover-color: #
|
|
2007
|
+
--bs-table-border-color: rgb(200.4, 200.6, 201.2);
|
|
2008
|
+
--bs-table-striped-bg: rgb(234.6, 234.65, 234.8);
|
|
2009
|
+
--bs-table-striped-color: #121316;
|
|
2010
|
+
--bs-table-active-bg: rgb(223.2, 223.3, 223.6);
|
|
2011
|
+
--bs-table-active-color: #121316;
|
|
2012
|
+
--bs-table-hover-bg: rgb(228.9, 228.975, 229.2);
|
|
2013
|
+
--bs-table-hover-color: #121316;
|
|
2014
2014
|
color: var(--bs-table-color);
|
|
2015
2015
|
border-color: var(--bs-table-border-color);
|
|
2016
2016
|
}
|
|
@@ -3157,52 +3157,52 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
3157
3157
|
}
|
|
3158
3158
|
|
|
3159
3159
|
.btn-success, .inc-btn--success {
|
|
3160
|
-
--bs-btn-color: #
|
|
3160
|
+
--bs-btn-color: #121316;
|
|
3161
3161
|
--bs-btn-bg: #009743;
|
|
3162
3162
|
--bs-btn-border-color: #009743;
|
|
3163
|
-
--bs-btn-hover-color: #
|
|
3164
|
-
--bs-btn-hover-bg: rgb(
|
|
3165
|
-
--bs-btn-hover-border-color: rgb(
|
|
3166
|
-
--bs-btn-focus-shadow-rgb:
|
|
3167
|
-
--bs-btn-active-color: #
|
|
3168
|
-
--bs-btn-active-bg: rgb(
|
|
3169
|
-
--bs-btn-active-border-color: rgb(
|
|
3163
|
+
--bs-btn-hover-color: #121316;
|
|
3164
|
+
--bs-btn-hover-bg: rgb(38.25, 166.6, 95.2);
|
|
3165
|
+
--bs-btn-hover-border-color: rgb(25.5, 161.4, 85.8);
|
|
3166
|
+
--bs-btn-focus-shadow-rgb: 3, 131, 60;
|
|
3167
|
+
--bs-btn-active-color: #121316;
|
|
3168
|
+
--bs-btn-active-bg: rgb(51, 171.8, 104.6);
|
|
3169
|
+
--bs-btn-active-border-color: rgb(25.5, 161.4, 85.8);
|
|
3170
3170
|
--bs-btn-active-shadow: inset 0 3px 5px rgba(42, 49, 66, 0.125);
|
|
3171
|
-
--bs-btn-disabled-color: #
|
|
3171
|
+
--bs-btn-disabled-color: #121316;
|
|
3172
3172
|
--bs-btn-disabled-bg: #009743;
|
|
3173
3173
|
--bs-btn-disabled-border-color: #009743;
|
|
3174
3174
|
}
|
|
3175
3175
|
|
|
3176
3176
|
.btn-info, .inc-btn--info {
|
|
3177
|
-
--bs-btn-color: #
|
|
3177
|
+
--bs-btn-color: #121316;
|
|
3178
3178
|
--bs-btn-bg: #8798ee;
|
|
3179
3179
|
--bs-btn-border-color: #8798ee;
|
|
3180
|
-
--bs-btn-hover-color: #
|
|
3180
|
+
--bs-btn-hover-color: #121316;
|
|
3181
3181
|
--bs-btn-hover-bg: rgb(153, 167.45, 240.55);
|
|
3182
3182
|
--bs-btn-hover-border-color: rgb(147, 162.3, 239.7);
|
|
3183
|
-
--bs-btn-focus-shadow-rgb:
|
|
3184
|
-
--bs-btn-active-color: #
|
|
3183
|
+
--bs-btn-focus-shadow-rgb: 117, 132, 206;
|
|
3184
|
+
--bs-btn-active-color: #121316;
|
|
3185
3185
|
--bs-btn-active-bg: rgb(159, 172.6, 241.4);
|
|
3186
3186
|
--bs-btn-active-border-color: rgb(147, 162.3, 239.7);
|
|
3187
3187
|
--bs-btn-active-shadow: inset 0 3px 5px rgba(42, 49, 66, 0.125);
|
|
3188
|
-
--bs-btn-disabled-color: #
|
|
3188
|
+
--bs-btn-disabled-color: #121316;
|
|
3189
3189
|
--bs-btn-disabled-bg: #8798ee;
|
|
3190
3190
|
--bs-btn-disabled-border-color: #8798ee;
|
|
3191
3191
|
}
|
|
3192
3192
|
|
|
3193
3193
|
.btn-warning, .inc-btn--warning {
|
|
3194
|
-
--bs-btn-color: #
|
|
3194
|
+
--bs-btn-color: #121316;
|
|
3195
3195
|
--bs-btn-bg: #c88a00;
|
|
3196
3196
|
--bs-btn-border-color: #c88a00;
|
|
3197
|
-
--bs-btn-hover-color: #
|
|
3197
|
+
--bs-btn-hover-color: #121316;
|
|
3198
3198
|
--bs-btn-hover-bg: rgb(208.25, 155.55, 38.25);
|
|
3199
3199
|
--bs-btn-hover-border-color: rgb(205.5, 149.7, 25.5);
|
|
3200
|
-
--bs-btn-focus-shadow-rgb:
|
|
3201
|
-
--bs-btn-active-color: #
|
|
3200
|
+
--bs-btn-focus-shadow-rgb: 173, 120, 3;
|
|
3201
|
+
--bs-btn-active-color: #121316;
|
|
3202
3202
|
--bs-btn-active-bg: rgb(211, 161.4, 51);
|
|
3203
3203
|
--bs-btn-active-border-color: rgb(205.5, 149.7, 25.5);
|
|
3204
3204
|
--bs-btn-active-shadow: inset 0 3px 5px rgba(42, 49, 66, 0.125);
|
|
3205
|
-
--bs-btn-disabled-color: #
|
|
3205
|
+
--bs-btn-disabled-color: #121316;
|
|
3206
3206
|
--bs-btn-disabled-bg: #c88a00;
|
|
3207
3207
|
--bs-btn-disabled-border-color: #c88a00;
|
|
3208
3208
|
}
|
|
@@ -3225,18 +3225,18 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
3225
3225
|
}
|
|
3226
3226
|
|
|
3227
3227
|
.btn-light, .inc-btn--light {
|
|
3228
|
-
--bs-btn-color: #
|
|
3228
|
+
--bs-btn-color: #121316;
|
|
3229
3229
|
--bs-btn-bg: #f6f6f6;
|
|
3230
3230
|
--bs-btn-border-color: #f6f6f6;
|
|
3231
|
-
--bs-btn-hover-color: #
|
|
3231
|
+
--bs-btn-hover-color: #121316;
|
|
3232
3232
|
--bs-btn-hover-bg: rgb(209.1, 209.1, 209.1);
|
|
3233
3233
|
--bs-btn-hover-border-color: rgb(196.8, 196.8, 196.8);
|
|
3234
|
-
--bs-btn-focus-shadow-rgb:
|
|
3235
|
-
--bs-btn-active-color: #
|
|
3234
|
+
--bs-btn-focus-shadow-rgb: 212, 212, 212;
|
|
3235
|
+
--bs-btn-active-color: #121316;
|
|
3236
3236
|
--bs-btn-active-bg: rgb(196.8, 196.8, 196.8);
|
|
3237
3237
|
--bs-btn-active-border-color: rgb(184.5, 184.5, 184.5);
|
|
3238
3238
|
--bs-btn-active-shadow: inset 0 3px 5px rgba(42, 49, 66, 0.125);
|
|
3239
|
-
--bs-btn-disabled-color: #
|
|
3239
|
+
--bs-btn-disabled-color: #121316;
|
|
3240
3240
|
--bs-btn-disabled-bg: #f6f6f6;
|
|
3241
3241
|
--bs-btn-disabled-border-color: #f6f6f6;
|
|
3242
3242
|
}
|
|
@@ -3295,11 +3295,11 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
3295
3295
|
.btn-outline-success, .inc-btn--outline-success {
|
|
3296
3296
|
--bs-btn-color: #009743;
|
|
3297
3297
|
--bs-btn-border-color: #009743;
|
|
3298
|
-
--bs-btn-hover-color: #
|
|
3298
|
+
--bs-btn-hover-color: #121316;
|
|
3299
3299
|
--bs-btn-hover-bg: #009743;
|
|
3300
3300
|
--bs-btn-hover-border-color: #009743;
|
|
3301
3301
|
--bs-btn-focus-shadow-rgb: 0, 151, 67;
|
|
3302
|
-
--bs-btn-active-color: #
|
|
3302
|
+
--bs-btn-active-color: #121316;
|
|
3303
3303
|
--bs-btn-active-bg: #009743;
|
|
3304
3304
|
--bs-btn-active-border-color: #009743;
|
|
3305
3305
|
--bs-btn-active-shadow: inset 0 3px 5px rgba(42, 49, 66, 0.125);
|
|
@@ -3312,11 +3312,11 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
3312
3312
|
.btn-outline-info, .inc-btn--outline-info {
|
|
3313
3313
|
--bs-btn-color: #8798ee;
|
|
3314
3314
|
--bs-btn-border-color: #8798ee;
|
|
3315
|
-
--bs-btn-hover-color: #
|
|
3315
|
+
--bs-btn-hover-color: #121316;
|
|
3316
3316
|
--bs-btn-hover-bg: #8798ee;
|
|
3317
3317
|
--bs-btn-hover-border-color: #8798ee;
|
|
3318
3318
|
--bs-btn-focus-shadow-rgb: 135, 152, 238;
|
|
3319
|
-
--bs-btn-active-color: #
|
|
3319
|
+
--bs-btn-active-color: #121316;
|
|
3320
3320
|
--bs-btn-active-bg: #8798ee;
|
|
3321
3321
|
--bs-btn-active-border-color: #8798ee;
|
|
3322
3322
|
--bs-btn-active-shadow: inset 0 3px 5px rgba(42, 49, 66, 0.125);
|
|
@@ -3329,11 +3329,11 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
3329
3329
|
.btn-outline-warning, .inc-btn--outline-warning {
|
|
3330
3330
|
--bs-btn-color: #c88a00;
|
|
3331
3331
|
--bs-btn-border-color: #c88a00;
|
|
3332
|
-
--bs-btn-hover-color: #
|
|
3332
|
+
--bs-btn-hover-color: #121316;
|
|
3333
3333
|
--bs-btn-hover-bg: #c88a00;
|
|
3334
3334
|
--bs-btn-hover-border-color: #c88a00;
|
|
3335
3335
|
--bs-btn-focus-shadow-rgb: 200, 138, 0;
|
|
3336
|
-
--bs-btn-active-color: #
|
|
3336
|
+
--bs-btn-active-color: #121316;
|
|
3337
3337
|
--bs-btn-active-bg: #c88a00;
|
|
3338
3338
|
--bs-btn-active-border-color: #c88a00;
|
|
3339
3339
|
--bs-btn-active-shadow: inset 0 3px 5px rgba(42, 49, 66, 0.125);
|
|
@@ -3363,11 +3363,11 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
3363
3363
|
.btn-outline-light, .inc-user-menu__toggle, .inc-btn--outline-light {
|
|
3364
3364
|
--bs-btn-color: #f6f6f6;
|
|
3365
3365
|
--bs-btn-border-color: #f6f6f6;
|
|
3366
|
-
--bs-btn-hover-color: #
|
|
3366
|
+
--bs-btn-hover-color: #121316;
|
|
3367
3367
|
--bs-btn-hover-bg: #f6f6f6;
|
|
3368
3368
|
--bs-btn-hover-border-color: #f6f6f6;
|
|
3369
3369
|
--bs-btn-focus-shadow-rgb: 246, 246, 246;
|
|
3370
|
-
--bs-btn-active-color: #
|
|
3370
|
+
--bs-btn-active-color: #121316;
|
|
3371
3371
|
--bs-btn-active-bg: #f6f6f6;
|
|
3372
3372
|
--bs-btn-active-border-color: #f6f6f6;
|
|
3373
3373
|
--bs-btn-active-shadow: inset 0 3px 5px rgba(42, 49, 66, 0.125);
|
|
@@ -7088,17 +7088,17 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
7088
7088
|
}
|
|
7089
7089
|
|
|
7090
7090
|
.text-bg-success {
|
|
7091
|
-
color: #
|
|
7091
|
+
color: #121316 !important;
|
|
7092
7092
|
background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
|
|
7093
7093
|
}
|
|
7094
7094
|
|
|
7095
7095
|
.text-bg-info {
|
|
7096
|
-
color: #
|
|
7096
|
+
color: #121316 !important;
|
|
7097
7097
|
background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
|
|
7098
7098
|
}
|
|
7099
7099
|
|
|
7100
7100
|
.text-bg-warning {
|
|
7101
|
-
color: #
|
|
7101
|
+
color: #121316 !important;
|
|
7102
7102
|
background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
|
|
7103
7103
|
}
|
|
7104
7104
|
|
|
@@ -7108,7 +7108,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
7108
7108
|
}
|
|
7109
7109
|
|
|
7110
7110
|
.text-bg-light {
|
|
7111
|
-
color: #
|
|
7111
|
+
color: #121316 !important;
|
|
7112
7112
|
background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
|
|
7113
7113
|
}
|
|
7114
7114
|
|
|
@@ -7140,8 +7140,8 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
7140
7140
|
text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
|
|
7141
7141
|
}
|
|
7142
7142
|
.link-success:hover, .link-success:focus {
|
|
7143
|
-
color: RGBA(
|
|
7144
|
-
text-decoration-color: RGBA(
|
|
7143
|
+
color: RGBA(51, 172, 105, var(--bs-link-opacity, 1)) !important;
|
|
7144
|
+
text-decoration-color: RGBA(51, 172, 105, var(--bs-link-underline-opacity, 1)) !important;
|
|
7145
7145
|
}
|
|
7146
7146
|
|
|
7147
7147
|
.link-info {
|