@vector-im/compound-web 8.3.5 → 8.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/dist/components/Form/Controls/Checkbox/Checkbox.js +1 -1
- package/dist/components/Form/Controls/Checkbox/Checkbox.module.css.cjs +3 -3
- package/dist/components/Form/Controls/Checkbox/Checkbox.module.css.js +3 -3
- package/dist/components/Form/Controls/EditInPlace/EditInPlace.cjs.map +1 -1
- package/dist/components/Form/Controls/EditInPlace/EditInPlace.js.map +1 -1
- package/dist/components/Form/Controls/Radio/Radio.module.css.cjs +3 -3
- package/dist/components/Form/Controls/Radio/Radio.module.css.js +3 -3
- package/dist/components/Form/Controls/SettingsToggle/SettingsToggle.js +1 -1
- package/dist/components/Form/index.cjs +14 -14
- package/dist/components/Form/index.js +5 -5
- package/dist/components/Menu/ContextMenu.cjs +1 -2
- package/dist/components/Menu/ContextMenu.cjs.map +1 -1
- package/dist/components/Menu/ContextMenu.d.ts.map +1 -1
- package/dist/components/Menu/ContextMenu.js +1 -2
- package/dist/components/Menu/ContextMenu.js.map +1 -1
- package/dist/components/Menu/FloatingMenu.cjs.map +1 -1
- package/dist/components/Menu/FloatingMenu.d.ts.map +1 -1
- package/dist/components/Menu/FloatingMenu.js.map +1 -1
- package/dist/components/Menu/FloatingMenu.module.css.cjs +2 -2
- package/dist/components/Menu/FloatingMenu.module.css.js +2 -2
- package/dist/components/Menu/Menu.cjs +10 -1
- package/dist/components/Menu/Menu.cjs.map +1 -1
- package/dist/components/Menu/Menu.d.ts +4 -0
- package/dist/components/Menu/Menu.d.ts.map +1 -1
- package/dist/components/Menu/Menu.js +10 -1
- package/dist/components/Menu/Menu.js.map +1 -1
- package/dist/components/ReleaseAnnouncement/ReleaseAnnouncementContext.d.ts.map +1 -1
- package/dist/components/ReleaseAnnouncement/useReleaseAnnouncement.d.ts.map +1 -1
- package/dist/components/ReleaseAnnouncement/useReleaseAnnouncement.js +1 -1
- package/dist/components/Tooltip/TooltipContext.d.ts.map +1 -1
- package/dist/components/Tooltip/useTooltip.d.ts.map +1 -1
- package/dist/components/Tooltip/useTooltip.js +1 -1
- package/dist/index.cjs +59 -59
- package/dist/index.js +22 -22
- package/dist/style.css +346 -359
- package/package.json +7 -7
- package/src/components/Form/Controls/Checkbox/Checkbox.module.css +4 -0
- package/src/components/Form/Controls/EditInPlace/EditInPlace.tsx +1 -1
- package/src/components/Form/Controls/Radio/Radio.module.css +4 -0
- package/src/components/Menu/ContextMenu.tsx +1 -2
- package/src/components/Menu/FloatingMenu.module.css +0 -11
- package/src/components/Menu/FloatingMenu.tsx +1 -0
- package/src/components/Menu/Menu.tsx +11 -1
- package/dist/components/Menu/ContextMenu.module.css.cjs +0 -9
- package/dist/components/Menu/ContextMenu.module.css.cjs.map +0 -1
- package/dist/components/Menu/ContextMenu.module.css.js +0 -9
- package/dist/components/Menu/ContextMenu.module.css.js.map +0 -1
- package/src/components/Menu/ContextMenu.module.css +0 -10
package/dist/style.css
CHANGED
|
@@ -647,7 +647,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
|
647
647
|
Please see LICENSE files in the repository root for full details.
|
|
648
648
|
*/
|
|
649
649
|
|
|
650
|
-
.
|
|
650
|
+
._menu_1w1u7_8 {
|
|
651
651
|
border-radius: var(--cpd-space-3x);
|
|
652
652
|
background: var(--cpd-color-bg-canvas-default);
|
|
653
653
|
|
|
@@ -669,51 +669,40 @@ Please see LICENSE files in the repository root for full details.
|
|
|
669
669
|
--cpd-separator-inset: var(--cpd-space-4x);
|
|
670
670
|
}
|
|
671
671
|
|
|
672
|
-
@keyframes _slide-
|
|
672
|
+
@keyframes _slide-in_1w1u7_1 {
|
|
673
673
|
from {
|
|
674
674
|
opacity: 0;
|
|
675
675
|
transform: translate(0, var(--cpd-space-3x));
|
|
676
676
|
}
|
|
677
677
|
}
|
|
678
678
|
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
opacity: 0;
|
|
682
|
-
transform: translate(0, var(--cpd-space-2x));
|
|
683
|
-
}
|
|
684
|
-
}
|
|
685
|
-
|
|
686
|
-
._menu_1glhz_8[data-state="open"] {
|
|
687
|
-
animation: _slide-in_1glhz_1 180ms;
|
|
688
|
-
}
|
|
689
|
-
|
|
690
|
-
._menu_1glhz_8[data-state="closed"] {
|
|
691
|
-
animation: _slide-out_1glhz_1 110ms;
|
|
679
|
+
._menu_1w1u7_8[data-state="open"] {
|
|
680
|
+
animation: _slide-in_1w1u7_1 180ms;
|
|
692
681
|
}
|
|
693
682
|
|
|
694
|
-
@keyframes _fade-
|
|
683
|
+
@keyframes _fade-in_1w1u7_1 {
|
|
695
684
|
from {
|
|
696
685
|
opacity: 0;
|
|
697
686
|
}
|
|
698
687
|
}
|
|
699
688
|
|
|
700
|
-
@keyframes _fade-
|
|
689
|
+
@keyframes _fade-out_1w1u7_1 {
|
|
701
690
|
to {
|
|
702
691
|
opacity: 0;
|
|
703
692
|
}
|
|
704
693
|
}
|
|
705
694
|
|
|
706
695
|
@media (prefers-reduced-motion) {
|
|
707
|
-
.
|
|
708
|
-
animation-name: _fade-
|
|
696
|
+
._menu_1w1u7_8[data-state="open"] {
|
|
697
|
+
animation-name: _fade-in_1w1u7_1;
|
|
709
698
|
}
|
|
710
699
|
|
|
711
|
-
.
|
|
712
|
-
animation-name: _fade-
|
|
700
|
+
._menu_1w1u7_8[data-state="closed"] {
|
|
701
|
+
animation-name: _fade-out_1w1u7_1;
|
|
713
702
|
}
|
|
714
703
|
}
|
|
715
704
|
|
|
716
|
-
.
|
|
705
|
+
._title_1w1u7_63 {
|
|
717
706
|
/** Override MenuTitle margin top **/
|
|
718
707
|
margin-block-start: 0 !important;
|
|
719
708
|
}
|
|
@@ -809,16 +798,6 @@ Please see LICENSE files in the repository root for full details.
|
|
|
809
798
|
background: var(--cpd-color-icon-secondary);
|
|
810
799
|
border-radius: var(--cpd-radius-pill-effect);
|
|
811
800
|
}
|
|
812
|
-
/*
|
|
813
|
-
* Copyright 2025 New Vector Ltd
|
|
814
|
-
*
|
|
815
|
-
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
816
|
-
* Please see LICENSE files in the repository root for full details.
|
|
817
|
-
*/
|
|
818
|
-
|
|
819
|
-
._content_vnv5k_8[data-state="closed"] {
|
|
820
|
-
animation: none;
|
|
821
|
-
}
|
|
822
801
|
/*
|
|
823
802
|
Copyright 2023 New Vector Ltd.
|
|
824
803
|
|
|
@@ -1027,7 +1006,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
|
1027
1006
|
Please see LICENSE files in the repository root for full details.
|
|
1028
1007
|
*/
|
|
1029
1008
|
|
|
1030
|
-
.
|
|
1009
|
+
._container_1ug7n_10 {
|
|
1031
1010
|
--size: 20px;
|
|
1032
1011
|
|
|
1033
1012
|
display: grid;
|
|
@@ -1035,21 +1014,21 @@ Please see LICENSE files in the repository root for full details.
|
|
|
1035
1014
|
block-size: var(--size);
|
|
1036
1015
|
}
|
|
1037
1016
|
|
|
1038
|
-
.
|
|
1039
|
-
.
|
|
1017
|
+
._input_1ug7n_18,
|
|
1018
|
+
._ui_1ug7n_19 {
|
|
1040
1019
|
box-sizing: border-box;
|
|
1041
1020
|
grid-area: 1/1;
|
|
1042
1021
|
inline-size: var(--size);
|
|
1043
1022
|
block-size: var(--size);
|
|
1044
1023
|
}
|
|
1045
1024
|
|
|
1046
|
-
.
|
|
1025
|
+
._input_1ug7n_18 {
|
|
1047
1026
|
opacity: 0;
|
|
1048
1027
|
margin: 0;
|
|
1049
1028
|
cursor: pointer;
|
|
1050
1029
|
}
|
|
1051
1030
|
|
|
1052
|
-
.
|
|
1031
|
+
._ui_1ug7n_19 {
|
|
1053
1032
|
pointer-events: none;
|
|
1054
1033
|
border-radius: 50%;
|
|
1055
1034
|
border: 1px solid;
|
|
@@ -1061,7 +1040,7 @@ Please see LICENSE files in the repository root for full details.
|
|
|
1061
1040
|
justify-content: center;
|
|
1062
1041
|
}
|
|
1063
1042
|
|
|
1064
|
-
.
|
|
1043
|
+
._ui_1ug7n_19::after {
|
|
1065
1044
|
content: "";
|
|
1066
1045
|
inline-size: 6px;
|
|
1067
1046
|
block-size: 6px;
|
|
@@ -1074,78 +1053,82 @@ Please see LICENSE files in the repository root for full details.
|
|
|
1074
1053
|
color: transparent;
|
|
1075
1054
|
}
|
|
1076
1055
|
|
|
1077
|
-
.
|
|
1056
|
+
._input_1ug7n_18:checked + ._ui_1ug7n_19 {
|
|
1078
1057
|
background-color: var(--cpd-color-bg-accent-rest);
|
|
1079
1058
|
border-color: var(--cpd-color-bg-accent-rest);
|
|
1080
1059
|
color: unset;
|
|
1081
1060
|
}
|
|
1082
1061
|
|
|
1083
|
-
.
|
|
1062
|
+
._input_1ug7n_18:checked + ._ui_1ug7n_19::after {
|
|
1084
1063
|
background: var(--cpd-color-icon-on-solid-primary);
|
|
1085
1064
|
border-color: var(--cpd-color-icon-on-solid-primary);
|
|
1086
1065
|
color: unset;
|
|
1087
1066
|
}
|
|
1088
1067
|
|
|
1089
|
-
.
|
|
1068
|
+
._input_1ug7n_18:focus-visible + ._ui_1ug7n_19 {
|
|
1090
1069
|
outline: 2px solid var(--cpd-color-border-focused);
|
|
1091
1070
|
outline-offset: 1px;
|
|
1092
1071
|
}
|
|
1093
1072
|
|
|
1094
|
-
.
|
|
1073
|
+
._input_1ug7n_18[readonly] {
|
|
1095
1074
|
pointer-events: none;
|
|
1096
1075
|
}
|
|
1097
1076
|
|
|
1098
|
-
.
|
|
1077
|
+
._input_1ug7n_18[readonly] + ._ui_1ug7n_19 {
|
|
1099
1078
|
border-color: var(--cpd-color-border-interactive-secondary);
|
|
1100
1079
|
background: var(--cpd-color-bg-subtle-secondary);
|
|
1101
1080
|
}
|
|
1102
1081
|
|
|
1103
|
-
.
|
|
1082
|
+
._input_1ug7n_18[disabled] {
|
|
1083
|
+
cursor: not-allowed;
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
._input_1ug7n_18[disabled] + ._ui_1ug7n_19 {
|
|
1104
1087
|
border-color: var(--cpd-color-border-disabled);
|
|
1105
1088
|
background: var(--cpd-color-bg-canvas-disabled);
|
|
1106
1089
|
}
|
|
1107
1090
|
|
|
1108
|
-
.
|
|
1091
|
+
._input_1ug7n_18[disabled]:checked + ._ui_1ug7n_19 {
|
|
1109
1092
|
border-color: var(--cpd-color-bg-action-primary-disabled);
|
|
1110
1093
|
background: var(--cpd-color-bg-action-primary-disabled);
|
|
1111
1094
|
}
|
|
1112
1095
|
|
|
1113
|
-
.
|
|
1096
|
+
._input_1ug7n_18[readonly]:checked + ._ui_1ug7n_19::after {
|
|
1114
1097
|
background-color: var(--cpd-color-icon-secondary);
|
|
1115
1098
|
border-color: var(--cpd-color-icon-secondary);
|
|
1116
1099
|
color: unset;
|
|
1117
1100
|
}
|
|
1118
1101
|
|
|
1119
1102
|
@media (hover) {
|
|
1120
|
-
.
|
|
1103
|
+
._input_1ug7n_18:not([disabled], [readonly], :checked):hover + ._ui_1ug7n_19 {
|
|
1121
1104
|
border-color: var(--cpd-color-bg-accent-hovered);
|
|
1122
1105
|
|
|
1123
1106
|
/** TODO: have the shadow in the design tokens */
|
|
1124
1107
|
box-shadow: 0 1.2px 2.4px 0 rgb(0 0 0 / 15%);
|
|
1125
1108
|
}
|
|
1126
1109
|
|
|
1127
|
-
.
|
|
1110
|
+
._input_1ug7n_18:not([disabled], [readonly], :checked):hover + ._ui_1ug7n_19::after {
|
|
1128
1111
|
background: var(--cpd-color-icon-quaternary);
|
|
1129
1112
|
border-color: var(--cpd-color-icon-quaternary);
|
|
1130
1113
|
color: unset;
|
|
1131
1114
|
}
|
|
1132
1115
|
|
|
1133
|
-
.
|
|
1116
|
+
._input_1ug7n_18:not([disabled], [readonly]):checked:hover + ._ui_1ug7n_19 {
|
|
1134
1117
|
border-color: var(--cpd-color-bg-accent-hovered);
|
|
1135
1118
|
background: var(--cpd-color-bg-accent-hovered);
|
|
1136
1119
|
}
|
|
1137
1120
|
|
|
1138
|
-
.
|
|
1121
|
+
._input_1ug7n_18[data-invalid]:not([disabled], [readonly]):checked:hover + ._ui_1ug7n_19 {
|
|
1139
1122
|
border-color: var(--cpd-color-bg-critical-hovered);
|
|
1140
1123
|
background: var(--cpd-color-bg-critical-hovered);
|
|
1141
1124
|
}
|
|
1142
1125
|
}
|
|
1143
1126
|
|
|
1144
|
-
.
|
|
1127
|
+
._input_1ug7n_18[data-invalid]:not([disabled], [readonly], :checked) + ._ui_1ug7n_19 {
|
|
1145
1128
|
border-color: var(--cpd-color-border-critical-primary);
|
|
1146
1129
|
}
|
|
1147
1130
|
|
|
1148
|
-
.
|
|
1131
|
+
._input_1ug7n_18[data-invalid]:not([disabled], [readonly]):checked + ._ui_1ug7n_19 {
|
|
1149
1132
|
background-color: var(--cpd-color-bg-critical-primary);
|
|
1150
1133
|
border-color: var(--cpd-color-bg-critical-primary);
|
|
1151
1134
|
}
|
|
@@ -1618,7 +1601,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
|
1618
1601
|
Please see LICENSE files in the repository root for full details.
|
|
1619
1602
|
*/
|
|
1620
1603
|
|
|
1621
|
-
.
|
|
1604
|
+
._container_153f2_10 {
|
|
1622
1605
|
--size: 20px;
|
|
1623
1606
|
|
|
1624
1607
|
display: grid;
|
|
@@ -1626,28 +1609,28 @@ Please see LICENSE files in the repository root for full details.
|
|
|
1626
1609
|
block-size: var(--size);
|
|
1627
1610
|
}
|
|
1628
1611
|
|
|
1629
|
-
.
|
|
1630
|
-
.
|
|
1612
|
+
._input_153f2_18,
|
|
1613
|
+
._ui_153f2_19 {
|
|
1631
1614
|
box-sizing: border-box;
|
|
1632
1615
|
grid-area: 1/1;
|
|
1633
1616
|
inline-size: var(--size);
|
|
1634
1617
|
block-size: var(--size);
|
|
1635
1618
|
}
|
|
1636
1619
|
|
|
1637
|
-
.
|
|
1620
|
+
._input_153f2_18 {
|
|
1638
1621
|
opacity: 0;
|
|
1639
1622
|
margin: 0;
|
|
1640
1623
|
cursor: pointer;
|
|
1641
1624
|
}
|
|
1642
1625
|
|
|
1643
|
-
.
|
|
1626
|
+
._ui_153f2_19 {
|
|
1644
1627
|
pointer-events: none;
|
|
1645
1628
|
border-radius: 4px; /* TODO: Ought to be a token */
|
|
1646
1629
|
border: 1px solid;
|
|
1647
1630
|
border-color: var(--cpd-color-border-interactive-primary);
|
|
1648
1631
|
}
|
|
1649
1632
|
|
|
1650
|
-
.
|
|
1633
|
+
._ui_153f2_19 svg {
|
|
1651
1634
|
inline-size: var(--size);
|
|
1652
1635
|
block-size: var(--size);
|
|
1653
1636
|
|
|
@@ -1658,71 +1641,75 @@ Please see LICENSE files in the repository root for full details.
|
|
|
1658
1641
|
color: transparent;
|
|
1659
1642
|
}
|
|
1660
1643
|
|
|
1661
|
-
.
|
|
1644
|
+
._input_153f2_18:checked + ._ui_153f2_19 {
|
|
1662
1645
|
background-color: var(--cpd-color-bg-accent-rest);
|
|
1663
1646
|
border-color: var(--cpd-color-bg-accent-rest);
|
|
1664
1647
|
}
|
|
1665
1648
|
|
|
1666
|
-
.
|
|
1649
|
+
._input_153f2_18:checked + ._ui_153f2_19 svg {
|
|
1667
1650
|
color: var(--cpd-color-icon-on-solid-primary);
|
|
1668
1651
|
}
|
|
1669
1652
|
|
|
1670
|
-
.
|
|
1653
|
+
._input_153f2_18:focus-visible + ._ui_153f2_19 {
|
|
1671
1654
|
outline: 2px solid var(--cpd-color-border-focused);
|
|
1672
1655
|
outline-offset: 1px;
|
|
1673
1656
|
}
|
|
1674
1657
|
|
|
1675
|
-
.
|
|
1658
|
+
._input_153f2_18[disabled] {
|
|
1659
|
+
cursor: not-allowed;
|
|
1660
|
+
}
|
|
1661
|
+
|
|
1662
|
+
._input_153f2_18[disabled] + ._ui_153f2_19 {
|
|
1676
1663
|
border-color: var(--cpd-color-border-disabled);
|
|
1677
1664
|
background: var(--cpd-color-bg-canvas-disabled);
|
|
1678
1665
|
}
|
|
1679
1666
|
|
|
1680
|
-
.
|
|
1667
|
+
._input_153f2_18[readonly] {
|
|
1681
1668
|
pointer-events: none;
|
|
1682
1669
|
}
|
|
1683
1670
|
|
|
1684
|
-
.
|
|
1671
|
+
._input_153f2_18[readonly] + ._ui_153f2_19 {
|
|
1685
1672
|
border-color: var(--cpd-color-border-interactive-secondary);
|
|
1686
1673
|
background: var(--cpd-color-bg-subtle-secondary);
|
|
1687
1674
|
}
|
|
1688
1675
|
|
|
1689
|
-
.
|
|
1676
|
+
._input_153f2_18[disabled]:checked + ._ui_153f2_19 {
|
|
1690
1677
|
border-color: var(--cpd-color-bg-action-primary-disabled);
|
|
1691
1678
|
background: var(--cpd-color-bg-action-primary-disabled);
|
|
1692
1679
|
}
|
|
1693
1680
|
|
|
1694
|
-
.
|
|
1681
|
+
._input_153f2_18[readonly]:checked + ._ui_153f2_19 svg {
|
|
1695
1682
|
color: var(--cpd-color-icon-secondary);
|
|
1696
1683
|
}
|
|
1697
1684
|
|
|
1698
1685
|
@media (hover) {
|
|
1699
|
-
.
|
|
1686
|
+
._input_153f2_18:not([disabled], [readonly], :checked):hover + ._ui_153f2_19 {
|
|
1700
1687
|
border-color: var(--cpd-color-bg-accent-hovered);
|
|
1701
1688
|
|
|
1702
1689
|
/** TODO: have the shadow in the design tokens */
|
|
1703
1690
|
box-shadow: 0 1.2px 2.4px 0 rgb(0 0 0 / 15%);
|
|
1704
1691
|
}
|
|
1705
1692
|
|
|
1706
|
-
.
|
|
1693
|
+
._input_153f2_18:not([disabled], [readonly], :checked):hover + ._ui_153f2_19 svg {
|
|
1707
1694
|
color: var(--cpd-color-icon-quaternary);
|
|
1708
1695
|
}
|
|
1709
1696
|
|
|
1710
|
-
.
|
|
1697
|
+
._input_153f2_18:not([disabled], [readonly]):checked:hover + ._ui_153f2_19 {
|
|
1711
1698
|
border-color: var(--cpd-color-bg-accent-hovered);
|
|
1712
1699
|
background: var(--cpd-color-bg-accent-hovered);
|
|
1713
1700
|
}
|
|
1714
1701
|
|
|
1715
|
-
.
|
|
1702
|
+
._input_153f2_18[data-invalid]:not([disabled], [readonly]):checked:hover + ._ui_153f2_19 {
|
|
1716
1703
|
border-color: var(--cpd-color-bg-critical-hovered);
|
|
1717
1704
|
background: var(--cpd-color-bg-critical-hovered);
|
|
1718
1705
|
}
|
|
1719
1706
|
}
|
|
1720
1707
|
|
|
1721
|
-
.
|
|
1708
|
+
._input_153f2_18[data-invalid]:not([disabled], :checked, [readonly]) + ._ui_153f2_19 {
|
|
1722
1709
|
border-color: var(--cpd-color-border-critical-primary);
|
|
1723
1710
|
}
|
|
1724
1711
|
|
|
1725
|
-
.
|
|
1712
|
+
._input_153f2_18[data-invalid]:not([disabled], [readonly]):checked + ._ui_153f2_19 {
|
|
1726
1713
|
background-color: var(--cpd-color-bg-critical-primary);
|
|
1727
1714
|
border-color: var(--cpd-color-bg-critical-primary);
|
|
1728
1715
|
}
|
|
@@ -2121,6 +2108,29 @@ Please see LICENSE files in the repository root for full details.
|
|
|
2121
2108
|
font-feature-settings: var(--cpd-font-feature-settings);
|
|
2122
2109
|
}
|
|
2123
2110
|
/*
|
|
2111
|
+
Copyright 2024 New Vector Ltd.
|
|
2112
|
+
|
|
2113
|
+
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2114
|
+
Please see LICENSE files in the repository root for full details.
|
|
2115
|
+
*/
|
|
2116
|
+
|
|
2117
|
+
._controls_17lij_8 {
|
|
2118
|
+
display: flex;
|
|
2119
|
+
gap: 15px;
|
|
2120
|
+
|
|
2121
|
+
& > input {
|
|
2122
|
+
flex: 1;
|
|
2123
|
+
min-inline-size: 0;
|
|
2124
|
+
}
|
|
2125
|
+
}
|
|
2126
|
+
|
|
2127
|
+
._button-group_17lij_18 {
|
|
2128
|
+
display: flex;
|
|
2129
|
+
inset-block-start: var(--cpd-space-1x);
|
|
2130
|
+
align-items: center;
|
|
2131
|
+
gap: var(--cpd-space-2x);
|
|
2132
|
+
}
|
|
2133
|
+
/*
|
|
2124
2134
|
Copyright 2025 New Vector Ltd.
|
|
2125
2135
|
Copyright 2023 The Matrix.org Foundation C.I.C.
|
|
2126
2136
|
Copyright 2023 New Vector Ltd
|
|
@@ -2222,29 +2232,6 @@ Please see LICENSE files in the repository root for full details.
|
|
|
2222
2232
|
background-color: var(--cpd-color-bg-info-subtle);
|
|
2223
2233
|
}
|
|
2224
2234
|
/*
|
|
2225
|
-
Copyright 2024 New Vector Ltd.
|
|
2226
|
-
|
|
2227
|
-
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2228
|
-
Please see LICENSE files in the repository root for full details.
|
|
2229
|
-
*/
|
|
2230
|
-
|
|
2231
|
-
._controls_17lij_8 {
|
|
2232
|
-
display: flex;
|
|
2233
|
-
gap: 15px;
|
|
2234
|
-
|
|
2235
|
-
& > input {
|
|
2236
|
-
flex: 1;
|
|
2237
|
-
min-inline-size: 0;
|
|
2238
|
-
}
|
|
2239
|
-
}
|
|
2240
|
-
|
|
2241
|
-
._button-group_17lij_18 {
|
|
2242
|
-
display: flex;
|
|
2243
|
-
inset-block-start: var(--cpd-space-1x);
|
|
2244
|
-
align-items: center;
|
|
2245
|
-
gap: var(--cpd-space-2x);
|
|
2246
|
-
}
|
|
2247
|
-
/*
|
|
2248
2235
|
Copyright 2025 New Vector Ltd.
|
|
2249
2236
|
Copyright 2023 The Matrix.org Foundation C.I.C.
|
|
2250
2237
|
Copyright 2023 New Vector Ltd
|
|
@@ -2337,103 +2324,94 @@ Please see LICENSE files in the repository root for full details.
|
|
|
2337
2324
|
outline: 1px solid transparent;
|
|
2338
2325
|
}
|
|
2339
2326
|
}
|
|
2340
|
-
/*
|
|
2341
|
-
|
|
2342
|
-
*
|
|
2343
|
-
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2344
|
-
* Please see LICENSE files in the repository root for full details.
|
|
2345
|
-
*/
|
|
2327
|
+
/*
|
|
2328
|
+
Copyright 2024 New Vector Ltd.
|
|
2346
2329
|
|
|
2347
|
-
.
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
padding: 0;
|
|
2351
|
-
}
|
|
2330
|
+
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2331
|
+
Please see LICENSE files in the repository root for full details.
|
|
2332
|
+
*/
|
|
2352
2333
|
|
|
2353
|
-
.
|
|
2334
|
+
._breadcrumb_1xygz_8 {
|
|
2354
2335
|
display: flex;
|
|
2355
|
-
flex-direction: row;
|
|
2356
|
-
justify-content: flex-start;
|
|
2357
2336
|
align-items: center;
|
|
2337
|
+
block-size: 40px;
|
|
2358
2338
|
gap: var(--cpd-space-3x);
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
}
|
|
2339
|
+
padding-block-end: var(--cpd-space-3x);
|
|
2340
|
+
border-block-end: 1px solid var(--cpd-color-alpha-gray-400);
|
|
2341
|
+
box-sizing: border-box;
|
|
2363
2342
|
|
|
2364
|
-
.
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
}
|
|
2343
|
+
._pages_1xygz_17 {
|
|
2344
|
+
display: flex;
|
|
2345
|
+
gap: var(--cpd-space-1x);
|
|
2368
2346
|
|
|
2369
|
-
/*
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
inset-block-end: 0;
|
|
2374
|
-
inset-inline: 0;
|
|
2375
|
-
block-size: 0;
|
|
2376
|
-
border-radius: var(--cpd-radius-pill-effect) var(--cpd-radius-pill-effect) 0 0;
|
|
2377
|
-
background-color: var(--cpd-color-bg-action-primary-rest);
|
|
2378
|
-
transition: height 0.1s ease-in-out;
|
|
2379
|
-
}
|
|
2347
|
+
/* override list styles */
|
|
2348
|
+
list-style: none;
|
|
2349
|
+
margin: 0;
|
|
2350
|
+
padding: 0;
|
|
2380
2351
|
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2352
|
+
a {
|
|
2353
|
+
cursor: pointer;
|
|
2354
|
+
}
|
|
2355
|
+
|
|
2356
|
+
._last-page_1xygz_30 {
|
|
2357
|
+
font: var(--cpd-font-body-sm-regular);
|
|
2358
|
+
color: var(--cpd-color-text-secondary);
|
|
2359
|
+
}
|
|
2360
|
+
|
|
2361
|
+
/*
|
|
2362
|
+
* Breadcrumb separator
|
|
2363
|
+
* We want this separator to be only visual and to not be in the accessibility tree.
|
|
2364
|
+
* The nav html element already provides an accessible way to separate the links.
|
|
2365
|
+
*/
|
|
2366
|
+
li + li::before {
|
|
2367
|
+
display: inline-block;
|
|
2368
|
+
margin: 0 0.3em 0 0.25em;
|
|
2369
|
+
transform: rotate(15deg);
|
|
2370
|
+
border-inline-end: 1px solid var(--cpd-color-text-secondary);
|
|
2371
|
+
block-size: var(--cpd-space-3x);
|
|
2372
|
+
content: "";
|
|
2373
|
+
}
|
|
2374
|
+
|
|
2375
|
+
/* Last page */
|
|
2376
|
+
:last-child {
|
|
2377
|
+
span {
|
|
2378
|
+
padding-inline-start: var(--cpd-space-1x);
|
|
2379
|
+
}
|
|
2380
|
+
}
|
|
2381
|
+
}
|
|
2384
2382
|
}
|
|
2383
|
+
/*
|
|
2384
|
+
* Copyright 2025 New Vector Ltd
|
|
2385
|
+
*
|
|
2386
|
+
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2387
|
+
* Please see LICENSE files in the repository root for full details.
|
|
2388
|
+
*/
|
|
2385
2389
|
|
|
2386
|
-
.
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
+
._chat-filter_5qdp0_8 {
|
|
2391
|
+
font: var(--cpd-font-body-sm-medium);
|
|
2392
|
+
color: var(--cpd-color-text-primary);
|
|
2393
|
+
background-color: transparent;
|
|
2394
|
+
border: var(--cpd-border-width-1) solid
|
|
2395
|
+
var(--cpd-color-border-interactive-secondary);
|
|
2396
|
+
border-radius: 99px;
|
|
2390
2397
|
cursor: pointer;
|
|
2391
|
-
appearance: none;
|
|
2392
2398
|
display: flex;
|
|
2393
2399
|
align-items: center;
|
|
2394
2400
|
justify-content: center;
|
|
2395
|
-
|
|
2396
|
-
box-sizing: border-box;
|
|
2397
|
-
background: transparent;
|
|
2398
|
-
border: 0;
|
|
2399
|
-
font: var(--cpd-font-body-md-medium);
|
|
2400
|
-
color: var(--cpd-color-text-secondary);
|
|
2401
|
-
text-decoration: none;
|
|
2401
|
+
padding: var(--cpd-space-1x) var(--cpd-space-2x);
|
|
2402
2402
|
}
|
|
2403
2403
|
|
|
2404
2404
|
@media (hover) {
|
|
2405
|
-
.
|
|
2406
|
-
color: var(--cpd-color-
|
|
2407
|
-
background
|
|
2405
|
+
._chat-filter_5qdp0_8:hover {
|
|
2406
|
+
border-color: var(--cpd-color-border-interactive-primary);
|
|
2407
|
+
background: var(--cpd-color-bg-subtle-primary);
|
|
2408
2408
|
}
|
|
2409
2409
|
}
|
|
2410
2410
|
|
|
2411
|
-
.
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
._nav-item_z70g4_47:not([disabled]):active {
|
|
2416
|
-
color: var(--cpd-color-text-primary);
|
|
2417
|
-
background-color: var(--cpd-color-bg-subtle-primary);
|
|
2418
|
-
}
|
|
2419
|
-
|
|
2420
|
-
._nav-item_z70g4_47[aria-current],
|
|
2421
|
-
._nav-item_z70g4_47[aria-selected="true"] {
|
|
2422
|
-
color: var(--cpd-color-text-primary);
|
|
2423
|
-
}
|
|
2424
|
-
|
|
2425
|
-
._nav-item_z70g4_47[disabled] {
|
|
2426
|
-
cursor: not-allowed;
|
|
2427
|
-
|
|
2428
|
-
/* Enable pointer events for svgs even with fill=none */
|
|
2429
|
-
pointer-events: all !important;
|
|
2430
|
-
color: var(--cpd-color-text-disabled);
|
|
2431
|
-
}
|
|
2432
|
-
|
|
2433
|
-
@media (forced-colors: active) {
|
|
2434
|
-
._nav-tab_z70g4_25[data-current]::before {
|
|
2435
|
-
outline: 1px solid transparent;
|
|
2436
|
-
}
|
|
2411
|
+
._chat-filter_5qdp0_8[aria-selected="true"] {
|
|
2412
|
+
border-color: var(--cpd-color-bg-action-primary-rest);
|
|
2413
|
+
background: var(--cpd-color-bg-action-primary-rest);
|
|
2414
|
+
color: var(--cpd-color-text-on-solid-primary);
|
|
2437
2415
|
}
|
|
2438
2416
|
/*
|
|
2439
2417
|
Copyright 2024 New Vector Ltd.
|
|
@@ -2442,75 +2420,14 @@ SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
|
2442
2420
|
Please see LICENSE files in the repository root for full details.
|
|
2443
2421
|
*/
|
|
2444
2422
|
|
|
2445
|
-
.
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
border-radius: var(--cpd-space-3x);
|
|
2449
|
-
background: var(--cpd-color-bg-action-primary-rest);
|
|
2450
|
-
padding: var(--cpd-space-5x) var(--cpd-space-6x);
|
|
2451
|
-
|
|
2452
|
-
/* from figma */
|
|
2453
|
-
box-shadow: 0 4px 24px 0 rgb(0 0 0 / 10%);
|
|
2454
|
-
|
|
2455
|
-
/*
|
|
2456
|
-
* Grid, we want to have the following layout:
|
|
2457
|
-
* ----------------------------------
|
|
2458
|
-
* - --------------- ---------- -
|
|
2459
|
-
* - | heading | | | -
|
|
2460
|
-
* - -------------- | button | -
|
|
2461
|
-
* - --------------- | button | -
|
|
2462
|
-
* - | description | | | -
|
|
2463
|
-
* - --------------- ---------- -
|
|
2464
|
-
* ----------------------------------
|
|
2465
|
-
*/
|
|
2466
|
-
display: grid;
|
|
2467
|
-
grid-template:
|
|
2468
|
-
"header button" auto
|
|
2469
|
-
"description button" auto;
|
|
2470
|
-
align-items: center;
|
|
2471
|
-
column-gap: var(--cpd-space-6x);
|
|
2472
|
-
}
|
|
2423
|
+
._container_j0rlq_8 {
|
|
2424
|
+
display: flex;
|
|
2425
|
+
flex-direction: column;
|
|
2473
2426
|
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
}
|
|
2479
|
-
|
|
2480
|
-
._description_16f2y_43 {
|
|
2481
|
-
color: var(--cpd-color-gray-500);
|
|
2482
|
-
grid-area: description;
|
|
2483
|
-
}
|
|
2484
|
-
|
|
2485
|
-
._button_16f2y_48 {
|
|
2486
|
-
color: var(--cpd-color-bg-subtle-secondary);
|
|
2487
|
-
grid-area: button;
|
|
2488
|
-
}
|
|
2489
|
-
|
|
2490
|
-
._arrow_16f2y_53 {
|
|
2491
|
-
fill: var(--cpd-color-bg-action-primary-rest);
|
|
2492
|
-
}
|
|
2493
|
-
|
|
2494
|
-
@media (forced-colors: active) {
|
|
2495
|
-
._content_16f2y_8 {
|
|
2496
|
-
outline: 1px solid transparent;
|
|
2497
|
-
}
|
|
2498
|
-
}
|
|
2499
|
-
/*
|
|
2500
|
-
Copyright 2024 New Vector Ltd.
|
|
2501
|
-
|
|
2502
|
-
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2503
|
-
Please see LICENSE files in the repository root for full details.
|
|
2504
|
-
*/
|
|
2505
|
-
|
|
2506
|
-
._container_j0rlq_8 {
|
|
2507
|
-
display: flex;
|
|
2508
|
-
flex-direction: column;
|
|
2509
|
-
|
|
2510
|
-
label {
|
|
2511
|
-
font: var(--cpd-font-body-md-medium);
|
|
2512
|
-
margin-block-end: var(--cpd-space-1x);
|
|
2513
|
-
}
|
|
2427
|
+
label {
|
|
2428
|
+
font: var(--cpd-font-body-md-medium);
|
|
2429
|
+
margin-block-end: var(--cpd-space-1x);
|
|
2430
|
+
}
|
|
2514
2431
|
|
|
2515
2432
|
button {
|
|
2516
2433
|
inline-size: 100%;
|
|
@@ -2634,116 +2551,185 @@ Please see LICENSE files in the repository root for full details.
|
|
|
2634
2551
|
}
|
|
2635
2552
|
}
|
|
2636
2553
|
}
|
|
2637
|
-
/*
|
|
2638
|
-
Copyright
|
|
2554
|
+
/* Copyright 2025 New Vector Ltd.
|
|
2555
|
+
* Copyright 2023 The Matrix.org Foundation C.I.C.
|
|
2556
|
+
*
|
|
2557
|
+
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2558
|
+
* Please see LICENSE files in the repository root for full details.
|
|
2559
|
+
*/
|
|
2639
2560
|
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2561
|
+
._nav-bar_z70g4_8 {
|
|
2562
|
+
border-block-end: var(--cpd-border-width-1) solid var(--cpd-color-gray-400);
|
|
2563
|
+
margin: var(--cpd-space-6x) 0;
|
|
2564
|
+
padding: 0;
|
|
2565
|
+
}
|
|
2643
2566
|
|
|
2644
|
-
.
|
|
2567
|
+
._nav-bar-items_z70g4_14 {
|
|
2645
2568
|
display: flex;
|
|
2569
|
+
flex-direction: row;
|
|
2570
|
+
justify-content: flex-start;
|
|
2646
2571
|
align-items: center;
|
|
2647
|
-
block-size: 40px;
|
|
2648
2572
|
gap: var(--cpd-space-3x);
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
|
|
2653
|
-
._pages_1xygz_17 {
|
|
2654
|
-
display: flex;
|
|
2655
|
-
gap: var(--cpd-space-1x);
|
|
2573
|
+
list-style: none;
|
|
2574
|
+
padding: 0;
|
|
2575
|
+
margin: 0;
|
|
2576
|
+
}
|
|
2656
2577
|
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
|
|
2578
|
+
._nav-tab_z70g4_25 {
|
|
2579
|
+
padding: var(--cpd-space-4x) 0;
|
|
2580
|
+
position: relative;
|
|
2581
|
+
}
|
|
2661
2582
|
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2583
|
+
/* Underline effect */
|
|
2584
|
+
._nav-tab_z70g4_25::before {
|
|
2585
|
+
content: "";
|
|
2586
|
+
position: absolute;
|
|
2587
|
+
inset-block-end: 0;
|
|
2588
|
+
inset-inline: 0;
|
|
2589
|
+
block-size: 0;
|
|
2590
|
+
border-radius: var(--cpd-radius-pill-effect) var(--cpd-radius-pill-effect) 0 0;
|
|
2591
|
+
background-color: var(--cpd-color-bg-action-primary-rest);
|
|
2592
|
+
transition: height 0.1s ease-in-out;
|
|
2593
|
+
}
|
|
2665
2594
|
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2595
|
+
._nav-tab_z70g4_25[data-current]::before {
|
|
2596
|
+
/* This is not exactly right: designs says 3px, but there are no variables for that */
|
|
2597
|
+
block-size: var(--cpd-border-width-4);
|
|
2598
|
+
}
|
|
2670
2599
|
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2600
|
+
._nav-item_z70g4_47 {
|
|
2601
|
+
padding-block: var(--cpd-space-1x);
|
|
2602
|
+
padding-inline: var(--cpd-space-2x);
|
|
2603
|
+
border-radius: var(--cpd-radius-pill-effect);
|
|
2604
|
+
cursor: pointer;
|
|
2605
|
+
appearance: none;
|
|
2606
|
+
display: flex;
|
|
2607
|
+
align-items: center;
|
|
2608
|
+
justify-content: center;
|
|
2609
|
+
gap: var(--cpd-space-2x);
|
|
2610
|
+
box-sizing: border-box;
|
|
2611
|
+
background: transparent;
|
|
2612
|
+
border: 0;
|
|
2613
|
+
font: var(--cpd-font-body-md-medium);
|
|
2614
|
+
color: var(--cpd-color-text-secondary);
|
|
2615
|
+
text-decoration: none;
|
|
2616
|
+
}
|
|
2684
2617
|
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
}
|
|
2690
|
-
}
|
|
2618
|
+
@media (hover) {
|
|
2619
|
+
._nav-item_z70g4_47:not([disabled]):hover {
|
|
2620
|
+
color: var(--cpd-color-text-primary);
|
|
2621
|
+
background-color: var(--cpd-color-bg-subtle-secondary);
|
|
2691
2622
|
}
|
|
2692
2623
|
}
|
|
2693
|
-
/*
|
|
2694
|
-
Copyright 2024 New Vector Ltd.
|
|
2695
2624
|
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2625
|
+
._nav-item_z70g4_47:focus-visible {
|
|
2626
|
+
outline: var(--cpd-color-border-focused) var(--cpd-border-width-2) solid;
|
|
2627
|
+
}
|
|
2699
2628
|
|
|
2700
|
-
.
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
|
|
2629
|
+
._nav-item_z70g4_47:not([disabled]):active {
|
|
2630
|
+
color: var(--cpd-color-text-primary);
|
|
2631
|
+
background-color: var(--cpd-color-bg-subtle-primary);
|
|
2632
|
+
}
|
|
2633
|
+
|
|
2634
|
+
._nav-item_z70g4_47[aria-current],
|
|
2635
|
+
._nav-item_z70g4_47[aria-selected="true"] {
|
|
2636
|
+
color: var(--cpd-color-text-primary);
|
|
2637
|
+
}
|
|
2638
|
+
|
|
2639
|
+
._nav-item_z70g4_47[disabled] {
|
|
2640
|
+
cursor: not-allowed;
|
|
2641
|
+
|
|
2642
|
+
/* Enable pointer events for svgs even with fill=none */
|
|
2643
|
+
pointer-events: all !important;
|
|
2644
|
+
color: var(--cpd-color-text-disabled);
|
|
2709
2645
|
}
|
|
2710
2646
|
|
|
2711
2647
|
@media (forced-colors: active) {
|
|
2712
|
-
.
|
|
2648
|
+
._nav-tab_z70g4_25[data-current]::before {
|
|
2713
2649
|
outline: 1px solid transparent;
|
|
2714
2650
|
}
|
|
2715
2651
|
}
|
|
2716
2652
|
/*
|
|
2717
|
-
* Copyright
|
|
2653
|
+
* Copyright 2025 New Vector Ltd
|
|
2718
2654
|
*
|
|
2719
2655
|
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2720
2656
|
* Please see LICENSE files in the repository root for full details.
|
|
2721
2657
|
*/
|
|
2722
2658
|
|
|
2723
|
-
.
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
background-color: var(--cpd-color-
|
|
2728
|
-
|
|
2659
|
+
._pill_187tn_8 {
|
|
2660
|
+
border-radius: 38px;
|
|
2661
|
+
font: var(--cpd-font-body-xs-semibold);
|
|
2662
|
+
color: var(--cpd-color-text-on-solid-primary);
|
|
2663
|
+
background-color: var(--cpd-color-icon-success-primary);
|
|
2664
|
+
padding: 0 var(--cpd-space-2x);
|
|
2665
|
+
block-size: 20px;
|
|
2666
|
+
display: inline-flex;
|
|
2729
2667
|
align-items: center;
|
|
2730
2668
|
}
|
|
2731
2669
|
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
|
|
2670
|
+
@media (forced-colors: active) {
|
|
2671
|
+
._pill_187tn_8 {
|
|
2672
|
+
outline: 1px solid transparent;
|
|
2673
|
+
}
|
|
2735
2674
|
}
|
|
2675
|
+
/*
|
|
2676
|
+
Copyright 2024 New Vector Ltd.
|
|
2736
2677
|
|
|
2737
|
-
|
|
2738
|
-
|
|
2678
|
+
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2679
|
+
Please see LICENSE files in the repository root for full details.
|
|
2680
|
+
*/
|
|
2681
|
+
|
|
2682
|
+
._content_16f2y_8 {
|
|
2683
|
+
/* 320px + 20px padding left + 20px padding right */
|
|
2684
|
+
max-inline-size: 320px;
|
|
2685
|
+
border-radius: var(--cpd-space-3x);
|
|
2686
|
+
background: var(--cpd-color-bg-action-primary-rest);
|
|
2687
|
+
padding: var(--cpd-space-5x) var(--cpd-space-6x);
|
|
2688
|
+
|
|
2689
|
+
/* from figma */
|
|
2690
|
+
box-shadow: 0 4px 24px 0 rgb(0 0 0 / 10%);
|
|
2691
|
+
|
|
2692
|
+
/*
|
|
2693
|
+
* Grid, we want to have the following layout:
|
|
2694
|
+
* ----------------------------------
|
|
2695
|
+
* - --------------- ---------- -
|
|
2696
|
+
* - | heading | | | -
|
|
2697
|
+
* - -------------- | button | -
|
|
2698
|
+
* - --------------- | button | -
|
|
2699
|
+
* - | description | | | -
|
|
2700
|
+
* - --------------- ---------- -
|
|
2701
|
+
* ----------------------------------
|
|
2702
|
+
*/
|
|
2703
|
+
display: grid;
|
|
2704
|
+
grid-template:
|
|
2705
|
+
"header button" auto
|
|
2706
|
+
"description button" auto;
|
|
2707
|
+
align-items: center;
|
|
2708
|
+
column-gap: var(--cpd-space-6x);
|
|
2739
2709
|
}
|
|
2740
2710
|
|
|
2741
|
-
.
|
|
2742
|
-
|
|
2711
|
+
._header_16f2y_37 {
|
|
2712
|
+
margin: 0;
|
|
2713
|
+
color: var(--cpd-color-text-on-solid-primary);
|
|
2714
|
+
grid-area: header;
|
|
2715
|
+
}
|
|
2716
|
+
|
|
2717
|
+
._description_16f2y_43 {
|
|
2718
|
+
color: var(--cpd-color-gray-500);
|
|
2719
|
+
grid-area: description;
|
|
2720
|
+
}
|
|
2721
|
+
|
|
2722
|
+
._button_16f2y_48 {
|
|
2723
|
+
color: var(--cpd-color-bg-subtle-secondary);
|
|
2724
|
+
grid-area: button;
|
|
2725
|
+
}
|
|
2726
|
+
|
|
2727
|
+
._arrow_16f2y_53 {
|
|
2728
|
+
fill: var(--cpd-color-bg-action-primary-rest);
|
|
2743
2729
|
}
|
|
2744
2730
|
|
|
2745
2731
|
@media (forced-colors: active) {
|
|
2746
|
-
.
|
|
2732
|
+
._content_16f2y_8 {
|
|
2747
2733
|
outline: 1px solid transparent;
|
|
2748
2734
|
}
|
|
2749
2735
|
}
|
|
@@ -2754,31 +2740,23 @@ Please see LICENSE files in the repository root for full details.
|
|
|
2754
2740
|
* Please see LICENSE files in the repository root for full details.
|
|
2755
2741
|
*/
|
|
2756
2742
|
|
|
2757
|
-
.
|
|
2758
|
-
|
|
2759
|
-
color: var(--cpd-color-text-primary);
|
|
2760
|
-
background-color: transparent;
|
|
2761
|
-
border: var(--cpd-border-width-1) solid
|
|
2762
|
-
var(--cpd-color-border-interactive-secondary);
|
|
2763
|
-
border-radius: 99px;
|
|
2764
|
-
cursor: pointer;
|
|
2743
|
+
._unread_cti0f_8 {
|
|
2744
|
+
inline-size: 20px;
|
|
2765
2745
|
display: flex;
|
|
2766
|
-
align-items: center;
|
|
2767
2746
|
justify-content: center;
|
|
2768
|
-
padding: var(--cpd-space-1x) var(--cpd-space-2x);
|
|
2769
|
-
}
|
|
2770
2747
|
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
background: var(--cpd-color-
|
|
2748
|
+
div {
|
|
2749
|
+
block-size: 8px;
|
|
2750
|
+
inline-size: 8px;
|
|
2751
|
+
background-color: var(--cpd-color-icon-secondary);
|
|
2752
|
+
border-radius: 100%;
|
|
2775
2753
|
}
|
|
2776
2754
|
}
|
|
2777
2755
|
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
|
|
2781
|
-
|
|
2756
|
+
@media (forced-colors: active) {
|
|
2757
|
+
._unread_cti0f_8 div {
|
|
2758
|
+
outline: 1px solid transparent;
|
|
2759
|
+
}
|
|
2782
2760
|
}
|
|
2783
2761
|
/*
|
|
2784
2762
|
* Copyright 2025 New Vector Ltd
|
|
@@ -2807,50 +2785,59 @@ Please see LICENSE files in the repository root for full details.
|
|
|
2807
2785
|
}
|
|
2808
2786
|
}
|
|
2809
2787
|
/*
|
|
2810
|
-
|
|
2811
|
-
*
|
|
2812
|
-
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2813
|
-
* Please see LICENSE files in the repository root for full details.
|
|
2814
|
-
*/
|
|
2788
|
+
Copyright 2024 New Vector Ltd.
|
|
2815
2789
|
|
|
2816
|
-
.
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
|
|
2823
|
-
|
|
2824
|
-
|
|
2790
|
+
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2791
|
+
Please see LICENSE files in the repository root for full details.
|
|
2792
|
+
*/
|
|
2793
|
+
|
|
2794
|
+
._visual-list_1mgc1_8 {
|
|
2795
|
+
display: flex;
|
|
2796
|
+
flex-direction: column;
|
|
2797
|
+
gap: var(--cpd-space-1x);
|
|
2798
|
+
margin: 0;
|
|
2799
|
+
padding: 0;
|
|
2800
|
+
list-style-type: none;
|
|
2801
|
+
border-radius: var(--cpd-space-3x);
|
|
2802
|
+
overflow: hidden;
|
|
2825
2803
|
}
|
|
2826
2804
|
|
|
2827
2805
|
@media (forced-colors: active) {
|
|
2828
|
-
.
|
|
2806
|
+
._visual-list_1mgc1_8 {
|
|
2829
2807
|
outline: 1px solid transparent;
|
|
2830
2808
|
}
|
|
2831
2809
|
}
|
|
2832
2810
|
/*
|
|
2833
|
-
* Copyright
|
|
2811
|
+
* Copyright 2024 New Vector Ltd.
|
|
2834
2812
|
*
|
|
2835
2813
|
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2836
2814
|
* Please see LICENSE files in the repository root for full details.
|
|
2837
2815
|
*/
|
|
2838
2816
|
|
|
2839
|
-
.
|
|
2840
|
-
inline-size: 20px;
|
|
2817
|
+
._visual-list-item_1nc1y_8 {
|
|
2841
2818
|
display: flex;
|
|
2842
|
-
|
|
2819
|
+
gap: var(--cpd-space-3x);
|
|
2820
|
+
padding: var(--cpd-space-3x) var(--cpd-space-4x);
|
|
2821
|
+
background-color: var(--cpd-color-bg-subtle-secondary);
|
|
2822
|
+
font: var(--cpd-font-body-md-medium);
|
|
2823
|
+
align-items: center;
|
|
2824
|
+
}
|
|
2843
2825
|
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2826
|
+
._visual-list-item-icon_1nc1y_17 {
|
|
2827
|
+
flex-shrink: 0;
|
|
2828
|
+
color: var(--cpd-color-icon-secondary);
|
|
2829
|
+
}
|
|
2830
|
+
|
|
2831
|
+
._visual-list-item-icon-success_1nc1y_22 {
|
|
2832
|
+
color: var(--cpd-color-icon-success-primary);
|
|
2833
|
+
}
|
|
2834
|
+
|
|
2835
|
+
._visual-list-item-icon-destructive_1nc1y_26 {
|
|
2836
|
+
color: var(--cpd-color-icon-critical-primary);
|
|
2850
2837
|
}
|
|
2851
2838
|
|
|
2852
2839
|
@media (forced-colors: active) {
|
|
2853
|
-
.
|
|
2840
|
+
._visual-list-item_1nc1y_8 {
|
|
2854
2841
|
outline: 1px solid transparent;
|
|
2855
2842
|
}
|
|
2856
2843
|
}
|