@incursa/ui-kit 0.3.6 → 0.4.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/README.md CHANGED
@@ -24,7 +24,7 @@ Licensed under Apache 2.0.
24
24
  - Card, section-shell, summary-block, 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
- - Operational states such as empty, no-results, loading, error, permission, lock, toast, live-region, and activity timeline surfaces.
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
30
  - A small overlay/navigation layer for tabs, pagination, dropdown actions, modals, and offcanvas panels.
@@ -49,7 +49,7 @@ Licensed under Apache 2.0.
49
49
  - `dist/inc-design-language.css`
50
50
  Compiled standalone CSS output.
51
51
  - `dist/inc-design-language.js`
52
- Optional vanilla-JS helper for menus, tabs, and collapsible sections.
52
+ Optional vanilla-JS helper for menus, tabs, collapsible sections, and auto-refresh widgets.
53
53
  - `index.html`
54
54
  Showcase hub for the included example pages.
55
55
  - `demo.html`
@@ -110,9 +110,9 @@ For titled sections that wrap tables, use `inc-header-body--table-body` to keep
110
110
 
111
111
  - CSS-only/native behavior is enough for layout, cards, tables, buttons, alerts, form fields, badges, breadcrumbs, sticky footer, and most surface styling.
112
112
  - Stateful controls still need behavior:
113
- tabs, collapsible sections, menus/dropdowns, modals, offcanvas panels, dismissible alerts, and toasts.
113
+ tabs, collapsible sections, menus/dropdowns, modals, offcanvas panels, dismissible alerts, toasts, and auto-refresh countdowns.
114
114
  - This package now includes an optional dependency-free helper at `dist/inc-design-language.js` for:
115
- user-menu dropdowns, tab switching, and collapse/accordion toggles.
115
+ user-menu dropdowns, tab switching, collapse/accordion toggles, and page auto-refresh countdown widgets.
116
116
  - This package also includes native-styled patterns for:
117
117
  `details.inc-disclosure`, `details.inc-native-menu`, `dialog.inc-native-dialog`, and `dialog.inc-native-dialog--drawer`.
118
118
  - 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.
@@ -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: #2a3142;
1915
+ --bs-table-color: #121316;
1916
1916
  --bs-table-bg: rgb(217.6, 221.8, 243.6);
1917
- --bs-table-border-color: rgb(182.48, 187.24, 208.08);
1918
- --bs-table-striped-bg: rgb(208.82, 213.16, 234.72);
1919
- --bs-table-striped-color: #2a3142;
1920
- --bs-table-active-bg: rgb(200.04, 204.52, 225.84);
1921
- --bs-table-active-color: #2a3142;
1922
- --bs-table-hover-bg: rgb(204.43, 208.84, 230.28);
1923
- --bs-table-hover-color: #2a3142;
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: #2a3142;
1930
+ --bs-table-color: #121316;
1931
1931
  --bs-table-bg: rgb(215.6, 217.4, 221.6);
1932
- --bs-table-border-color: rgb(180.88, 183.72, 190.48);
1933
- --bs-table-striped-bg: rgb(206.92, 208.98, 213.82);
1934
- --bs-table-striped-color: #2a3142;
1935
- --bs-table-active-bg: rgb(198.24, 200.56, 206.04);
1936
- --bs-table-active-color: #2a3142;
1937
- --bs-table-hover-bg: rgb(202.58, 204.77, 209.93);
1938
- --bs-table-hover-color: #2a3142;
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: #2a3142;
1945
+ --bs-table-color: #121316;
1946
1946
  --bs-table-bg: rgb(204, 234.2, 217.4);
1947
- --bs-table-border-color: rgb(171.6, 197.16, 187.12);
1948
- --bs-table-striped-bg: rgb(195.9, 224.94, 209.83);
1949
- --bs-table-striped-color: #2a3142;
1950
- --bs-table-active-bg: rgb(187.8, 215.68, 202.26);
1951
- --bs-table-active-color: #2a3142;
1952
- --bs-table-hover-bg: rgb(191.85, 220.31, 206.045);
1953
- --bs-table-hover-color: #2a3142;
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: #2a3142;
1960
+ --bs-table-color: #121316;
1961
1961
  --bs-table-bg: rgb(231, 234.4, 251.6);
1962
- --bs-table-border-color: rgb(193.2, 197.32, 214.48);
1963
- --bs-table-striped-bg: rgb(221.55, 225.13, 242.32);
1964
- --bs-table-striped-color: #2a3142;
1965
- --bs-table-active-bg: rgb(212.1, 215.86, 233.04);
1966
- --bs-table-active-color: #2a3142;
1967
- --bs-table-hover-bg: rgb(216.825, 220.495, 237.68);
1968
- --bs-table-hover-color: #2a3142;
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: #2a3142;
1975
+ --bs-table-color: #121316;
1976
1976
  --bs-table-bg: rgb(244, 231.6, 204);
1977
- --bs-table-border-color: rgb(203.6, 195.08, 176.4);
1978
- --bs-table-striped-bg: rgb(233.9, 222.47, 197.1);
1979
- --bs-table-striped-color: #2a3142;
1980
- --bs-table-active-bg: rgb(223.8, 213.34, 190.2);
1981
- --bs-table-active-color: #2a3142;
1982
- --bs-table-hover-bg: rgb(228.85, 217.905, 193.65);
1983
- --bs-table-hover-color: #2a3142;
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: #2a3142;
1990
+ --bs-table-color: #121316;
1991
1991
  --bs-table-bg: rgb(245.8, 209.2, 212.4);
1992
- --bs-table-border-color: rgb(205.04, 177.16, 183.12);
1993
- --bs-table-striped-bg: rgb(235.61, 201.19, 205.08);
1994
- --bs-table-striped-color: #2a3142;
1995
- --bs-table-active-bg: rgb(225.42, 193.18, 197.76);
1996
- --bs-table-active-color: #2a3142;
1997
- --bs-table-hover-bg: rgb(230.515, 197.185, 201.42);
1998
- --bs-table-hover-color: #2a3142;
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: #2a3142;
2005
+ --bs-table-color: #121316;
2006
2006
  --bs-table-bg: #f6f6f6;
2007
- --bs-table-border-color: rgb(205.2, 206.6, 210);
2008
- --bs-table-striped-bg: rgb(235.8, 236.15, 237);
2009
- --bs-table-striped-color: #2a3142;
2010
- --bs-table-active-bg: rgb(225.6, 226.3, 228);
2011
- --bs-table-active-color: #2a3142;
2012
- --bs-table-hover-bg: rgb(230.7, 231.225, 232.5);
2013
- --bs-table-hover-color: #2a3142;
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: #ffffff;
3160
+ --bs-btn-color: #121316;
3161
3161
  --bs-btn-bg: #009743;
3162
3162
  --bs-btn-border-color: #009743;
3163
- --bs-btn-hover-color: #ffffff;
3164
- --bs-btn-hover-bg: rgb(0, 128.35, 56.95);
3165
- --bs-btn-hover-border-color: rgb(0, 120.8, 53.6);
3166
- --bs-btn-focus-shadow-rgb: 38, 167, 95;
3167
- --bs-btn-active-color: #ffffff;
3168
- --bs-btn-active-bg: rgb(0, 120.8, 53.6);
3169
- --bs-btn-active-border-color: rgb(0, 113.25, 50.25);
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: #ffffff;
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: #2a3142;
3177
+ --bs-btn-color: #121316;
3178
3178
  --bs-btn-bg: #8798ee;
3179
3179
  --bs-btn-border-color: #8798ee;
3180
- --bs-btn-hover-color: #2a3142;
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: 121, 137, 212;
3184
- --bs-btn-active-color: #2a3142;
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: #2a3142;
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: #2a3142;
3194
+ --bs-btn-color: #121316;
3195
3195
  --bs-btn-bg: #c88a00;
3196
3196
  --bs-btn-border-color: #c88a00;
3197
- --bs-btn-hover-color: #2a3142;
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: 176, 125, 10;
3201
- --bs-btn-active-color: #2a3142;
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: #2a3142;
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: #2a3142;
3228
+ --bs-btn-color: #121316;
3229
3229
  --bs-btn-bg: #f6f6f6;
3230
3230
  --bs-btn-border-color: #f6f6f6;
3231
- --bs-btn-hover-color: #2a3142;
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: 215, 216, 219;
3235
- --bs-btn-active-color: #2a3142;
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: #2a3142;
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: #ffffff;
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: #ffffff;
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: #2a3142;
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: #2a3142;
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: #2a3142;
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: #2a3142;
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: #2a3142;
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: #2a3142;
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: #ffffff !important;
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: #2a3142 !important;
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: #2a3142 !important;
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: #2a3142 !important;
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(0, 121, 54, var(--bs-link-opacity, 1)) !important;
7144
- text-decoration-color: RGBA(0, 121, 54, var(--bs-link-underline-opacity, 1)) !important;
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 {
@@ -14067,6 +14067,58 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
14067
14067
  gap: 0.75rem;
14068
14068
  }
14069
14069
 
14070
+ .inc-auto-refresh {
14071
+ position: fixed;
14072
+ right: max(1rem, env(safe-area-inset-right, 0px) + 1rem);
14073
+ bottom: max(1rem, env(safe-area-inset-bottom, 0px) + 1rem);
14074
+ z-index: 1049;
14075
+ display: inline-flex;
14076
+ align-items: center;
14077
+ gap: 0.625rem;
14078
+ padding: 0.5rem 0.75rem;
14079
+ border: 1px solid #dbdcdc;
14080
+ border-radius: 999px;
14081
+ background: rgba(255, 255, 255, 0.96);
14082
+ color: #121316;
14083
+ box-shadow: 0 0.75rem 1.5rem rgba(42, 49, 66, 0.12);
14084
+ font-size: 0.75rem;
14085
+ line-height: 1.2;
14086
+ white-space: nowrap;
14087
+ backdrop-filter: blur(10px);
14088
+ }
14089
+ .inc-auto-refresh--inline {
14090
+ position: static;
14091
+ right: auto;
14092
+ bottom: auto;
14093
+ z-index: auto;
14094
+ vertical-align: middle;
14095
+ }
14096
+ .inc-auto-refresh__countdown, .inc-auto-refresh__status {
14097
+ display: inline-flex;
14098
+ align-items: center;
14099
+ gap: 0.5rem;
14100
+ min-height: 1rem;
14101
+ }
14102
+ .inc-auto-refresh__label, .inc-auto-refresh__status-text {
14103
+ color: var(--bs-secondary-color);
14104
+ font-weight: 600;
14105
+ }
14106
+ .inc-auto-refresh__value {
14107
+ font-family: "IBM Plex Mono", SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
14108
+ font-variant-numeric: tabular-nums;
14109
+ font-weight: 600;
14110
+ color: #2a3142;
14111
+ }
14112
+ .inc-auto-refresh__spinner {
14113
+ display: inline-flex;
14114
+ align-items: center;
14115
+ color: #4459c6;
14116
+ }
14117
+ .inc-auto-refresh.is-loading {
14118
+ border-color: rgba(68, 89, 198, 0.2);
14119
+ box-shadow: 0 0.9rem 1.75rem rgba(68, 89, 198, 0.14);
14120
+ }
14121
+
14070
14122
  .inc-progress,
14071
14123
  .inc-meter {
14072
14124
  width: 100%;