@incursa/ui-kit 1.6.1 → 1.7.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/dist/inc-design-language.css +111 -51
- package/dist/inc-design-language.css.map +1 -1
- package/dist/inc-design-language.js +326 -1
- package/dist/inc-design-language.min.css +1 -1
- package/dist/inc-design-language.min.css.map +1 -1
- package/dist/mcp/components/buttons.json +3 -3
- package/dist/mcp/components/status.json +3 -3
- package/dist/mcp/examples/reference.json +2 -2
- package/dist/mcp/examples/states.json +2 -2
- package/dist/mcp/examples/web-components.json +2 -2
- package/dist/mcp/guides/latest.json +2 -2
- package/dist/mcp/guides/package-metadata.json +2 -2
- package/dist/mcp/guides/update.json +2 -2
- package/dist/mcp/install.json +1 -1
- package/dist/mcp/patterns/reference.json +2 -2
- package/dist/mcp/patterns/states.json +2 -2
- package/dist/mcp/patterns/web-components.json +2 -2
- package/dist/mcp/resources.json +49 -49
- package/dist/mcp/search-index.json +13 -13
- package/dist/mcp/update.json +2 -2
- package/dist/mcp/worker.mjs +282 -162
- package/dist/mcp/worker.mjs.map +2 -2
- package/dist/web-components/components/actions.js +89 -13
- package/dist/web-components/components/feedback.js +17 -4
- package/dist/web-components/index.js +92 -17
- package/package.json +1 -1
- package/src/inc-design-language.js +326 -1
- package/src/inc-design-language.scss +141 -55
- package/src/web-components/components/actions.js +89 -13
- package/src/web-components/components/feedback.js +17 -4
|
@@ -12190,10 +12190,10 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
12190
12190
|
--inc-control-surface-border: var(--inc-border-default);
|
|
12191
12191
|
--inc-surface-contrast: var(--bs-secondary);
|
|
12192
12192
|
--inc-surface-contrast-rgb: var(--bs-secondary-rgb);
|
|
12193
|
-
--inc-surface-contrast-hover: #
|
|
12194
|
-
--inc-surface-contrast-hover-rgb:
|
|
12195
|
-
--inc-surface-contrast-active: #
|
|
12196
|
-
--inc-surface-contrast-active-rgb:
|
|
12193
|
+
--inc-surface-contrast-hover: #273042;
|
|
12194
|
+
--inc-surface-contrast-hover-rgb: 39, 48, 66;
|
|
12195
|
+
--inc-surface-contrast-active: #1f2737;
|
|
12196
|
+
--inc-surface-contrast-active-rgb: 31, 39, 55;
|
|
12197
12197
|
--inc-surface-contrast-text: var(--inc-text-inverse);
|
|
12198
12198
|
--inc-surface-contrast-text-rgb: var(--inc-text-inverse-rgb);
|
|
12199
12199
|
--inc-surface-contrast-border: var(--bs-secondary);
|
|
@@ -12216,10 +12216,10 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
12216
12216
|
--inc-control-surface-border: var(--inc-border-default);
|
|
12217
12217
|
--inc-surface-contrast: var(--bs-gray-100);
|
|
12218
12218
|
--inc-surface-contrast-rgb: 253, 253, 253;
|
|
12219
|
-
--inc-surface-contrast-hover:
|
|
12220
|
-
--inc-surface-contrast-hover-rgb:
|
|
12221
|
-
--inc-surface-contrast-active:
|
|
12222
|
-
--inc-surface-contrast-active-rgb:
|
|
12219
|
+
--inc-surface-contrast-hover: #dfe3e8;
|
|
12220
|
+
--inc-surface-contrast-hover-rgb: 223, 227, 232;
|
|
12221
|
+
--inc-surface-contrast-active: #c8d0d9;
|
|
12222
|
+
--inc-surface-contrast-active-rgb: 200, 208, 217;
|
|
12223
12223
|
--inc-surface-contrast-text: var(--bs-dark);
|
|
12224
12224
|
--inc-surface-contrast-text-rgb: 18, 19, 22;
|
|
12225
12225
|
--inc-surface-contrast-border: var(--bs-gray-400);
|
|
@@ -12540,6 +12540,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
12540
12540
|
justify-content: center;
|
|
12541
12541
|
gap: 0.375rem;
|
|
12542
12542
|
vertical-align: middle;
|
|
12543
|
+
transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
|
|
12543
12544
|
}
|
|
12544
12545
|
.inc-btn--secondary {
|
|
12545
12546
|
--bs-btn-color: var(--inc-surface-contrast-text);
|
|
@@ -12547,7 +12548,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
12547
12548
|
--bs-btn-border-color: var(--inc-surface-contrast-border);
|
|
12548
12549
|
--bs-btn-hover-color: var(--inc-surface-contrast-text);
|
|
12549
12550
|
--bs-btn-hover-bg: var(--inc-surface-contrast-hover);
|
|
12550
|
-
--bs-btn-hover-border-color: var(--inc-surface-contrast-
|
|
12551
|
+
--bs-btn-hover-border-color: var(--inc-surface-contrast-hover);
|
|
12551
12552
|
--bs-btn-focus-shadow-rgb: var(--inc-surface-contrast-rgb);
|
|
12552
12553
|
--bs-btn-active-color: var(--inc-surface-contrast-text);
|
|
12553
12554
|
--bs-btn-active-bg: var(--inc-surface-contrast-active);
|
|
@@ -12555,6 +12556,15 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
12555
12556
|
--bs-btn-disabled-color: var(--inc-surface-contrast-text);
|
|
12556
12557
|
--bs-btn-disabled-bg: var(--inc-surface-contrast);
|
|
12557
12558
|
--bs-btn-disabled-border-color: var(--inc-surface-contrast-border);
|
|
12559
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 1px 2px rgba(var(--inc-shadow-rgb), 0.1);
|
|
12560
|
+
}
|
|
12561
|
+
.inc-btn--secondary:hover, .inc-btn--secondary:focus-visible {
|
|
12562
|
+
--bs-btn-hover-bg: var(--inc-surface-contrast-hover);
|
|
12563
|
+
--bs-btn-hover-border-color: var(--inc-surface-contrast-hover);
|
|
12564
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 1px 2px rgba(var(--inc-shadow-rgb), 0.1);
|
|
12565
|
+
}
|
|
12566
|
+
.inc-btn--secondary:active, .inc-btn--secondary.active, .inc-btn--secondary:focus:active {
|
|
12567
|
+
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.12);
|
|
12558
12568
|
}
|
|
12559
12569
|
.inc-btn--success {
|
|
12560
12570
|
color: #ffffff;
|
|
@@ -12574,14 +12584,14 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
12574
12584
|
}
|
|
12575
12585
|
.inc-btn--outline-secondary {
|
|
12576
12586
|
--bs-btn-color: var(--inc-text-primary);
|
|
12577
|
-
--bs-btn-border-color: var(--inc-border-
|
|
12587
|
+
--bs-btn-border-color: var(--inc-border-subtle);
|
|
12578
12588
|
--bs-btn-hover-color: var(--inc-text-primary);
|
|
12579
|
-
--bs-btn-hover-bg: var(--inc-surface-
|
|
12580
|
-
--bs-btn-hover-border-color: var(--inc-
|
|
12589
|
+
--bs-btn-hover-bg: rgba(var(--inc-surface-strong-rgb), 0.12);
|
|
12590
|
+
--bs-btn-hover-border-color: rgba(var(--inc-surface-strong-rgb), 0.32);
|
|
12581
12591
|
--bs-btn-focus-shadow-rgb: var(--inc-surface-strong-rgb);
|
|
12582
12592
|
--bs-btn-active-color: var(--inc-text-primary);
|
|
12583
|
-
--bs-btn-active-bg: var(--inc-surface-
|
|
12584
|
-
--bs-btn-active-border-color: var(--inc-
|
|
12593
|
+
--bs-btn-active-bg: rgba(var(--inc-surface-strong-rgb), 0.18);
|
|
12594
|
+
--bs-btn-active-border-color: rgba(var(--inc-surface-strong-rgb), 0.4);
|
|
12585
12595
|
--bs-btn-disabled-color: var(--inc-text-muted);
|
|
12586
12596
|
--bs-btn-disabled-border-color: var(--inc-border-subtle);
|
|
12587
12597
|
}
|
|
@@ -12590,6 +12600,12 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
12590
12600
|
--bs-btn-disabled-bg: rgba(var(--inc-surface-secondary-rgb), 0.54);
|
|
12591
12601
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 2px rgba(var(--inc-shadow-rgb), 0.06);
|
|
12592
12602
|
}
|
|
12603
|
+
.inc-btn--outline-primary:hover, .inc-btn--outline-primary:focus-visible, .inc-btn--outline-secondary:hover, .inc-btn--outline-secondary:focus-visible, .inc-btn--outline-success:hover, .inc-btn--outline-success:focus-visible, .inc-btn--outline-danger:hover, .inc-btn--outline-danger:focus-visible, .inc-btn--outline-warning:hover, .inc-btn--outline-warning:focus-visible, .inc-btn--outline-info:hover, .inc-btn--outline-info:focus-visible {
|
|
12604
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 1px 2px rgba(var(--inc-shadow-rgb), 0.06);
|
|
12605
|
+
}
|
|
12606
|
+
.inc-btn--outline-primary:active, .inc-btn--outline-primary.active, .inc-btn--outline-primary:focus:active, .inc-btn--outline-secondary:active, .inc-btn--outline-secondary.active, .inc-btn--outline-secondary:focus:active, .inc-btn--outline-success:active, .inc-btn--outline-success.active, .inc-btn--outline-success:focus:active, .inc-btn--outline-danger:active, .inc-btn--outline-danger.active, .inc-btn--outline-danger:focus:active, .inc-btn--outline-warning:active, .inc-btn--outline-warning.active, .inc-btn--outline-warning:focus:active, .inc-btn--outline-info:active, .inc-btn--outline-info.active, .inc-btn--outline-info:focus:active {
|
|
12607
|
+
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.18);
|
|
12608
|
+
}
|
|
12593
12609
|
.inc-btn--micro {
|
|
12594
12610
|
padding: 0.15rem 0.4rem;
|
|
12595
12611
|
font-size: 0.7rem;
|
|
@@ -12637,9 +12653,10 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
12637
12653
|
border: 1px solid #d11a2a;
|
|
12638
12654
|
}
|
|
12639
12655
|
.inc-badge--warning {
|
|
12640
|
-
background-color: #
|
|
12641
|
-
color: #
|
|
12642
|
-
border: 1px solid #
|
|
12656
|
+
background-color: #fff8df;
|
|
12657
|
+
color: #765000;
|
|
12658
|
+
border: 1px solid #b67b00;
|
|
12659
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58), 0 1px 2px rgba(182, 123, 0, 0.12);
|
|
12643
12660
|
}
|
|
12644
12661
|
.inc-badge--info {
|
|
12645
12662
|
background-color: #e9ecfe;
|
|
@@ -12647,6 +12664,8 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
12647
12664
|
border: 1px solid #2544f1;
|
|
12648
12665
|
}
|
|
12649
12666
|
.inc-alert {
|
|
12667
|
+
position: relative;
|
|
12668
|
+
overflow: hidden;
|
|
12650
12669
|
border-radius: 0.5rem;
|
|
12651
12670
|
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 0.375rem 1rem rgba(var(--inc-shadow-rgb), 0.05);
|
|
12652
12671
|
background-clip: padding-box;
|
|
@@ -12654,6 +12673,18 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
12654
12673
|
.inc-alert:empty {
|
|
12655
12674
|
display: none;
|
|
12656
12675
|
}
|
|
12676
|
+
.inc-alert__progress {
|
|
12677
|
+
position: absolute;
|
|
12678
|
+
inset-inline: 0;
|
|
12679
|
+
inset-block-end: 0;
|
|
12680
|
+
height: 0.1875rem;
|
|
12681
|
+
background: currentColor;
|
|
12682
|
+
opacity: 0.2;
|
|
12683
|
+
transform-origin: left center;
|
|
12684
|
+
transform: scaleX(1);
|
|
12685
|
+
pointer-events: none;
|
|
12686
|
+
}
|
|
12687
|
+
|
|
12657
12688
|
.alert:empty, .inc-alert:empty {
|
|
12658
12689
|
display: none;
|
|
12659
12690
|
}
|
|
@@ -13887,7 +13918,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
13887
13918
|
border: 1px solid var(--inc-border-subtle);
|
|
13888
13919
|
cursor: pointer;
|
|
13889
13920
|
appearance: none;
|
|
13890
|
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4)
|
|
13921
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
|
|
13891
13922
|
transition: color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
|
|
13892
13923
|
}
|
|
13893
13924
|
.inc-tabs-folder .inc-tabs-nav > li > .inc-tab .inc-tab-icon {
|
|
@@ -13897,7 +13928,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
13897
13928
|
color: var(--inc-text-primary);
|
|
13898
13929
|
background: linear-gradient(180deg, rgba(var(--inc-surface-secondary-rgb), 1), rgba(var(--inc-surface-muted-rgb), 0.9));
|
|
13899
13930
|
border-color: var(--inc-border-default);
|
|
13900
|
-
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46)
|
|
13931
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46);
|
|
13901
13932
|
}
|
|
13902
13933
|
.inc-tabs-folder .inc-tabs-nav > li > .inc-tab:not(.active):hover .inc-tab-icon {
|
|
13903
13934
|
color: var(--bs-primary);
|
|
@@ -13910,7 +13941,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
13910
13941
|
border-bottom-color: var(--inc-surface-panel);
|
|
13911
13942
|
position: relative;
|
|
13912
13943
|
z-index: 1;
|
|
13913
|
-
box-shadow:
|
|
13944
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
|
|
13914
13945
|
transform: translateY(-1px);
|
|
13915
13946
|
}
|
|
13916
13947
|
.inc-tabs-folder .inc-tab-content {
|
|
@@ -13921,7 +13952,7 @@ textarea.form-control-lg, textarea.inc-form__control--lg {
|
|
|
13921
13952
|
border-top-left-radius: 0;
|
|
13922
13953
|
border-top-right-radius: 0.25rem;
|
|
13923
13954
|
margin-top: -1px;
|
|
13924
|
-
box-shadow: var(--inc-
|
|
13955
|
+
box-shadow: 0 0.125rem 0.25rem rgba(var(--inc-shadow-rgb), 0.06), 0 0.875rem 2rem rgba(var(--inc-shadow-rgb), 0.06);
|
|
13925
13956
|
}
|
|
13926
13957
|
|
|
13927
13958
|
.inc-tabs-line {
|
|
@@ -14418,6 +14449,8 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
|
|
|
14418
14449
|
display: inline-flex;
|
|
14419
14450
|
align-items: center;
|
|
14420
14451
|
gap: 0.625rem;
|
|
14452
|
+
width: max-content;
|
|
14453
|
+
max-width: calc(100vw - 2rem);
|
|
14421
14454
|
padding: 0.5rem 0.75rem;
|
|
14422
14455
|
border: 1px solid var(--inc-border-subtle);
|
|
14423
14456
|
border-radius: 999px;
|
|
@@ -14435,6 +14468,7 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
|
|
|
14435
14468
|
bottom: auto;
|
|
14436
14469
|
z-index: auto;
|
|
14437
14470
|
vertical-align: middle;
|
|
14471
|
+
max-width: 100%;
|
|
14438
14472
|
}
|
|
14439
14473
|
.inc-auto-refresh__countdown, .inc-auto-refresh__status {
|
|
14440
14474
|
display: inline-flex;
|
|
@@ -14458,6 +14492,10 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
|
|
|
14458
14492
|
color: var(--bs-primary);
|
|
14459
14493
|
}
|
|
14460
14494
|
.inc-auto-refresh__toggle {
|
|
14495
|
+
--bs-btn-color: var(--inc-text-primary);
|
|
14496
|
+
--bs-btn-hover-color: var(--inc-text-primary);
|
|
14497
|
+
--bs-btn-active-color: var(--inc-text-primary);
|
|
14498
|
+
order: -1;
|
|
14461
14499
|
flex: 0 0 auto;
|
|
14462
14500
|
width: 1.875rem;
|
|
14463
14501
|
height: 1.875rem;
|
|
@@ -14476,26 +14514,25 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
|
|
|
14476
14514
|
font-size: 0.6875rem;
|
|
14477
14515
|
line-height: 1;
|
|
14478
14516
|
}
|
|
14517
|
+
.inc-auto-refresh__toggle:hover, .inc-auto-refresh__toggle:focus-visible, .inc-auto-refresh__toggle:active {
|
|
14518
|
+
color: var(--inc-text-primary);
|
|
14519
|
+
}
|
|
14479
14520
|
.inc-auto-refresh__toggle-icon {
|
|
14480
|
-
position: relative;
|
|
14481
14521
|
display: inline-flex;
|
|
14482
|
-
|
|
14483
|
-
|
|
14484
|
-
|
|
14485
|
-
|
|
14486
|
-
|
|
14487
|
-
content: "";
|
|
14488
|
-
position: absolute;
|
|
14489
|
-
inset-block: 0.0625rem;
|
|
14490
|
-
width: 0.1875rem;
|
|
14491
|
-
border-radius: 999px;
|
|
14492
|
-
background: currentColor;
|
|
14522
|
+
align-items: center;
|
|
14523
|
+
justify-content: center;
|
|
14524
|
+
width: 1rem;
|
|
14525
|
+
height: 1rem;
|
|
14526
|
+
color: var(--inc-text-primary);
|
|
14493
14527
|
}
|
|
14494
|
-
.inc-auto-refresh__toggle-icon
|
|
14495
|
-
|
|
14528
|
+
.inc-auto-refresh__toggle:hover .inc-auto-refresh__toggle-icon, .inc-auto-refresh__toggle:focus-visible .inc-auto-refresh__toggle-icon, .inc-auto-refresh__toggle:active .inc-auto-refresh__toggle-icon {
|
|
14529
|
+
color: var(--inc-text-primary);
|
|
14496
14530
|
}
|
|
14497
|
-
.inc-auto-refresh__toggle-icon
|
|
14498
|
-
|
|
14531
|
+
.inc-auto-refresh__toggle-icon svg {
|
|
14532
|
+
display: block;
|
|
14533
|
+
width: 1rem;
|
|
14534
|
+
height: 1rem;
|
|
14535
|
+
fill: currentColor;
|
|
14499
14536
|
}
|
|
14500
14537
|
.inc-auto-refresh__toggle-text {
|
|
14501
14538
|
width: 1px !important;
|
|
@@ -14520,23 +14557,25 @@ dialog.inc-native-dialog.inc-native-dialog--drawer .inc-native-dialog__body {
|
|
|
14520
14557
|
.inc-auto-refresh.is-paused .inc-auto-refresh__toggle {
|
|
14521
14558
|
color: var(--bs-warning-text-emphasis);
|
|
14522
14559
|
}
|
|
14523
|
-
.inc-auto-refresh.is-paused .inc-auto-refresh__toggle-
|
|
14524
|
-
|
|
14525
|
-
height: 0.7rem;
|
|
14560
|
+
.inc-auto-refresh.is-paused .inc-auto-refresh__toggle:hover, .inc-auto-refresh.is-paused .inc-auto-refresh__toggle:focus-visible, .inc-auto-refresh.is-paused .inc-auto-refresh__toggle:active {
|
|
14561
|
+
color: var(--bs-warning-text-emphasis);
|
|
14526
14562
|
}
|
|
14527
|
-
.inc-auto-refresh.is-paused .inc-auto-refresh__toggle-icon
|
|
14528
|
-
|
|
14529
|
-
width: 100%;
|
|
14530
|
-
background: currentColor;
|
|
14531
|
-
clip-path: polygon(14% 8%, 14% 92%, 86% 50%);
|
|
14563
|
+
.inc-auto-refresh.is-paused .inc-auto-refresh__toggle-icon {
|
|
14564
|
+
color: var(--inc-text-primary);
|
|
14532
14565
|
}
|
|
14533
|
-
.inc-auto-refresh.is-paused .inc-auto-refresh__toggle-icon
|
|
14534
|
-
|
|
14566
|
+
.inc-auto-refresh.is-paused .inc-auto-refresh__toggle-icon svg {
|
|
14567
|
+
transform: translateX(0.03125rem);
|
|
14535
14568
|
}
|
|
14536
14569
|
.inc-auto-refresh.is-loading {
|
|
14537
14570
|
border-color: var(--bs-primary-border-subtle);
|
|
14538
14571
|
box-shadow: 0 0.9rem 1.75rem rgba(var(--bs-primary-rgb), 0.14);
|
|
14539
14572
|
}
|
|
14573
|
+
.inc-auto-refresh.is-loading .inc-auto-refresh__toggle {
|
|
14574
|
+
color: var(--inc-text-primary);
|
|
14575
|
+
}
|
|
14576
|
+
.inc-auto-refresh.is-loading .inc-auto-refresh__toggle:hover, .inc-auto-refresh.is-loading .inc-auto-refresh__toggle:focus-visible, .inc-auto-refresh.is-loading .inc-auto-refresh__toggle:active {
|
|
14577
|
+
color: var(--inc-text-primary);
|
|
14578
|
+
}
|
|
14540
14579
|
|
|
14541
14580
|
.inc-progress,
|
|
14542
14581
|
.inc-meter {
|
|
@@ -15399,6 +15438,17 @@ body.inc-offcanvas-open {
|
|
|
15399
15438
|
color: var(--bs-primary);
|
|
15400
15439
|
}
|
|
15401
15440
|
|
|
15441
|
+
[data-bs-theme=dark] .inc-filter-chip--accent {
|
|
15442
|
+
border-color: rgba(var(--bs-primary-rgb), 0.5);
|
|
15443
|
+
background: rgba(var(--bs-primary-rgb), 0.4);
|
|
15444
|
+
color: var(--bs-white);
|
|
15445
|
+
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 1px 2px rgba(var(--inc-shadow-rgb), 0.12);
|
|
15446
|
+
}
|
|
15447
|
+
[data-bs-theme=dark] .inc-filter-chip--accent .inc-filter-chip__remove {
|
|
15448
|
+
color: currentColor;
|
|
15449
|
+
opacity: 0.88;
|
|
15450
|
+
}
|
|
15451
|
+
|
|
15402
15452
|
.inc-state-panel {
|
|
15403
15453
|
display: flex;
|
|
15404
15454
|
flex-direction: column;
|
|
@@ -15771,17 +15821,17 @@ body.inc-offcanvas-open {
|
|
|
15771
15821
|
[data-bs-theme=dark] .inc-table__row--selected > *,
|
|
15772
15822
|
[data-bs-theme=dark] .inc-table__row--warning > *,
|
|
15773
15823
|
[data-bs-theme=dark] .inc-table__row--danger > * {
|
|
15774
|
-
background: rgba(var(--bs-primary-rgb), 0.
|
|
15824
|
+
background: rgba(var(--bs-primary-rgb), 0.26) !important;
|
|
15775
15825
|
color: var(--inc-text-primary);
|
|
15776
15826
|
}
|
|
15777
15827
|
[data-bs-theme=dark] .inc-table__row--warning > * {
|
|
15778
|
-
background: rgba(var(--bs-warning-rgb), 0.
|
|
15828
|
+
background: rgba(var(--bs-warning-rgb), 0.24) !important;
|
|
15779
15829
|
}
|
|
15780
15830
|
[data-bs-theme=dark] .inc-table__row--danger > * {
|
|
15781
|
-
background: rgba(var(--bs-danger-rgb), 0.
|
|
15831
|
+
background: rgba(var(--bs-danger-rgb), 0.24) !important;
|
|
15782
15832
|
}
|
|
15783
15833
|
[data-bs-theme=dark] .inc-table__row--locked > * {
|
|
15784
|
-
background: rgba(var(--bs-secondary-rgb), 0.
|
|
15834
|
+
background: rgba(var(--bs-secondary-rgb), 0.32) !important;
|
|
15785
15835
|
color: var(--inc-text-secondary);
|
|
15786
15836
|
}
|
|
15787
15837
|
|
|
@@ -15941,6 +15991,10 @@ body.inc-offcanvas-open {
|
|
|
15941
15991
|
border: 1.5px dashed #949596;
|
|
15942
15992
|
border-radius: 0.5rem;
|
|
15943
15993
|
background: linear-gradient(180deg, var(--inc-surface-secondary), var(--inc-surface-primary));
|
|
15994
|
+
transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
|
|
15995
|
+
}
|
|
15996
|
+
.inc-file-dropzone[role=button] {
|
|
15997
|
+
cursor: pointer;
|
|
15944
15998
|
}
|
|
15945
15999
|
.inc-file-dropzone__content {
|
|
15946
16000
|
display: flex;
|
|
@@ -15961,6 +16015,12 @@ body.inc-offcanvas-open {
|
|
|
15961
16015
|
border-color: var(--bs-primary);
|
|
15962
16016
|
background: linear-gradient(180deg, var(--bs-primary-bg-subtle), var(--inc-surface-primary));
|
|
15963
16017
|
}
|
|
16018
|
+
.inc-file-dropzone.is-drag-over, .inc-file-dropzone:focus-visible {
|
|
16019
|
+
border-color: var(--bs-primary);
|
|
16020
|
+
background: linear-gradient(180deg, var(--bs-primary-bg-subtle), var(--inc-surface-primary));
|
|
16021
|
+
box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.14);
|
|
16022
|
+
outline: 0;
|
|
16023
|
+
}
|
|
15964
16024
|
@media (max-width: 767.98px) {
|
|
15965
16025
|
.inc-file-dropzone {
|
|
15966
16026
|
flex-direction: column;
|