@bcc-code/component-library-vue 0.0.0-dev.7252f5d → 0.0.0-dev.73efa0b
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/component-library.js +34433 -31449
- package/dist/component-library.umd.cjs +1714 -1518
- package/dist/index.css +1 -1
- package/dist/theme.css +494 -334
- package/dist-types/components/custom/BccAppNavigation/BccAppNavigation.vue.d.ts +32 -0
- package/dist-types/components/custom/BccBadge/BccBadge.vue.d.ts +2 -0
- package/dist-types/components/custom/BccCapacityIndicator/BccCapacityIndicator.vue.d.ts +3 -0
- package/dist-types/components/custom/BccCircleLoader/BccCircleLoader.vue.d.ts +9 -1
- package/dist-types/components/custom/BccDialKnob/BccDialKnob.vue.d.ts +1 -1
- package/dist-types/components/custom/BccNpsResult/BccNpsResult.vue.d.ts +2 -2
- package/dist-types/components/custom/BccReact/BccReact.vue.d.ts +3 -2
- package/dist-types/components/custom/BccStepIndicator/BccStepIndicator.vue.d.ts +8 -8
- package/dist-types/components/custom/BccTag/BccTag.vue.d.ts +1 -0
- package/dist-types/components/custom/BccTopNavigation/BccTopNavigation.vue.d.ts +57 -0
- package/dist-types/components/custom/index.d.ts +4 -0
- package/dist-types/components/wrapped/BccAvatar/BccAvatar.vue.d.ts +2 -2
- package/dist-types/components/wrapped/BccButton.vue.d.ts +1 -0
- package/dist-types/components/wrapped/BccImage.vue.d.ts +17 -0
- package/dist-types/components/wrapped/BccMenu/BccMenu.vue.d.ts +28 -0
- package/dist-types/components/wrapped/BccMessage.vue.d.ts +4 -2
- package/dist-types/components/wrapped/BccRadioButton.vue.d.ts +20 -0
- package/dist-types/components/wrapped/BccSelectButton.vue.d.ts +20 -0
- package/dist-types/components/wrapped/BccTabs/BccTabs.vue.d.ts +2 -0
- package/dist-types/components/wrapped/BccToggle/BccToggle.vue.d.ts +12 -1
- package/dist-types/components/wrapped/index.d.ts +11 -0
- package/dist-types/index.d.ts +14 -7
- package/package.json +103 -100
package/dist/theme.css
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/* Layer order: Tailwind base/utilities first, then PrimeVue so component styles win */
|
|
2
2
|
@layer theme, base, tailwind, primevue;
|
|
3
|
-
@import
|
|
3
|
+
@import '@bcc-code/design-tokens/css';
|
|
4
4
|
|
|
5
|
-
@import
|
|
6
|
-
@import
|
|
7
|
-
@import
|
|
5
|
+
@import 'tailwindcss';
|
|
6
|
+
@import '@bcc-code/design-tokens/tailwind';
|
|
7
|
+
@import '@bcc-code/design-tokens/primevue/overrides';
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
/* === ./styles/theme.css === */
|
|
@@ -590,77 +590,83 @@
|
|
|
590
590
|
|
|
591
591
|
/* === ./styles/utilities.css === */
|
|
592
592
|
@utility center {
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
&.top {
|
|
596
|
-
@apply items-start;
|
|
597
|
-
}
|
|
593
|
+
@apply flex items-center justify-center;
|
|
598
594
|
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
595
|
+
&.top {
|
|
596
|
+
@apply items-start;
|
|
597
|
+
}
|
|
602
598
|
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
599
|
+
&.bottom {
|
|
600
|
+
@apply items-end;
|
|
601
|
+
}
|
|
606
602
|
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
603
|
+
&.left {
|
|
604
|
+
@apply justify-start;
|
|
605
|
+
}
|
|
610
606
|
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
607
|
+
&.right {
|
|
608
|
+
@apply justify-end;
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
&.stretch {
|
|
612
|
+
@apply items-stretch;
|
|
613
|
+
}
|
|
614
614
|
}
|
|
615
615
|
|
|
616
616
|
@utility col {
|
|
617
|
-
|
|
617
|
+
@apply flex flex-col items-center justify-center;
|
|
618
618
|
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
619
|
+
&.left {
|
|
620
|
+
@apply items-start;
|
|
621
|
+
}
|
|
622
622
|
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
623
|
+
&.right {
|
|
624
|
+
@apply items-end;
|
|
625
|
+
}
|
|
626
626
|
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
627
|
+
&.top {
|
|
628
|
+
@apply justify-start;
|
|
629
|
+
}
|
|
630
630
|
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
631
|
+
&.bottom {
|
|
632
|
+
@apply justify-end;
|
|
633
|
+
}
|
|
634
634
|
}
|
|
635
635
|
|
|
636
636
|
@utility between {
|
|
637
|
-
|
|
637
|
+
@apply justify-between;
|
|
638
638
|
}
|
|
639
639
|
|
|
640
640
|
@utility hide-scrollbar {
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
641
|
+
-ms-overflow-style: none; /* for Internet Explorer, Edge */
|
|
642
|
+
scrollbar-width: none; /* for Firefox */
|
|
643
|
+
overflow-y: scroll;
|
|
644
644
|
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
645
|
+
&::-webkit-scrollbar {
|
|
646
|
+
display: none; /* for Chrome, Safari, and Opera */
|
|
647
|
+
}
|
|
648
648
|
}
|
|
649
649
|
|
|
650
650
|
/* Capitalize first letter */
|
|
651
651
|
@utility capital {
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
652
|
+
@apply inline-block;
|
|
653
|
+
|
|
654
|
+
&::first-letter {
|
|
655
|
+
text-transform: uppercase;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
&.bcc-badge {
|
|
659
|
+
@apply inline-flex;
|
|
660
|
+
}
|
|
656
661
|
}
|
|
657
662
|
|
|
658
663
|
/* Inset 0 */
|
|
659
664
|
@utility inset-0 {
|
|
660
|
-
@apply
|
|
665
|
+
@apply top-0 right-0 bottom-0 left-0;
|
|
661
666
|
}
|
|
662
667
|
|
|
663
668
|
|
|
669
|
+
|
|
664
670
|
/* === ./styles/contexts.css === */
|
|
665
671
|
/* Auto-generated from src/figma-modes. Do not edit by hand. */
|
|
666
672
|
/* Run: pnpm run generate:context-css */
|
|
@@ -768,18 +774,18 @@
|
|
|
768
774
|
}
|
|
769
775
|
|
|
770
776
|
@utility ctx-brand-bolder {
|
|
771
|
-
--ctx-text: var(--color-default-
|
|
777
|
+
--ctx-text: var(--color-default-neutral-0);
|
|
772
778
|
--ctx-text-bold: var(--color-default-neutral-0);
|
|
773
|
-
--ctx-background: var(--color-default-bcc-
|
|
774
|
-
--ctx-gradient: var(--color-default-bcc-
|
|
779
|
+
--ctx-background: var(--color-default-bcc-800);
|
|
780
|
+
--ctx-gradient: var(--color-default-bcc-900);
|
|
775
781
|
--ctx-border: var(--color-default-bcc-700);
|
|
776
782
|
--ctx-shadow: var(--color-neutral-alpha-500A);
|
|
777
|
-
--ctx-text-hover: var(--color-default-
|
|
778
|
-
--ctx-text-pressed: var(--color-default-
|
|
779
|
-
--ctx-background-hover: var(--color-default-bcc-
|
|
780
|
-
--ctx-background-pressed: var(--color-default-bcc-
|
|
781
|
-
--ctx-gradient-hover: var(--color-default-bcc-
|
|
782
|
-
--ctx-gradient-pressed: var(--color-default-bcc-
|
|
783
|
+
--ctx-text-hover: var(--color-default-neutral-0);
|
|
784
|
+
--ctx-text-pressed: var(--color-default-neutral-0);
|
|
785
|
+
--ctx-background-hover: var(--color-default-bcc-900);
|
|
786
|
+
--ctx-background-pressed: var(--color-default-bcc-1000);
|
|
787
|
+
--ctx-gradient-hover: var(--color-default-bcc-1000);
|
|
788
|
+
--ctx-gradient-pressed: var(--color-default-bcc-1000);
|
|
783
789
|
--ctx-border-hover: var(--color-default-bcc-700);
|
|
784
790
|
--ctx-border-pressed: var(--color-default-bcc-700);
|
|
785
791
|
}
|
|
@@ -974,16 +980,16 @@
|
|
|
974
980
|
@utility ctx-gray-bolder {
|
|
975
981
|
--ctx-text: var(--color-default-neutral-200);
|
|
976
982
|
--ctx-text-bold: var(--color-default-neutral-100);
|
|
977
|
-
--ctx-background: var(--color-default-neutral-
|
|
978
|
-
--ctx-gradient: var(--color-default-neutral-
|
|
983
|
+
--ctx-background: var(--color-default-neutral-700);
|
|
984
|
+
--ctx-gradient: var(--color-default-neutral-800);
|
|
979
985
|
--ctx-border: var(--color-default-neutral-700);
|
|
980
986
|
--ctx-shadow: var(--color-neutral-alpha-500A);
|
|
981
987
|
--ctx-text-hover: var(--color-default-neutral-200);
|
|
982
988
|
--ctx-text-pressed: var(--color-default-neutral-200);
|
|
983
|
-
--ctx-background-hover: var(--color-default-neutral-
|
|
984
|
-
--ctx-background-pressed: var(--color-default-neutral-
|
|
985
|
-
--ctx-gradient-hover: var(--color-default-neutral-
|
|
986
|
-
--ctx-gradient-pressed: var(--color-default-neutral-
|
|
989
|
+
--ctx-background-hover: var(--color-default-neutral-800);
|
|
990
|
+
--ctx-background-pressed: var(--color-default-neutral-900);
|
|
991
|
+
--ctx-gradient-hover: var(--color-default-neutral-900);
|
|
992
|
+
--ctx-gradient-pressed: var(--color-default-neutral-900);
|
|
987
993
|
--ctx-border-hover: var(--color-default-neutral-700);
|
|
988
994
|
--ctx-border-pressed: var(--color-default-neutral-700);
|
|
989
995
|
}
|
|
@@ -1722,88 +1728,104 @@
|
|
|
1722
1728
|
|
|
1723
1729
|
|
|
1724
1730
|
/* === ./styles/context.css === */
|
|
1725
|
-
|
|
1726
1731
|
@theme {
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1732
|
+
--color-brand-100: var(--color-bcc-100);
|
|
1733
|
+
--color-brand-200: var(--color-bcc-200);
|
|
1734
|
+
--color-brand-300: var(--color-bcc-300);
|
|
1735
|
+
--color-brand-400: var(--color-bcc-400);
|
|
1736
|
+
--color-brand-500: var(--color-bcc-500);
|
|
1737
|
+
--color-brand-600: var(--color-bcc-600);
|
|
1738
|
+
--color-brand-700: var(--color-bcc-700);
|
|
1739
|
+
--color-brand-800: var(--color-bcc-800);
|
|
1740
|
+
--color-brand-900: var(--color-bcc-900);
|
|
1741
|
+
--color-brand-1000: var(--color-bcc-1000);
|
|
1737
1742
|
}
|
|
1738
1743
|
|
|
1739
1744
|
/** DEFAULT CONTEXTS */
|
|
1740
1745
|
@utility ctx-default {
|
|
1741
|
-
|
|
1746
|
+
@apply ctx-neutral-subtlest;
|
|
1747
|
+
}
|
|
1748
|
+
@utility ctx-success {
|
|
1749
|
+
@apply ctx-success-subtlest;
|
|
1750
|
+
}
|
|
1751
|
+
@utility ctx-danger {
|
|
1752
|
+
@apply ctx-danger-subtlest;
|
|
1753
|
+
}
|
|
1754
|
+
@utility ctx-warning {
|
|
1755
|
+
@apply ctx-warning-subtlest;
|
|
1756
|
+
}
|
|
1757
|
+
@utility ctx-info {
|
|
1758
|
+
@apply ctx-info-subtlest;
|
|
1742
1759
|
}
|
|
1743
|
-
@utility ctx-success { @apply ctx-success-subtlest; }
|
|
1744
|
-
@utility ctx-danger { @apply ctx-danger-subtlest; }
|
|
1745
|
-
@utility ctx-warning { @apply ctx-warning-subtlest; }
|
|
1746
|
-
@utility ctx-info { @apply ctx-info-subtlest; }
|
|
1747
1760
|
|
|
1748
1761
|
@utility text-ctx {
|
|
1749
|
-
|
|
1762
|
+
color: var(--ctx-text);
|
|
1750
1763
|
}
|
|
1751
1764
|
|
|
1752
1765
|
@utility text-ctx-bold {
|
|
1753
|
-
|
|
1766
|
+
color: var(--ctx-text-bold);
|
|
1754
1767
|
}
|
|
1755
1768
|
|
|
1756
1769
|
@utility bg-ctx {
|
|
1757
|
-
|
|
1770
|
+
background-color: var(--ctx-background);
|
|
1758
1771
|
}
|
|
1759
1772
|
|
|
1760
1773
|
@utility border-ctx {
|
|
1761
|
-
|
|
1774
|
+
border-color: var(--ctx-border);
|
|
1762
1775
|
}
|
|
1763
1776
|
|
|
1764
1777
|
@utility shadow-ctx {
|
|
1765
|
-
|
|
1778
|
+
--tw-shadow-color: var(--ctx-shadow);
|
|
1766
1779
|
}
|
|
1767
1780
|
|
|
1768
1781
|
@utility ctx {
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1782
|
+
background-color: var(--ctx-background);
|
|
1783
|
+
color: var(--ctx-text);
|
|
1784
|
+
border-color: var(--ctx-border);
|
|
1772
1785
|
}
|
|
1773
1786
|
|
|
1774
1787
|
@utility ctx-gradient {
|
|
1775
|
-
|
|
1788
|
+
background: linear-gradient(225deg, var(--ctx-background) 0%, var(--ctx-gradient) 100%);
|
|
1789
|
+
|
|
1790
|
+
@variant dark {
|
|
1791
|
+
background: linear-gradient(225deg, var(--ctx-gradient) 0%, var(--ctx-background) 100%);
|
|
1792
|
+
}
|
|
1776
1793
|
}
|
|
1777
1794
|
|
|
1778
1795
|
@utility ctx-raised {
|
|
1779
|
-
|
|
1796
|
+
box-shadow:
|
|
1797
|
+
0 1px 1px 0 var(--ctx-shadow),
|
|
1798
|
+
0 0 1px 0 var(--ctx-shadow);
|
|
1780
1799
|
}
|
|
1781
1800
|
|
|
1782
1801
|
@utility ctx-flat {
|
|
1783
|
-
|
|
1802
|
+
--ctx-background: transparent;
|
|
1784
1803
|
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1804
|
+
@variant hover {
|
|
1805
|
+
--ctx-background: var(--ctx-background-hover);
|
|
1806
|
+
}
|
|
1788
1807
|
}
|
|
1789
1808
|
|
|
1790
1809
|
@utility clickable {
|
|
1791
|
-
|
|
1810
|
+
cursor: pointer;
|
|
1792
1811
|
}
|
|
1793
1812
|
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1813
|
+
@media (hover: hover) and (pointer: fine) {
|
|
1814
|
+
.clickable:hover {
|
|
1815
|
+
--ctx-background: var(--ctx-background-hover);
|
|
1816
|
+
--ctx-text: var(--ctx-text-hover);
|
|
1817
|
+
--ctx-border: var(--ctx-border-hover);
|
|
1818
|
+
}
|
|
1799
1819
|
|
|
1800
|
-
.clickable:active {
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1820
|
+
.clickable:active {
|
|
1821
|
+
--ctx-background: var(--ctx-background-pressed);
|
|
1822
|
+
--ctx-text: var(--ctx-text-pressed);
|
|
1823
|
+
--ctx-border: var(--ctx-border-pressed);
|
|
1824
|
+
}
|
|
1804
1825
|
}
|
|
1805
1826
|
|
|
1806
1827
|
|
|
1828
|
+
|
|
1807
1829
|
/* === ./styles/fonts.css === */
|
|
1808
1830
|
@utility heading-xs { font: var(--heading-xs); }
|
|
1809
1831
|
@utility heading-sm { font: var(--heading-sm); }
|
|
@@ -1823,95 +1845,211 @@
|
|
|
1823
1845
|
/* === ./styles/component-overrides.css === */
|
|
1824
1846
|
/** Custom styles to fix primevue components that are not custom or wrapped. */
|
|
1825
1847
|
|
|
1848
|
+
:root {
|
|
1849
|
+
--p-toast-width: min(85vw, 400px);
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1852
|
+
/**
|
|
1853
|
+
* GUTTER FIX
|
|
1854
|
+
* Primevue's dropwdown components are all missing the gap between input and dropdown
|
|
1855
|
+
**/
|
|
1856
|
+
.p-autocomplete-overlay,
|
|
1857
|
+
.p-menu-overlay,
|
|
1858
|
+
.p-multiselect-overlay,
|
|
1859
|
+
.p-select-overlay,
|
|
1860
|
+
.p-datepicker-panel,
|
|
1861
|
+
.p-treeselect-overlay {
|
|
1862
|
+
margin: var(--p-anchor-gutter) 0;
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1865
|
+
/* This fix is to ensure overlay badge is contained within the size of the component it wraps */
|
|
1866
|
+
.p-overlaybadge {
|
|
1867
|
+
display: inline-block;
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1826
1870
|
/**
|
|
1827
|
-
|
|
1871
|
+
* BccAutocomplete
|
|
1828
1872
|
**/
|
|
1829
1873
|
|
|
1830
1874
|
/** Our icons are a bit smaller that Primevue's default */
|
|
1831
1875
|
.p-autocomplete .p-icon {
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1876
|
+
--p-icon-size: var(--icon-size-sm);
|
|
1877
|
+
--p-form-field-sm-font-size: var(--icon-size-sm);
|
|
1878
|
+
--p-form-field-lg-font-size: var(--icon-size-md);
|
|
1879
|
+
}
|
|
1880
|
+
|
|
1881
|
+
.p-autocomplete .p-autocomplete-clear-icon {
|
|
1882
|
+
/** middle-align the icon */
|
|
1883
|
+
top: calc(50% - var(--icon-size-sm) / 2);
|
|
1884
|
+
margin-top: 0;
|
|
1835
1885
|
}
|
|
1836
1886
|
|
|
1837
1887
|
.p-autocomplete-clearable .p-inputtext {
|
|
1838
|
-
|
|
1888
|
+
flex-grow: 1;
|
|
1839
1889
|
}
|
|
1840
1890
|
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1891
|
+
.p-autocomplete-chip.p-chip {
|
|
1892
|
+
padding-block-start: calc(var(--p-autocomplete-padding-y) / 2);
|
|
1893
|
+
padding-block-end: calc(var(--p-autocomplete-padding-y) / 2);
|
|
1894
|
+
border-radius: var(--p-autocomplete-chip-border-radius);
|
|
1844
1895
|
}
|
|
1845
1896
|
|
|
1846
1897
|
/**
|
|
1847
|
-
|
|
1898
|
+
* BccSelect
|
|
1899
|
+
**/
|
|
1900
|
+
.p-select {
|
|
1901
|
+
--p-icon-size: var(--icon-size-sm);
|
|
1902
|
+
}
|
|
1903
|
+
|
|
1904
|
+
.p-select.inline-select {
|
|
1905
|
+
@apply mx-auto inline-flex w-auto items-center border-0 bg-transparent shadow-none;
|
|
1906
|
+
--p-icon-size: 1.25em;
|
|
1907
|
+
--p-select-dropdown-width: 1.5em;
|
|
1908
|
+
--p-select-min-height: auto;
|
|
1909
|
+
}
|
|
1910
|
+
|
|
1911
|
+
.p-select.inline-select .p-select-label {
|
|
1912
|
+
@apply inline-block font-semibold;
|
|
1913
|
+
font-size: inherit;
|
|
1914
|
+
padding: 0 0 0 0.25em;
|
|
1915
|
+
}
|
|
1916
|
+
|
|
1917
|
+
.p-select.inline-select.inverse {
|
|
1918
|
+
--p-select-color: var(--color-neutral-0);
|
|
1919
|
+
--p-select-dropdown-color: var(--color-neutral-0);
|
|
1920
|
+
--p-select-placeholder-color: var(--color-dark-neutral-1000);
|
|
1921
|
+
}
|
|
1922
|
+
|
|
1923
|
+
/**
|
|
1924
|
+
* Fix issue with icons inside Input within an InputGroup being hidden when Input is in focus
|
|
1848
1925
|
**/
|
|
1926
|
+
.p-inputicon {
|
|
1927
|
+
z-index: 2;
|
|
1928
|
+
}
|
|
1929
|
+
|
|
1930
|
+
.p-dialog-close-button {
|
|
1931
|
+
--p-icon-size: var(--icon-size-sm);
|
|
1932
|
+
}
|
|
1933
|
+
.p-dialog .p-button-icon:empty {
|
|
1934
|
+
display: none;
|
|
1935
|
+
}
|
|
1936
|
+
|
|
1937
|
+
.p-togglebutton {
|
|
1938
|
+
font-size: var(--text-sm);
|
|
1939
|
+
border: 0;
|
|
1940
|
+
}
|
|
1941
|
+
|
|
1942
|
+
.p-togglebutton-sm {
|
|
1943
|
+
font-size: var(--text-sm);
|
|
1944
|
+
}
|
|
1849
1945
|
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
margin: var(--p-anchor-gutter) 0;
|
|
1946
|
+
.p-togglebutton-lg {
|
|
1947
|
+
font-size: var(--text-md);
|
|
1853
1948
|
}
|
|
1854
1949
|
|
|
1855
1950
|
|
|
1856
1951
|
|
|
1952
|
+
|
|
1857
1953
|
/* === ./components/custom/styles.css === */
|
|
1858
1954
|
|
|
1955
|
+
/* from ./BccAppNavigation/BccAppNavigation.css */
|
|
1956
|
+
@layer components {
|
|
1957
|
+
.bcc-app-nav {
|
|
1958
|
+
@apply bg-elevation-surface-default dark:border-brand-800 sticky inset-x-0 bottom-0 z-20 overflow-visible shadow-md sm:rounded-t-xl dark:border-t;
|
|
1959
|
+
}
|
|
1960
|
+
.bcc-app-nav-container {
|
|
1961
|
+
@apply center pb-inset-bottom-1 mx-auto max-w-lg pt-1;
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
.bcc-app-nav-item {
|
|
1965
|
+
@apply relative flex h-12 flex-1 flex-col items-center justify-center gap-1 transition-colors focus:ring-0 focus:outline-none;
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1968
|
+
.bcc-nav-item-icon {
|
|
1969
|
+
@apply size-6 icon-subtlest;
|
|
1970
|
+
}
|
|
1971
|
+
|
|
1972
|
+
.bcc-nav-item-badge {
|
|
1973
|
+
@apply absolute top-0 right-1;
|
|
1974
|
+
}
|
|
1975
|
+
|
|
1976
|
+
.bcc-nav-item-title {
|
|
1977
|
+
@apply text-heading-xs text-center text-subtlest opacity-75;
|
|
1978
|
+
}
|
|
1979
|
+
|
|
1980
|
+
.bcc-app-nav-item--active .bcc-nav-item-title {
|
|
1981
|
+
@apply text-selected opacity-100;
|
|
1982
|
+
}
|
|
1983
|
+
|
|
1984
|
+
.bcc-app-nav-item--active .bcc-nav-item-icon {
|
|
1985
|
+
@apply text-selected;
|
|
1986
|
+
}
|
|
1987
|
+
}
|
|
1988
|
+
|
|
1989
|
+
|
|
1990
|
+
|
|
1859
1991
|
/* from ./BccBadge/BccBadge.css */
|
|
1860
1992
|
@layer components {
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
@apply bg-ctx text-ctx;
|
|
1865
|
-
}
|
|
1866
|
-
.bcc-badge.sm {
|
|
1867
|
-
@apply w-4 h-4 text-heading-xs;
|
|
1868
|
-
}
|
|
1869
|
-
.bcc-badge.md {
|
|
1870
|
-
@apply h-5 w-5 text-heading-sm;
|
|
1871
|
-
}
|
|
1872
|
-
.bcc-badge.lg {
|
|
1873
|
-
@apply w-6 h-6 text-heading-md;
|
|
1874
|
-
}
|
|
1875
|
-
.bcc-badge.xl {
|
|
1876
|
-
@apply w-8 h-8 text-heading-lg;
|
|
1877
|
-
}
|
|
1993
|
+
.bcc-badge {
|
|
1994
|
+
@apply inline-flex shrink-0 items-center justify-center gap-1 rounded-full leading-none whitespace-nowrap;
|
|
1878
1995
|
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1996
|
+
@apply bg-ctx text-ctx;
|
|
1997
|
+
}
|
|
1998
|
+
.bcc-badge.gradient {
|
|
1999
|
+
@apply ctx-gradient;
|
|
2000
|
+
}
|
|
2001
|
+
.bcc-badge.sm {
|
|
2002
|
+
@apply text-heading-xs h-4 w-4;
|
|
2003
|
+
}
|
|
2004
|
+
.bcc-badge.md {
|
|
2005
|
+
@apply text-heading-sm h-5 w-5;
|
|
2006
|
+
}
|
|
2007
|
+
.bcc-badge.lg {
|
|
2008
|
+
@apply text-heading-md h-6 w-6;
|
|
2009
|
+
}
|
|
2010
|
+
.bcc-badge.xl {
|
|
2011
|
+
@apply text-heading-md h-8 w-8;
|
|
2012
|
+
}
|
|
1888
2013
|
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
.bcc-badge-text.bordered.lg, .bcc-badge-text.bordered.xl {
|
|
1899
|
-
@apply px-1;
|
|
1900
|
-
}
|
|
2014
|
+
.bcc-badge .bcc-badge-icon {
|
|
2015
|
+
@apply size-4;
|
|
2016
|
+
}
|
|
2017
|
+
.bcc-badge.lg .bcc-badge-icon {
|
|
2018
|
+
@apply size-5;
|
|
2019
|
+
}
|
|
2020
|
+
.bcc-badge.xl .bcc-badge-icon {
|
|
2021
|
+
@apply size-6;
|
|
2022
|
+
}
|
|
1901
2023
|
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
2024
|
+
.bcc-badge.bcc-badge-text {
|
|
2025
|
+
@apply w-auto px-2;
|
|
2026
|
+
}
|
|
2027
|
+
.bcc-badge-text.lg,
|
|
2028
|
+
.bcc-badge-text.xl {
|
|
2029
|
+
@apply px-3;
|
|
2030
|
+
}
|
|
2031
|
+
.bcc-badge-text.border.lg,
|
|
2032
|
+
.bcc-badge-text.border.xl {
|
|
2033
|
+
@apply px-2;
|
|
2034
|
+
}
|
|
2035
|
+
.bcc-badge-text.bordered.lg,
|
|
2036
|
+
.bcc-badge-text.bordered.xl {
|
|
2037
|
+
@apply px-1;
|
|
2038
|
+
}
|
|
1906
2039
|
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
2040
|
+
.bcc-badge.border {
|
|
2041
|
+
@apply border-1;
|
|
2042
|
+
border-color: var(--ctx-background-pressed);
|
|
2043
|
+
}
|
|
1911
2044
|
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
2045
|
+
.bcc-badge.bordered {
|
|
2046
|
+
@apply border-2;
|
|
2047
|
+
border-color: var(--ctx-background-pressed);
|
|
2048
|
+
}
|
|
2049
|
+
|
|
2050
|
+
.bcc-badge.squared {
|
|
2051
|
+
@apply rounded-sm;
|
|
2052
|
+
}
|
|
1915
2053
|
}
|
|
1916
2054
|
|
|
1917
2055
|
|
|
@@ -1960,6 +2098,7 @@
|
|
|
1960
2098
|
|
|
1961
2099
|
.bcc-capacity-indicator.is-warning {
|
|
1962
2100
|
@apply ctx-yellow-subtlest;
|
|
2101
|
+
--bcc-capacity-indicator-circle: var(--ctx-background);
|
|
1963
2102
|
}
|
|
1964
2103
|
|
|
1965
2104
|
.bcc-capacity-indicator.is-full {
|
|
@@ -2012,8 +2151,8 @@
|
|
|
2012
2151
|
.bcc-frame--raised {
|
|
2013
2152
|
--ctx-background: var(--color-elevation-surface-raised-default);
|
|
2014
2153
|
}
|
|
2015
|
-
.bcc-frame--
|
|
2016
|
-
@apply rounded;
|
|
2154
|
+
.bcc-frame--rounded {
|
|
2155
|
+
@apply rounded-md;
|
|
2017
2156
|
}
|
|
2018
2157
|
.bcc-frame--raised.bcc-frame--shadow {
|
|
2019
2158
|
@apply shadow-raised;
|
|
@@ -2084,43 +2223,53 @@
|
|
|
2084
2223
|
@apply relative w-full;
|
|
2085
2224
|
}
|
|
2086
2225
|
|
|
2087
|
-
.bcc-nps-result
|
|
2226
|
+
.bcc-nps-result.xs {
|
|
2227
|
+
@apply w-24;
|
|
2228
|
+
}
|
|
2229
|
+
.bcc-nps-result.sm {
|
|
2230
|
+
@apply w-36;
|
|
2231
|
+
}
|
|
2232
|
+
.bcc-nps-result.md {
|
|
2233
|
+
@apply w-48;
|
|
2234
|
+
}
|
|
2235
|
+
.bcc-nps-result.lg {
|
|
2236
|
+
@apply w-60;
|
|
2237
|
+
}
|
|
2238
|
+
.bcc-nps-result.xl {
|
|
2239
|
+
@apply w-72;
|
|
2240
|
+
}
|
|
2241
|
+
|
|
2242
|
+
.bcc-nps-result .bcc-nps-result-gauge-dial {
|
|
2088
2243
|
transform-origin: center;
|
|
2089
2244
|
}
|
|
2090
2245
|
|
|
2091
|
-
.bcc-nps-result.animated .result-gauge-dial {
|
|
2246
|
+
.bcc-nps-result.animated .bcc-nps-result-gauge-dial {
|
|
2092
2247
|
transition-delay: 0.3s;
|
|
2093
2248
|
transition: all .7s cubic-bezier(0, 0, 0.3, 1.5);
|
|
2094
2249
|
}
|
|
2095
2250
|
|
|
2096
|
-
.bcc-nps-result-labels.lg {
|
|
2097
|
-
@apply bottom-[2em];
|
|
2098
|
-
}
|
|
2099
2251
|
.bcc-nps-result-labels {
|
|
2100
|
-
@apply absolute bottom-
|
|
2101
|
-
}
|
|
2102
|
-
.bcc-nps-result-labels.sm {
|
|
2103
|
-
@apply bottom-0;
|
|
2252
|
+
@apply absolute text-base bottom-1/4 translate-y-1/2 flex w-full flex-col items-center justify-center;
|
|
2104
2253
|
}
|
|
2105
2254
|
|
|
2106
|
-
.bcc-nps-result-labels.lg .bcc-nps-result-labels--heading {
|
|
2107
|
-
@apply text-heading-xl leading-tight;
|
|
2108
|
-
}
|
|
2109
2255
|
.bcc-nps-result-labels--heading {
|
|
2110
|
-
@apply text-
|
|
2256
|
+
@apply text-[1.25em] font-semibold leading-none;
|
|
2111
2257
|
}
|
|
2112
|
-
.bcc-nps-result-labels
|
|
2113
|
-
@apply text-
|
|
2258
|
+
.bcc-nps-result-labels--label {
|
|
2259
|
+
@apply text-[0.75em] text-subtlest;
|
|
2114
2260
|
}
|
|
2115
2261
|
|
|
2116
|
-
.bcc-nps-result
|
|
2117
|
-
@apply text-
|
|
2262
|
+
.bcc-nps-result.md .bcc-nps-result-labels {
|
|
2263
|
+
@apply text-lg;
|
|
2118
2264
|
}
|
|
2119
|
-
.bcc-nps-result-labels
|
|
2120
|
-
@apply text-
|
|
2265
|
+
.bcc-nps-result.lg .bcc-nps-result-labels {
|
|
2266
|
+
@apply text-xl;
|
|
2267
|
+
}
|
|
2268
|
+
.bcc-nps-result.xl .bcc-nps-result-labels {
|
|
2269
|
+
@apply text-2xl;
|
|
2121
2270
|
}
|
|
2122
|
-
.bcc-nps-result
|
|
2123
|
-
@apply text-
|
|
2271
|
+
.bcc-nps-result.full .bcc-nps-result-labels {
|
|
2272
|
+
@apply text-lg;
|
|
2124
2273
|
}
|
|
2125
2274
|
}
|
|
2126
2275
|
|
|
@@ -2188,190 +2337,192 @@
|
|
|
2188
2337
|
|
|
2189
2338
|
/* from ./BccReact/BccReact.css */
|
|
2190
2339
|
@layer components {
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2340
|
+
.bcc-react {
|
|
2341
|
+
@apply relative flex w-full items-center overflow-visible;
|
|
2342
|
+
}
|
|
2343
|
+
.bcc-react-toggle {
|
|
2344
|
+
@apply mr-1 flex shrink-0 cursor-pointer items-center justify-center rounded-full p-1 transition;
|
|
2345
|
+
}
|
|
2346
|
+
.bcc-react-list {
|
|
2347
|
+
@apply hide-scrollbar flex flex-1 items-center gap-1 overflow-x-auto overflow-y-hidden rounded-full p-1;
|
|
2348
|
+
}
|
|
2349
|
+
.bcc-react-empty {
|
|
2350
|
+
@apply heading-xs flex items-center;
|
|
2351
|
+
}
|
|
2203
2352
|
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2353
|
+
.bcc-react-selector-container {
|
|
2354
|
+
@apply absolute z-50 h-9;
|
|
2355
|
+
@apply top-11 origin-top-left;
|
|
2356
|
+
}
|
|
2208
2357
|
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2358
|
+
.bcc-react-selector-container--top {
|
|
2359
|
+
@apply -top-10 origin-bottom-left;
|
|
2360
|
+
}
|
|
2212
2361
|
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2362
|
+
.bcc-react-selector {
|
|
2363
|
+
@apply flex h-9 flex-col overflow-hidden bg-neutral-100 px-0 shadow-md;
|
|
2364
|
+
border-radius: 18px;
|
|
2365
|
+
}
|
|
2217
2366
|
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2367
|
+
.bcc-react-selector-emojis-container {
|
|
2368
|
+
@apply flex items-center bg-neutral-100 px-1;
|
|
2369
|
+
}
|
|
2221
2370
|
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2371
|
+
.bcc-react-selector-more {
|
|
2372
|
+
@apply flex w-9 items-center justify-center;
|
|
2373
|
+
}
|
|
2374
|
+
.bcc-react-selector-more-btn {
|
|
2375
|
+
@apply flex h-7 w-7 items-center justify-center rounded-full bg-slate-200;
|
|
2376
|
+
}
|
|
2228
2377
|
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2378
|
+
.bcc-react-dropdown-container {
|
|
2379
|
+
@apply top-0 left-0 -z-10 w-full max-w-full;
|
|
2380
|
+
width: 296px;
|
|
2381
|
+
}
|
|
2382
|
+
.bcc-react-dropdown-container--top {
|
|
2383
|
+
@apply top-auto bottom-0 pb-0;
|
|
2384
|
+
}
|
|
2236
2385
|
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2386
|
+
.bcc-react-dropdown {
|
|
2387
|
+
@apply -z-10 flex w-full flex-wrap overflow-hidden px-1;
|
|
2388
|
+
}
|
|
2240
2389
|
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2390
|
+
.bcc-react-arrow-down-icon {
|
|
2391
|
+
@apply h-6 w-6 text-slate-600;
|
|
2392
|
+
transition: transform 0.3s ease;
|
|
2393
|
+
}
|
|
2394
|
+
.bcc-react-arrow-down-icon.open {
|
|
2395
|
+
transform: rotate(-180deg);
|
|
2396
|
+
}
|
|
2248
2397
|
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2398
|
+
.bcc-react-selector-item {
|
|
2399
|
+
@apply relative h-9 w-9 p-2 text-xl leading-none transition-transform duration-200 ease-out;
|
|
2400
|
+
}
|
|
2252
2401
|
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2402
|
+
.bcc-react-selector-item--clicked {
|
|
2403
|
+
animation: scaleFadeOut 300ms forwards;
|
|
2404
|
+
}
|
|
2256
2405
|
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2406
|
+
@keyframes scaleFadeOut {
|
|
2407
|
+
0% {
|
|
2408
|
+
transform: scale(1);
|
|
2409
|
+
opacity: 1;
|
|
2410
|
+
}
|
|
2411
|
+
100% {
|
|
2412
|
+
transform: scale(1.4);
|
|
2413
|
+
opacity: 0;
|
|
2414
|
+
}
|
|
2415
|
+
}
|
|
2267
2416
|
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2417
|
+
.bcc-react-emoji-list-item {
|
|
2418
|
+
@apply ctx clickable center h-7 min-w-7 shrink-0 rounded-full p-1 text-lg leading-none drop-shadow transition-all hover:scale-105;
|
|
2419
|
+
/* Default --not-selected */
|
|
2420
|
+
@apply ctx-neutral-subtlest;
|
|
2421
|
+
}
|
|
2422
|
+
.bcc-react-emoji-list-item span {
|
|
2423
|
+
@apply leading-none;
|
|
2424
|
+
}
|
|
2425
|
+
.bcc-react-emoji-list-item.selected {
|
|
2426
|
+
@apply ctx-neutral-subtle;
|
|
2427
|
+
}
|
|
2276
2428
|
}
|
|
2277
2429
|
|
|
2278
2430
|
|
|
2279
2431
|
|
|
2280
2432
|
/* from ./BccTag/BccTag.css */
|
|
2281
|
-
|
|
2282
2433
|
@layer components {
|
|
2283
2434
|
.bcc-tag.bcc-badge {
|
|
2284
2435
|
@apply w-auto;
|
|
2285
2436
|
}
|
|
2286
2437
|
.bcc-tag.bcc-badge.md {
|
|
2287
|
-
@apply
|
|
2438
|
+
@apply text-body-md h-6;
|
|
2288
2439
|
}
|
|
2289
2440
|
.bcc-tag.bcc-badge.sm {
|
|
2290
|
-
@apply
|
|
2441
|
+
@apply text-body-sm h-5;
|
|
2291
2442
|
}
|
|
2292
2443
|
.bcc-tag.bcc-badge.lg {
|
|
2293
|
-
@apply
|
|
2444
|
+
@apply text-body-md h-8;
|
|
2294
2445
|
}
|
|
2295
2446
|
.bcc-tag.bcc-badge.xl {
|
|
2296
|
-
@apply
|
|
2447
|
+
@apply text-body-lg h-10;
|
|
2297
2448
|
}
|
|
2298
2449
|
}
|
|
2299
2450
|
|
|
2300
2451
|
|
|
2301
2452
|
|
|
2453
|
+
|
|
2302
2454
|
/* === ./components/wrapped/styles.css === */
|
|
2303
2455
|
|
|
2304
2456
|
/* from ./BccAvatar/BccAvatar.css */
|
|
2305
2457
|
@layer components {
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
.bcc-avatar.M {
|
|
2314
|
-
@apply ctx-blue-subtler;
|
|
2315
|
-
}
|
|
2316
|
-
.bcc-avatar.female,
|
|
2317
|
-
.bcc-avatar.F {
|
|
2318
|
-
@apply ctx-purple-subtler;
|
|
2319
|
-
}
|
|
2320
|
-
.bcc-avatar.male.child,
|
|
2321
|
-
.bcc-avatar.M.child {
|
|
2322
|
-
@apply ctx-teal-subtler;
|
|
2323
|
-
}
|
|
2324
|
-
.bcc-avatar.female.child,
|
|
2325
|
-
.bcc-avatar.F.child {
|
|
2326
|
-
@apply ctx-magenta-subtler;
|
|
2327
|
-
}
|
|
2328
|
-
.bcc-avatar.bordered {
|
|
2329
|
-
@apply border-2 border-ctx;
|
|
2330
|
-
}
|
|
2331
|
-
.bcc-avatar.xs {
|
|
2332
|
-
@apply size-5 text-xs;
|
|
2333
|
-
}
|
|
2334
|
-
.bcc-avatar.sm {
|
|
2335
|
-
@apply size-6 text-sm;
|
|
2336
|
-
}
|
|
2337
|
-
.bcc-avatar.md {
|
|
2338
|
-
@apply size-8 text-base;
|
|
2339
|
-
}
|
|
2340
|
-
.bcc-avatar.lg {
|
|
2341
|
-
@apply size-10 text-lg;
|
|
2342
|
-
}
|
|
2343
|
-
.bcc-avatar.xl {
|
|
2344
|
-
@apply size-12 text-xl;
|
|
2345
|
-
}
|
|
2346
|
-
.bcc-avatar.xxl {
|
|
2347
|
-
@apply size-20 text-3xl;
|
|
2348
|
-
}
|
|
2349
|
-
.bcc-avatar.xxxl {
|
|
2350
|
-
@apply size-24 text-4xl;
|
|
2351
|
-
}
|
|
2458
|
+
.bcc-avatar {
|
|
2459
|
+
--p-avatar-background: var(--ctx-background);
|
|
2460
|
+
--p-avatar-color: var(--ctx-text);
|
|
2461
|
+
--bcc-avatar-border: var(--ctx-border);
|
|
2462
|
+
--p-icon-size: var(--icon-size-sm);
|
|
2463
|
+
@apply ctx-gray-subtler shrink-0 overflow-hidden text-sm;
|
|
2464
|
+
}
|
|
2352
2465
|
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2466
|
+
.bcc-avatar.male,
|
|
2467
|
+
.bcc-avatar.M {
|
|
2468
|
+
@apply ctx-blue-subtler;
|
|
2469
|
+
}
|
|
2470
|
+
.bcc-avatar.female,
|
|
2471
|
+
.bcc-avatar.F {
|
|
2472
|
+
@apply ctx-purple-subtler;
|
|
2473
|
+
}
|
|
2474
|
+
.bcc-avatar.male.child,
|
|
2475
|
+
.bcc-avatar.M.child {
|
|
2476
|
+
@apply ctx-teal-subtler;
|
|
2477
|
+
}
|
|
2478
|
+
.bcc-avatar.female.child,
|
|
2479
|
+
.bcc-avatar.F.child {
|
|
2480
|
+
@apply ctx-magenta-subtler;
|
|
2481
|
+
}
|
|
2482
|
+
.bcc-avatar.bordered {
|
|
2483
|
+
@apply border-ctx border-2;
|
|
2484
|
+
}
|
|
2485
|
+
.bcc-avatar.xs {
|
|
2486
|
+
@apply size-5 text-xs;
|
|
2487
|
+
--p-icon-size: var(--icon-size-xs);
|
|
2488
|
+
}
|
|
2489
|
+
.bcc-avatar.sm {
|
|
2490
|
+
@apply size-6 text-xs;
|
|
2491
|
+
--p-icon-size: var(--icon-size-xs);
|
|
2492
|
+
}
|
|
2493
|
+
/* .bcc-avatar.md {
|
|
2494
|
+
same as default
|
|
2495
|
+
}*/
|
|
2496
|
+
.bcc-avatar.lg {
|
|
2497
|
+
@apply text-md size-10;
|
|
2498
|
+
--p-icon-size: var(--icon-size-md);
|
|
2499
|
+
}
|
|
2500
|
+
.bcc-avatar.xl {
|
|
2501
|
+
@apply size-12 text-xl;
|
|
2502
|
+
--p-icon-size: var(--icon-size-lg);
|
|
2503
|
+
}
|
|
2504
|
+
.bcc-avatar.xxl {
|
|
2505
|
+
@apply size-20 text-3xl;
|
|
2506
|
+
--p-icon-size: var(--icon-size-xl);
|
|
2507
|
+
}
|
|
2508
|
+
.bcc-avatar.xxxl {
|
|
2509
|
+
@apply size-24 text-4xl;
|
|
2510
|
+
--p-icon-size: var(--icon-size-xl);
|
|
2511
|
+
}
|
|
2365
2512
|
|
|
2513
|
+
.p-overlaybadge .bcc-avatar.p-avatar-circle.lg ~ .p-badge,
|
|
2514
|
+
.p-overlaybadge .bcc-avatar.p-avatar-circle.xl ~ .p-badge {
|
|
2515
|
+
transform: translate(40%, -40%);
|
|
2516
|
+
}
|
|
2366
2517
|
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
}
|
|
2518
|
+
.p-overlaybadge .bcc-avatar.p-avatar-circle.xxxl ~ .p-badge,
|
|
2519
|
+
.p-overlaybadge .bcc-avatar.p-avatar-circle.xxl ~ .p-badge {
|
|
2520
|
+
transform: translate(20%, -20%);
|
|
2521
|
+
}
|
|
2372
2522
|
}
|
|
2373
2523
|
|
|
2374
2524
|
|
|
2525
|
+
|
|
2375
2526
|
/* from ./BccTabs/BccTabs.css */
|
|
2376
2527
|
@layer components {
|
|
2377
2528
|
.bcc-tabs-fill.p-tabs {
|
|
@@ -2390,6 +2541,9 @@
|
|
|
2390
2541
|
height: 100%;
|
|
2391
2542
|
overflow: auto;
|
|
2392
2543
|
}
|
|
2544
|
+
.bcc-tabs-fluid.p-tabs {
|
|
2545
|
+
width: 100%;
|
|
2546
|
+
}
|
|
2393
2547
|
}
|
|
2394
2548
|
|
|
2395
2549
|
|
|
@@ -2412,24 +2566,30 @@
|
|
|
2412
2566
|
|
|
2413
2567
|
|
|
2414
2568
|
|
|
2415
|
-
:root,
|
|
2569
|
+
:root,
|
|
2570
|
+
:host {
|
|
2416
2571
|
--font-sans: 'Archivo', system-ui, sans-serif;
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2572
|
+
@apply m-0 p-0 font-sans antialiased;
|
|
2573
|
+
-webkit-font-smoothing: antialiased;
|
|
2574
|
+
-moz-osx-font-smoothing: grayscale;
|
|
2575
|
+
line-height: 1.2;
|
|
2576
|
+
font-kerning: normal;
|
|
2577
|
+
}
|
|
2420
2578
|
|
|
2579
|
+
hr {
|
|
2580
|
+
border-color: var(--color-border-default);
|
|
2421
2581
|
}
|
|
2422
2582
|
|
|
2423
2583
|
b,
|
|
2424
2584
|
strong,
|
|
2425
2585
|
.bold {
|
|
2426
|
-
|
|
2427
|
-
|
|
2586
|
+
font-weight: bold;
|
|
2587
|
+
--ctx-text: var(--ctx-text-bold);
|
|
2428
2588
|
}
|
|
2429
2589
|
|
|
2430
2590
|
/* Disable state */
|
|
2431
2591
|
:disabled,
|
|
2432
2592
|
.disabled {
|
|
2433
|
-
|
|
2434
|
-
|
|
2593
|
+
cursor: not-allowed;
|
|
2594
|
+
pointer-events: none;
|
|
2435
2595
|
}
|