@rovula/ui 0.1.27 → 0.1.29
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/cjs/bundle.css +513 -67
- package/dist/cjs/bundle.js +589 -589
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/Avatar/Avatar.d.ts +1 -1
- package/dist/cjs/types/components/Avatar/Avatar.stories.d.ts +1 -1
- package/dist/cjs/types/components/Avatar/Avatar.styles.d.ts +1 -0
- package/dist/cjs/types/components/DataTable/DataTable.d.ts +195 -4
- package/dist/cjs/types/components/DataTable/DataTable.editing.d.ts +20 -0
- package/dist/cjs/types/components/DataTable/DataTable.editing.types.d.ts +145 -0
- package/dist/cjs/types/components/DataTable/DataTable.stories.d.ts +268 -6
- package/dist/cjs/types/components/Dropdown/Dropdown.d.ts +22 -0
- package/dist/cjs/types/components/Dropdown/Dropdown.stories.d.ts +4 -0
- package/dist/cjs/types/components/ScrollArea/ScrollArea.d.ts +3 -3
- package/dist/cjs/types/components/ScrollArea/ScrollArea.stories.d.ts +4 -0
- package/dist/cjs/types/components/Table/Table.d.ts +33 -3
- package/dist/cjs/types/components/Table/Table.stories.d.ts +86 -4
- package/dist/cjs/types/components/TextInput/TextInput.stories.d.ts +8 -0
- package/dist/cjs/types/components/TextInput/TextInput.styles.d.ts +1 -0
- package/dist/components/Avatar/Avatar.js +2 -1
- package/dist/components/Avatar/Avatar.styles.js +3 -0
- package/dist/components/Avatar/AvatarBase.js +1 -1
- package/dist/components/DataTable/DataTable.editing.js +385 -0
- package/dist/components/DataTable/DataTable.editing.types.js +1 -0
- package/dist/components/DataTable/DataTable.js +983 -50
- package/dist/components/DataTable/DataTable.stories.js +1077 -25
- package/dist/components/Dropdown/Dropdown.js +8 -6
- package/dist/components/ScrollArea/ScrollArea.js +2 -2
- package/dist/components/ScrollArea/ScrollArea.stories.js +68 -2
- package/dist/components/Table/Table.js +103 -13
- package/dist/components/Table/Table.stories.js +226 -9
- package/dist/components/TextInput/TextInput.js +6 -4
- package/dist/components/TextInput/TextInput.stories.js +8 -0
- package/dist/components/TextInput/TextInput.styles.js +7 -1
- package/dist/esm/bundle.css +513 -67
- package/dist/esm/bundle.js +1545 -1545
- package/dist/esm/bundle.js.map +1 -1
- package/dist/esm/types/components/Avatar/Avatar.d.ts +1 -1
- package/dist/esm/types/components/Avatar/Avatar.stories.d.ts +1 -1
- package/dist/esm/types/components/Avatar/Avatar.styles.d.ts +1 -0
- package/dist/esm/types/components/DataTable/DataTable.d.ts +195 -4
- package/dist/esm/types/components/DataTable/DataTable.editing.d.ts +20 -0
- package/dist/esm/types/components/DataTable/DataTable.editing.types.d.ts +145 -0
- package/dist/esm/types/components/DataTable/DataTable.stories.d.ts +268 -6
- package/dist/esm/types/components/Dropdown/Dropdown.d.ts +22 -0
- package/dist/esm/types/components/Dropdown/Dropdown.stories.d.ts +4 -0
- package/dist/esm/types/components/ScrollArea/ScrollArea.d.ts +3 -3
- package/dist/esm/types/components/ScrollArea/ScrollArea.stories.d.ts +4 -0
- package/dist/esm/types/components/Table/Table.d.ts +33 -3
- package/dist/esm/types/components/Table/Table.stories.d.ts +86 -4
- package/dist/esm/types/components/TextInput/TextInput.stories.d.ts +8 -0
- package/dist/esm/types/components/TextInput/TextInput.styles.d.ts +1 -0
- package/dist/index.d.ts +493 -122
- package/dist/src/theme/global.css +762 -96
- package/package.json +14 -2
- package/src/components/Avatar/Avatar.styles.ts +4 -1
- package/src/components/Avatar/Avatar.tsx +3 -2
- package/src/components/Avatar/AvatarBase.tsx +3 -3
- package/src/components/DataTable/DataTable.editing.tsx +861 -0
- package/src/components/DataTable/DataTable.editing.types.ts +192 -0
- package/src/components/DataTable/DataTable.stories.tsx +2169 -31
- package/src/components/DataTable/DataTable.test.tsx +696 -0
- package/src/components/DataTable/DataTable.tsx +2260 -94
- package/src/components/Dropdown/Dropdown.tsx +22 -6
- package/src/components/ScrollArea/ScrollArea.stories.tsx +146 -3
- package/src/components/ScrollArea/ScrollArea.tsx +6 -6
- package/src/components/Table/Table.stories.tsx +789 -44
- package/src/components/Table/Table.tsx +294 -28
- package/src/components/TextInput/TextInput.stories.tsx +80 -0
- package/src/components/TextInput/TextInput.styles.ts +7 -1
- package/src/components/TextInput/TextInput.tsx +21 -14
- package/src/test/setup.ts +50 -0
- package/src/theme/global.css +81 -42
- package/src/theme/presets/colors.js +12 -0
- package/src/theme/themes/variable.css +27 -28
- package/src/theme/tokens/baseline.css +2 -1
- package/src/theme/tokens/components/scrollbar.css +9 -4
- package/src/theme/tokens/components/table.css +63 -0
|
@@ -77,64 +77,64 @@
|
|
|
77
77
|
--state-primary-text-pressed-skyller: #1e40af;
|
|
78
78
|
--state-secondary-default-xspector: #ececec;
|
|
79
79
|
--state-secondary-default-report-xspector-light-mode: #9b8f00;
|
|
80
|
-
--state-secondary-default-skyller: #
|
|
80
|
+
--state-secondary-default-skyller: #171717;
|
|
81
81
|
--state-secondary-hover-xspector: #fafafa;
|
|
82
82
|
--state-secondary-hover-report-xspector-light-mode: #b1a400;
|
|
83
|
-
--state-secondary-hover-skyller: #
|
|
83
|
+
--state-secondary-hover-skyller: #424242;
|
|
84
84
|
--state-secondary-stroke-xspector: rgba(236 236 236 / 0.48);
|
|
85
85
|
--state-secondary-stroke-report-xspector-light-mode: rgba(155 143 0 / 0.64);
|
|
86
86
|
--state-secondary-stroke-skyller: rgba(189 189 189 / 0.64);
|
|
87
87
|
--state-secondary-hover-bg-xspector: rgba(250 250 250 / 0.08);
|
|
88
88
|
--state-secondary-hover-bg-report-xspector-light-mode: rgba(221 205 0 / 0.08);
|
|
89
|
-
--state-secondary-hover-bg-skyller: rgba(
|
|
89
|
+
--state-secondary-hover-bg-skyller: rgba(66 66 66 / 0.08);
|
|
90
90
|
--state-secondary-pressed-xspector: #bbbbbb;
|
|
91
91
|
--state-secondary-pressed-report-xspector-light-mode: #6f6700;
|
|
92
|
-
--state-secondary-pressed-skyller: #
|
|
92
|
+
--state-secondary-pressed-skyller: #000000;
|
|
93
93
|
--state-secondary-active-xspector: #fafafa;
|
|
94
94
|
--state-secondary-active-report-xspector-light-mode: #b1a400;
|
|
95
|
-
--state-secondary-active-skyller: #
|
|
95
|
+
--state-secondary-active-skyller: #000000;
|
|
96
96
|
--state-secondary-text-solid-xspector: #212b36;
|
|
97
97
|
--state-secondary-text-solid-report-xspector-light-mode: #ffffff;
|
|
98
98
|
--state-secondary-text-solid-skyller: #ffffff;
|
|
99
99
|
--state-secondary-text-outline-xspector: #ececec;
|
|
100
100
|
--state-secondary-text-outline-report-xspector-light-mode: #9b8f00;
|
|
101
|
-
--state-secondary-text-outline-skyller: #
|
|
101
|
+
--state-secondary-text-outline-skyller: #171717;
|
|
102
102
|
--state-secondary-text-hover-xspector: #fafafa;
|
|
103
103
|
--state-secondary-text-hover-report-xspector-light-mode: #b1a400;
|
|
104
|
-
--state-secondary-text-hover-skyller: #
|
|
104
|
+
--state-secondary-text-hover-skyller: #424242;
|
|
105
105
|
--state-secondary-text-pressed-xspector: #c5c5c5;
|
|
106
106
|
--state-secondary-text-pressed-report-xspector-light-mode: #6f6700;
|
|
107
|
-
--state-secondary-text-pressed-skyller: #
|
|
107
|
+
--state-secondary-text-pressed-skyller: #000000;
|
|
108
108
|
--state-tertiary-default-xspector: #8aa2ab;
|
|
109
109
|
--state-tertiary-default-report-xspector-light-mode: #4f4f4f;
|
|
110
|
-
--state-tertiary-default-skyller: #
|
|
110
|
+
--state-tertiary-default-skyller: #60a5fa;
|
|
111
111
|
--state-tertiary-hover-xspector: #adcad6;
|
|
112
112
|
--state-tertiary-hover-report-xspector-light-mode: #6f6f6f;
|
|
113
|
-
--state-tertiary-hover-skyller: #
|
|
113
|
+
--state-tertiary-hover-skyller: #90c0fc;
|
|
114
114
|
--state-tertiary-stroke-xspector: rgba(138 162 171 / 0.48);
|
|
115
115
|
--state-tertiary-stroke-report-xspector-light-mode: rgba(79 79 79 / 0.48);
|
|
116
|
-
--state-tertiary-stroke-skyller: rgba(
|
|
116
|
+
--state-tertiary-stroke-skyller: rgba(189 189 189 / 0.48);
|
|
117
117
|
--state-tertiary-hover-bg-xspector: rgba(173 202 214 / 0.08);
|
|
118
118
|
--state-tertiary-hover-bg-report-xspector-light-mode: rgba(158 158 158 / 0.08);
|
|
119
|
-
--state-tertiary-hover-bg-skyller: rgba(
|
|
119
|
+
--state-tertiary-hover-bg-skyller: rgba(144 192 252 / 0.08);
|
|
120
120
|
--state-tertiary-pressed-xspector: #57656b;
|
|
121
121
|
--state-tertiary-pressed-report-xspector-light-mode: #b1b1b1;
|
|
122
|
-
--state-tertiary-pressed-skyller: #
|
|
122
|
+
--state-tertiary-pressed-skyller: #1e40af;
|
|
123
123
|
--state-tertiary-active-xspector: #adcad6;
|
|
124
124
|
--state-tertiary-active-report-xspector-light-mode: #6f6f6f;
|
|
125
|
-
--state-tertiary-active-skyller: #
|
|
125
|
+
--state-tertiary-active-skyller: #1e3a8a;
|
|
126
126
|
--state-tertiary-text-solid-xspector: #212b36;
|
|
127
127
|
--state-tertiary-text-solid-report-xspector-light-mode: #ffffff;
|
|
128
128
|
--state-tertiary-text-solid-skyller: #ffffff;
|
|
129
129
|
--state-tertiary-text-outline-xspector: #8aa2ab;
|
|
130
130
|
--state-tertiary-text-outline-report-xspector-light-mode: #4f4f4f;
|
|
131
|
-
--state-tertiary-text-outline-skyller: #
|
|
131
|
+
--state-tertiary-text-outline-skyller: #60a5fa;
|
|
132
132
|
--state-tertiary-text-hover-xspector: #adcad6;
|
|
133
133
|
--state-tertiary-text-hover-report-xspector-light-mode: #6f6f6f;
|
|
134
|
-
--state-tertiary-text-hover-skyller: #
|
|
134
|
+
--state-tertiary-text-hover-skyller: #90c0fc;
|
|
135
135
|
--state-tertiary-text-pressed-xspector: #57656b;
|
|
136
136
|
--state-tertiary-text-pressed-report-xspector-light-mode: #b1b1b1;
|
|
137
|
-
--state-tertiary-text-pressed-skyller: #
|
|
137
|
+
--state-tertiary-text-pressed-skyller: #1e40af;
|
|
138
138
|
--state-info-default-xspector: #1b7df5;
|
|
139
139
|
--state-info-default-report-xspector-light-mode: #1b7df5;
|
|
140
140
|
--state-info-default-skyller: #2563eb;
|
|
@@ -869,13 +869,13 @@
|
|
|
869
869
|
--input-error-skyller: #dc2626;
|
|
870
870
|
--function-default-solid-xspector: #ececec;
|
|
871
871
|
--function-default-solid-report-xspector-light-mode: #1e3249;
|
|
872
|
-
--function-default-solid-skyller: #
|
|
872
|
+
--function-default-solid-skyller: #171717;
|
|
873
873
|
--function-default-hover-xspector: #fafafa;
|
|
874
874
|
--function-default-hover-report-xspector-light-mode: #35475b;
|
|
875
|
-
--function-default-hover-skyller: #
|
|
875
|
+
--function-default-hover-skyller: #424242;
|
|
876
876
|
--function-default-hover-bg-xspector: rgba(250 250 250 / 0.08);
|
|
877
877
|
--function-default-hover-bg-report-xspector-light-mode: rgba(30 50 73 / 0.08);
|
|
878
|
-
--function-default-hover-bg-skyller: rgba(
|
|
878
|
+
--function-default-hover-bg-skyller: rgba(23 23 23 / 0.08);
|
|
879
879
|
--function-default-stroke-xspector: rgba(158 158 158 / 0.24);
|
|
880
880
|
--function-default-stroke-report-xspector-light-mode: rgba(30 50 73 / 0.48);
|
|
881
881
|
--function-default-stroke-skyller: rgba(189 189 189 / 0.48);
|
|
@@ -884,19 +884,19 @@
|
|
|
884
884
|
--function-default-icon-skyller: #ffffff;
|
|
885
885
|
--function-default-outline-icon-xspector: #9e9e9e;
|
|
886
886
|
--function-default-outline-icon-report-xspector-light-mode: #1e3249;
|
|
887
|
-
--function-default-outline-icon-skyller: #
|
|
887
|
+
--function-default-outline-icon-skyller: #171717;
|
|
888
888
|
--function-active-solid-xspector: #b1a400;
|
|
889
889
|
--function-active-solid-report-xspector-light-mode: #9b8f00;
|
|
890
|
-
--function-active-solid-skyller: #
|
|
890
|
+
--function-active-solid-skyller: #2563eb;
|
|
891
891
|
--function-active-hover-xspector: #ddcd00;
|
|
892
892
|
--function-active-hover-report-xspector-light-mode: #b1a400;
|
|
893
|
-
--function-active-hover-skyller: #
|
|
893
|
+
--function-active-hover-skyller: #5182ef;
|
|
894
894
|
--function-active-hover-bg-xspector: rgba(221 205 0 / 0.08);
|
|
895
895
|
--function-active-hover-bg-report-xspector-light-mode: rgba(221 205 0 / 0.08);
|
|
896
|
-
--function-active-hover-bg-skyller: rgba(
|
|
896
|
+
--function-active-hover-bg-skyller: rgba(81 130 239 / 0.08);
|
|
897
897
|
--function-active-stroke-xspector: rgba(177 164 0 / 0.48);
|
|
898
898
|
--function-active-stroke-report-xspector-light-mode: rgba(177 164 0 / 0.48);
|
|
899
|
-
--function-active-stroke-skyller: rgba(
|
|
899
|
+
--function-active-stroke-skyller: rgba(37 99 235 / 0.48);
|
|
900
900
|
--function-active-icon-xspector: #212b36;
|
|
901
901
|
--function-active-icon-report-xspector-light-mode: #ffffff;
|
|
902
902
|
--function-active-icon-skyller: #ffffff;
|
|
@@ -1038,7 +1038,7 @@
|
|
|
1038
1038
|
--modal-line-xspector: #4a4a4a;
|
|
1039
1039
|
--modal-line-report-xspector-light-mode: #cfcfcf;
|
|
1040
1040
|
--modal-line-skyller: #d4d4d4;
|
|
1041
|
-
--bg-bg4-xspector: #
|
|
1041
|
+
--bg-bg4-xspector: #0c2948;
|
|
1042
1042
|
--bg-bg4-report-xspector-light-mode: #ffffff;
|
|
1043
1043
|
--bg-bg4-skyller: #ffffff;
|
|
1044
1044
|
--bg-bg5-xspector: #000000;
|
|
@@ -1055,7 +1055,7 @@
|
|
|
1055
1055
|
--bg-stroke5-skyller: #000000;
|
|
1056
1056
|
--table-bg-main-xspector: #091a2a;
|
|
1057
1057
|
--table-bg-main-report-xspector-light-mode: #e5e5e5;
|
|
1058
|
-
--table-bg-main-skyller: #
|
|
1058
|
+
--table-bg-main-skyller: #d4d4d6;
|
|
1059
1059
|
--table-bg-line-xspector: #1c3955;
|
|
1060
1060
|
--table-bg-line-report-xspector-light-mode: #d2d2d2;
|
|
1061
1061
|
--table-bg-line-skyller: #ececec;
|
|
@@ -3058,11 +3058,16 @@
|
|
|
3058
3058
|
--switch-thumb-disabled-color: var(--state-disable-solid, #454f5b);
|
|
3059
3059
|
/* ------------------------------------------------------------------ */
|
|
3060
3060
|
/* Scrollbar Component Tokens */
|
|
3061
|
+
/* Values represent TOTAL TRACK SIZE (thumb + padding + border). */
|
|
3062
|
+
/* Figma node: 9466-13957 */
|
|
3061
3063
|
/* ------------------------------------------------------------------ */
|
|
3062
|
-
/*
|
|
3063
|
-
|
|
3064
|
-
|
|
3065
|
-
|
|
3064
|
+
/* Track thickness (= thumb + 2×2px padding)
|
|
3065
|
+
* M: 16px = 12px thumb + 2px top + 2px bottom
|
|
3066
|
+
* S: 10px = 6px thumb + 2px top + 2px bottom (no track border)
|
|
3067
|
+
* XS: 4px = 4px thumb, no padding, no border */
|
|
3068
|
+
--scrollbar-m-thickness: 16px;
|
|
3069
|
+
--scrollbar-s-thickness: 10px;
|
|
3070
|
+
--scrollbar-xs-thickness: 4px;
|
|
3066
3071
|
/* Track border — visible on M size only */
|
|
3067
3072
|
--scrollbar-track-border-width: 1px;
|
|
3068
3073
|
--scrollbar-track-border-color: rgba(158, 158, 158, 0.16);
|
|
@@ -3115,6 +3120,68 @@
|
|
|
3115
3120
|
--badge-severity-medium-bg: var(--state-warning-default);
|
|
3116
3121
|
--badge-severity-low-bg: var(--state-success-default);
|
|
3117
3122
|
--badge-severity-lowest-bg: var(--state-info-default);
|
|
3123
|
+
/* ------------------------------------------------------------------ */
|
|
3124
|
+
/* Table Component Tokens */
|
|
3125
|
+
/* Figma node: 9637-8978 (section "Use case" on Design System page) */
|
|
3126
|
+
/* */
|
|
3127
|
+
/* These are component-scoped aliases that the Table component uses */
|
|
3128
|
+
/* exclusively. They default to the "on-bg" values and are */
|
|
3129
|
+
/* automatically overridden when an ancestor carries */
|
|
3130
|
+
/* data-surface="panel" — no React prop or variant needed. */
|
|
3131
|
+
/* ------------------------------------------------------------------ */
|
|
3132
|
+
/* Header cell background.
|
|
3133
|
+
* Default: table-bg-main (opaque dark blue).
|
|
3134
|
+
* Panel: transparent — the modal/panel surface shows through. */
|
|
3135
|
+
--table-c-header-bg: var(--table-bg-main);
|
|
3136
|
+
/* Separator below the header row.
|
|
3137
|
+
* Default: transparent — the bg contrast between header and rows
|
|
3138
|
+
* provides visual separation; no explicit line needed.
|
|
3139
|
+
* Panel: table-panel-main-line — explicit separator required
|
|
3140
|
+
* because all backgrounds are transparent. */
|
|
3141
|
+
--table-c-header-line: transparent;
|
|
3142
|
+
/* Outer border when Table / DataTable uses a framed shell. */
|
|
3143
|
+
--table-c-border: transparent;
|
|
3144
|
+
/* Body row backgrounds.
|
|
3145
|
+
* Default: bg-a for all rows; striped mode uses bg-a/bg-b alternate.
|
|
3146
|
+
* Panel: transparent for both — panel surface provides the bg. */
|
|
3147
|
+
--table-c-row-bg: var(--table-bg-a);
|
|
3148
|
+
--table-c-row-bg-even: var(--table-bg-b);
|
|
3149
|
+
/* Horizontal row dividers (used when TableRow divided=true). */
|
|
3150
|
+
--table-c-row-line: var(--table-bg-line);
|
|
3151
|
+
/* Vertical column dividers (used when TableRow colDivided=true). */
|
|
3152
|
+
--table-c-col-line: var(--table-bg-line);
|
|
3153
|
+
/* Hover overlay on body rows. */
|
|
3154
|
+
--table-c-hover: var(--table-bg-hover);
|
|
3155
|
+
/* Selected row overlay (data-state="selected" on <tr>). */
|
|
3156
|
+
--table-c-selected: var(--transparent-primary-12);
|
|
3157
|
+
}
|
|
3158
|
+
|
|
3159
|
+
/* ------------------------------------------------------------------ */
|
|
3160
|
+
|
|
3161
|
+
/* Panel / Modal / Drawer surface override */
|
|
3162
|
+
|
|
3163
|
+
/* Apply data-surface="panel" to the Modal, Drawer, or Panel wrapper. */
|
|
3164
|
+
|
|
3165
|
+
/* All Table instances inside the scope inherit these tokens. */
|
|
3166
|
+
|
|
3167
|
+
/* Avoid scoping the whole Storybook/page: row bgs are transparent and */
|
|
3168
|
+
|
|
3169
|
+
/* expect --modal-surface behind the table, not --workspace/page bg. */
|
|
3170
|
+
|
|
3171
|
+
/* ------------------------------------------------------------------ */
|
|
3172
|
+
|
|
3173
|
+
[data-surface="panel"] {
|
|
3174
|
+
--table-c-header-bg: var(--modal-surface);
|
|
3175
|
+
--table-c-header-line: var(--table-panel-main-line);
|
|
3176
|
+
--table-c-border: var(--table-panel-main-line);
|
|
3177
|
+
--table-c-row-bg: var(--modal-surface);
|
|
3178
|
+
/* TODO: not have this token in Figma for now. */
|
|
3179
|
+
--table-c-row-bg-even: var(--table-panel-hover);
|
|
3180
|
+
/* TODO: not have this token in Figma for now. */
|
|
3181
|
+
--table-c-row-line: var(--table-panel-sub-line);
|
|
3182
|
+
--table-c-col-line: var(--table-panel-sub-line);
|
|
3183
|
+
--table-c-hover: var(--table-panel-hover);
|
|
3184
|
+
--table-c-selected: var(--table-panel-selected);
|
|
3118
3185
|
}
|
|
3119
3186
|
|
|
3120
3187
|
/* TODO: remove this */
|
|
@@ -3676,13 +3743,32 @@ video {
|
|
|
3676
3743
|
display: none;
|
|
3677
3744
|
}
|
|
3678
3745
|
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
|
|
3682
|
-
|
|
3746
|
+
/*
|
|
3747
|
+
* Scrollbar baseline
|
|
3748
|
+
*
|
|
3749
|
+
* Chrome 121+ conflict: when scrollbar-width is set on an element,
|
|
3750
|
+
* Chrome IGNORES -webkit-scrollbar width/height entirely.
|
|
3751
|
+
* They are mutually exclusive for sizing.
|
|
3752
|
+
*
|
|
3753
|
+
* Solution: apply scrollbar-width only in Firefox (where -webkit-scrollbar
|
|
3754
|
+
* is not supported). Chrome/Safari use -webkit-scrollbar exclusively.
|
|
3755
|
+
*/
|
|
3756
|
+
|
|
3757
|
+
/* Firefox only — standard scrollbar API */
|
|
3758
|
+
|
|
3759
|
+
@supports (-moz-appearance: none) {
|
|
3760
|
+
* {
|
|
3761
|
+
scrollbar-width: thin;
|
|
3762
|
+
scrollbar-color: var(--scrollbar-thumb-default-color) transparent;
|
|
3763
|
+
}
|
|
3683
3764
|
}
|
|
3684
3765
|
|
|
3766
|
+
/* Chrome / Safari / Edge — WebKit scrollbar API */
|
|
3767
|
+
|
|
3768
|
+
/* scrollbar-width must NOT be set on these elements or sizes are ignored */
|
|
3769
|
+
|
|
3685
3770
|
*::-webkit-scrollbar {
|
|
3771
|
+
-webkit-appearance: none;
|
|
3686
3772
|
width: var(--scrollbar-s-thickness);
|
|
3687
3773
|
height: var(--scrollbar-s-thickness);
|
|
3688
3774
|
background: transparent;
|
|
@@ -3711,12 +3797,9 @@ video {
|
|
|
3711
3797
|
|
|
3712
3798
|
body {
|
|
3713
3799
|
/* @apply bg-background text-foreground; */
|
|
3714
|
-
/* @apply bg-[var(--background)] text-[var(--foreground)]; */
|
|
3715
3800
|
}
|
|
3716
3801
|
|
|
3717
|
-
/* hide input number arrow */
|
|
3718
|
-
|
|
3719
|
-
/* Chrome, Safari, Edge, Opera */
|
|
3802
|
+
/* hide input number arrow — Chrome, Safari, Edge, Opera */
|
|
3720
3803
|
|
|
3721
3804
|
input::-webkit-outer-spin-button,
|
|
3722
3805
|
input::-webkit-inner-spin-button {
|
|
@@ -3730,6 +3813,14 @@ input[type=number] {
|
|
|
3730
3813
|
-moz-appearance: textfield;
|
|
3731
3814
|
}
|
|
3732
3815
|
|
|
3816
|
+
.\!container {
|
|
3817
|
+
width: 100% !important;
|
|
3818
|
+
margin-right: auto !important;
|
|
3819
|
+
margin-left: auto !important;
|
|
3820
|
+
padding-right: 2rem !important;
|
|
3821
|
+
padding-left: 2rem !important;
|
|
3822
|
+
}
|
|
3823
|
+
|
|
3733
3824
|
.container {
|
|
3734
3825
|
width: 100%;
|
|
3735
3826
|
margin-right: auto;
|
|
@@ -3739,6 +3830,10 @@ input[type=number] {
|
|
|
3739
3830
|
}
|
|
3740
3831
|
|
|
3741
3832
|
@media (min-width: 1400px) {
|
|
3833
|
+
.\!container {
|
|
3834
|
+
max-width: 1400px !important;
|
|
3835
|
+
}
|
|
3836
|
+
|
|
3742
3837
|
.container {
|
|
3743
3838
|
max-width: 1400px;
|
|
3744
3839
|
}
|
|
@@ -3768,6 +3863,10 @@ input[type=number] {
|
|
|
3768
3863
|
visibility: visible;
|
|
3769
3864
|
}
|
|
3770
3865
|
|
|
3866
|
+
.invisible {
|
|
3867
|
+
visibility: hidden;
|
|
3868
|
+
}
|
|
3869
|
+
|
|
3771
3870
|
.static {
|
|
3772
3871
|
position: static;
|
|
3773
3872
|
}
|
|
@@ -3853,6 +3952,10 @@ input[type=number] {
|
|
|
3853
3952
|
right: 0px;
|
|
3854
3953
|
}
|
|
3855
3954
|
|
|
3955
|
+
.right-2 {
|
|
3956
|
+
right: 0.5rem;
|
|
3957
|
+
}
|
|
3958
|
+
|
|
3856
3959
|
.right-8 {
|
|
3857
3960
|
right: 2rem;
|
|
3858
3961
|
}
|
|
@@ -3869,6 +3972,10 @@ input[type=number] {
|
|
|
3869
3972
|
top: 0.25rem;
|
|
3870
3973
|
}
|
|
3871
3974
|
|
|
3975
|
+
.top-1\/2 {
|
|
3976
|
+
top: 50%;
|
|
3977
|
+
}
|
|
3978
|
+
|
|
3872
3979
|
.top-8 {
|
|
3873
3980
|
top: 2rem;
|
|
3874
3981
|
}
|
|
@@ -3905,6 +4012,10 @@ input[type=number] {
|
|
|
3905
4012
|
z-index: 10;
|
|
3906
4013
|
}
|
|
3907
4014
|
|
|
4015
|
+
.z-40 {
|
|
4016
|
+
z-index: 40;
|
|
4017
|
+
}
|
|
4018
|
+
|
|
3908
4019
|
.z-50 {
|
|
3909
4020
|
z-index: 50;
|
|
3910
4021
|
}
|
|
@@ -3929,6 +4040,11 @@ input[type=number] {
|
|
|
3929
4040
|
margin: 0px;
|
|
3930
4041
|
}
|
|
3931
4042
|
|
|
4043
|
+
.-mx-1 {
|
|
4044
|
+
margin-left: -0.25rem;
|
|
4045
|
+
margin-right: -0.25rem;
|
|
4046
|
+
}
|
|
4047
|
+
|
|
3932
4048
|
.mx-2 {
|
|
3933
4049
|
margin-left: 0.5rem;
|
|
3934
4050
|
margin-right: 0.5rem;
|
|
@@ -4082,6 +4198,11 @@ input[type=number] {
|
|
|
4082
4198
|
aspect-ratio: 1 / 1;
|
|
4083
4199
|
}
|
|
4084
4200
|
|
|
4201
|
+
.\!size-4 {
|
|
4202
|
+
width: 1rem !important;
|
|
4203
|
+
height: 1rem !important;
|
|
4204
|
+
}
|
|
4205
|
+
|
|
4085
4206
|
.size-14 {
|
|
4086
4207
|
width: 3.5rem;
|
|
4087
4208
|
height: 3.5rem;
|
|
@@ -4185,10 +4306,18 @@ input[type=number] {
|
|
|
4185
4306
|
height: 0.75rem;
|
|
4186
4307
|
}
|
|
4187
4308
|
|
|
4309
|
+
.h-32 {
|
|
4310
|
+
height: 8rem;
|
|
4311
|
+
}
|
|
4312
|
+
|
|
4188
4313
|
.h-4 {
|
|
4189
4314
|
height: 1rem;
|
|
4190
4315
|
}
|
|
4191
4316
|
|
|
4317
|
+
.h-4\/5 {
|
|
4318
|
+
height: 80%;
|
|
4319
|
+
}
|
|
4320
|
+
|
|
4192
4321
|
.h-5 {
|
|
4193
4322
|
height: 1.25rem;
|
|
4194
4323
|
}
|
|
@@ -4201,6 +4330,10 @@ input[type=number] {
|
|
|
4201
4330
|
height: 15rem;
|
|
4202
4331
|
}
|
|
4203
4332
|
|
|
4333
|
+
.h-\[180px\] {
|
|
4334
|
+
height: 180px;
|
|
4335
|
+
}
|
|
4336
|
+
|
|
4204
4337
|
.h-\[200px\] {
|
|
4205
4338
|
height: 200px;
|
|
4206
4339
|
}
|
|
@@ -4209,14 +4342,26 @@ input[type=number] {
|
|
|
4209
4342
|
height: 200vh;
|
|
4210
4343
|
}
|
|
4211
4344
|
|
|
4345
|
+
.h-\[220px\] {
|
|
4346
|
+
height: 220px;
|
|
4347
|
+
}
|
|
4348
|
+
|
|
4212
4349
|
.h-\[24px\] {
|
|
4213
4350
|
height: 24px;
|
|
4214
4351
|
}
|
|
4215
4352
|
|
|
4353
|
+
.h-\[280px\] {
|
|
4354
|
+
height: 280px;
|
|
4355
|
+
}
|
|
4356
|
+
|
|
4216
4357
|
.h-\[2px\] {
|
|
4217
4358
|
height: 2px;
|
|
4218
4359
|
}
|
|
4219
4360
|
|
|
4361
|
+
.h-\[320px\] {
|
|
4362
|
+
height: 320px;
|
|
4363
|
+
}
|
|
4364
|
+
|
|
4220
4365
|
.h-\[32px\] {
|
|
4221
4366
|
height: 32px;
|
|
4222
4367
|
}
|
|
@@ -4229,6 +4374,14 @@ input[type=number] {
|
|
|
4229
4374
|
height: 40px;
|
|
4230
4375
|
}
|
|
4231
4376
|
|
|
4377
|
+
.h-\[42px\] {
|
|
4378
|
+
height: 42px;
|
|
4379
|
+
}
|
|
4380
|
+
|
|
4381
|
+
.h-\[44px\] {
|
|
4382
|
+
height: 44px;
|
|
4383
|
+
}
|
|
4384
|
+
|
|
4232
4385
|
.h-\[48px\] {
|
|
4233
4386
|
height: 48px;
|
|
4234
4387
|
}
|
|
@@ -4241,6 +4394,22 @@ input[type=number] {
|
|
|
4241
4394
|
height: 64px;
|
|
4242
4395
|
}
|
|
4243
4396
|
|
|
4397
|
+
.h-\[min\(380px\2c 50vh\)\] {
|
|
4398
|
+
height: min(380px,50vh);
|
|
4399
|
+
}
|
|
4400
|
+
|
|
4401
|
+
.h-\[min\(420px\2c 55vh\)\] {
|
|
4402
|
+
height: min(420px,55vh);
|
|
4403
|
+
}
|
|
4404
|
+
|
|
4405
|
+
.h-\[min\(480px\2c 70vh\)\] {
|
|
4406
|
+
height: min(480px,70vh);
|
|
4407
|
+
}
|
|
4408
|
+
|
|
4409
|
+
.h-\[min\(520px\2c 70vh\)\] {
|
|
4410
|
+
height: min(520px,70vh);
|
|
4411
|
+
}
|
|
4412
|
+
|
|
4244
4413
|
.h-\[var\(--footer-height\)\] {
|
|
4245
4414
|
height: var(--footer-height);
|
|
4246
4415
|
}
|
|
@@ -4253,6 +4422,10 @@ input[type=number] {
|
|
|
4253
4422
|
height: var(--navbar-height);
|
|
4254
4423
|
}
|
|
4255
4424
|
|
|
4425
|
+
.h-auto {
|
|
4426
|
+
height: auto;
|
|
4427
|
+
}
|
|
4428
|
+
|
|
4256
4429
|
.h-fit {
|
|
4257
4430
|
height: -moz-fit-content;
|
|
4258
4431
|
height: fit-content;
|
|
@@ -4270,6 +4443,10 @@ input[type=number] {
|
|
|
4270
4443
|
height: 100vh;
|
|
4271
4444
|
}
|
|
4272
4445
|
|
|
4446
|
+
.\!max-h-60 {
|
|
4447
|
+
max-height: 15rem !important;
|
|
4448
|
+
}
|
|
4449
|
+
|
|
4273
4450
|
.max-h-60 {
|
|
4274
4451
|
max-height: 15rem;
|
|
4275
4452
|
}
|
|
@@ -4294,6 +4471,10 @@ input[type=number] {
|
|
|
4294
4471
|
max-height: 80vh;
|
|
4295
4472
|
}
|
|
4296
4473
|
|
|
4474
|
+
.max-h-\[min\(520px\2c 70vh\)\] {
|
|
4475
|
+
max-height: min(520px,70vh);
|
|
4476
|
+
}
|
|
4477
|
+
|
|
4297
4478
|
.max-h-screen {
|
|
4298
4479
|
max-height: 100vh;
|
|
4299
4480
|
}
|
|
@@ -4314,10 +4495,26 @@ input[type=number] {
|
|
|
4314
4495
|
min-height: 18px;
|
|
4315
4496
|
}
|
|
4316
4497
|
|
|
4498
|
+
.min-h-\[200px\] {
|
|
4499
|
+
min-height: 200px;
|
|
4500
|
+
}
|
|
4501
|
+
|
|
4502
|
+
.min-h-\[32px\] {
|
|
4503
|
+
min-height: 32px;
|
|
4504
|
+
}
|
|
4505
|
+
|
|
4317
4506
|
.min-h-screen {
|
|
4318
4507
|
min-height: 100vh;
|
|
4319
4508
|
}
|
|
4320
4509
|
|
|
4510
|
+
.w-0\.5 {
|
|
4511
|
+
width: 0.125rem;
|
|
4512
|
+
}
|
|
4513
|
+
|
|
4514
|
+
.w-1\.5 {
|
|
4515
|
+
width: 0.375rem;
|
|
4516
|
+
}
|
|
4517
|
+
|
|
4321
4518
|
.w-1\/2 {
|
|
4322
4519
|
width: 50%;
|
|
4323
4520
|
}
|
|
@@ -4366,8 +4563,8 @@ input[type=number] {
|
|
|
4366
4563
|
width: 20rem;
|
|
4367
4564
|
}
|
|
4368
4565
|
|
|
4369
|
-
.w-\[
|
|
4370
|
-
width:
|
|
4566
|
+
.w-\[120px\] {
|
|
4567
|
+
width: 120px;
|
|
4371
4568
|
}
|
|
4372
4569
|
|
|
4373
4570
|
.w-\[140px\] {
|
|
@@ -4410,10 +4607,18 @@ input[type=number] {
|
|
|
4410
4607
|
width: 420px;
|
|
4411
4608
|
}
|
|
4412
4609
|
|
|
4610
|
+
.w-\[460px\] {
|
|
4611
|
+
width: 460px;
|
|
4612
|
+
}
|
|
4613
|
+
|
|
4413
4614
|
.w-\[46px\] {
|
|
4414
4615
|
width: 46px;
|
|
4415
4616
|
}
|
|
4416
4617
|
|
|
4618
|
+
.w-\[480px\] {
|
|
4619
|
+
width: 480px;
|
|
4620
|
+
}
|
|
4621
|
+
|
|
4417
4622
|
.w-\[48px\] {
|
|
4418
4623
|
width: 48px;
|
|
4419
4624
|
}
|
|
@@ -4426,14 +4631,26 @@ input[type=number] {
|
|
|
4426
4631
|
width: 520px;
|
|
4427
4632
|
}
|
|
4428
4633
|
|
|
4634
|
+
.w-\[5px\] {
|
|
4635
|
+
width: 5px;
|
|
4636
|
+
}
|
|
4637
|
+
|
|
4429
4638
|
.w-\[64px\] {
|
|
4430
4639
|
width: 64px;
|
|
4431
4640
|
}
|
|
4432
4641
|
|
|
4642
|
+
.w-\[72px\] {
|
|
4643
|
+
width: 72px;
|
|
4644
|
+
}
|
|
4645
|
+
|
|
4433
4646
|
.w-\[calc\(100\%-32px\)\] {
|
|
4434
4647
|
width: calc(100% - 32px);
|
|
4435
4648
|
}
|
|
4436
4649
|
|
|
4650
|
+
.w-\[var\(--input-width\)\] {
|
|
4651
|
+
width: var(--input-width);
|
|
4652
|
+
}
|
|
4653
|
+
|
|
4437
4654
|
.w-auto {
|
|
4438
4655
|
width: auto;
|
|
4439
4656
|
}
|
|
@@ -4447,6 +4664,14 @@ input[type=number] {
|
|
|
4447
4664
|
width: 100%;
|
|
4448
4665
|
}
|
|
4449
4666
|
|
|
4667
|
+
.w-px {
|
|
4668
|
+
width: 1px;
|
|
4669
|
+
}
|
|
4670
|
+
|
|
4671
|
+
.min-w-0 {
|
|
4672
|
+
min-width: 0px;
|
|
4673
|
+
}
|
|
4674
|
+
|
|
4450
4675
|
.min-w-72 {
|
|
4451
4676
|
min-width: 18rem;
|
|
4452
4677
|
}
|
|
@@ -4459,11 +4684,27 @@ input[type=number] {
|
|
|
4459
4684
|
min-width: 154px;
|
|
4460
4685
|
}
|
|
4461
4686
|
|
|
4687
|
+
.min-w-\[220px\] {
|
|
4688
|
+
min-width: 220px;
|
|
4689
|
+
}
|
|
4690
|
+
|
|
4691
|
+
.min-w-\[240px\] {
|
|
4692
|
+
min-width: 240px;
|
|
4693
|
+
}
|
|
4694
|
+
|
|
4695
|
+
.min-w-\[800px\] {
|
|
4696
|
+
min-width: 800px;
|
|
4697
|
+
}
|
|
4698
|
+
|
|
4462
4699
|
.min-w-fit {
|
|
4463
4700
|
min-width: -moz-fit-content;
|
|
4464
4701
|
min-width: fit-content;
|
|
4465
4702
|
}
|
|
4466
4703
|
|
|
4704
|
+
.min-w-full {
|
|
4705
|
+
min-width: 100%;
|
|
4706
|
+
}
|
|
4707
|
+
|
|
4467
4708
|
.max-w-2xl {
|
|
4468
4709
|
max-width: 42rem;
|
|
4469
4710
|
}
|
|
@@ -4476,6 +4717,10 @@ input[type=number] {
|
|
|
4476
4717
|
max-width: 56rem;
|
|
4477
4718
|
}
|
|
4478
4719
|
|
|
4720
|
+
.max-w-7xl {
|
|
4721
|
+
max-width: 80rem;
|
|
4722
|
+
}
|
|
4723
|
+
|
|
4479
4724
|
.max-w-\[300px\] {
|
|
4480
4725
|
max-width: 300px;
|
|
4481
4726
|
}
|
|
@@ -4516,12 +4761,22 @@ input[type=number] {
|
|
|
4516
4761
|
flex-grow: 1;
|
|
4517
4762
|
}
|
|
4518
4763
|
|
|
4764
|
+
.table-fixed {
|
|
4765
|
+
table-layout: fixed;
|
|
4766
|
+
}
|
|
4767
|
+
|
|
4519
4768
|
.caption-bottom {
|
|
4520
4769
|
caption-side: bottom;
|
|
4521
4770
|
}
|
|
4522
4771
|
|
|
4523
|
-
.border-
|
|
4524
|
-
border-collapse:
|
|
4772
|
+
.border-separate {
|
|
4773
|
+
border-collapse: separate;
|
|
4774
|
+
}
|
|
4775
|
+
|
|
4776
|
+
.border-spacing-0 {
|
|
4777
|
+
--tw-border-spacing-x: 0px;
|
|
4778
|
+
--tw-border-spacing-y: 0px;
|
|
4779
|
+
border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
|
|
4525
4780
|
}
|
|
4526
4781
|
|
|
4527
4782
|
.-translate-x-1\/2 {
|
|
@@ -4549,6 +4804,12 @@ input[type=number] {
|
|
|
4549
4804
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
4550
4805
|
}
|
|
4551
4806
|
|
|
4807
|
+
.scale-\[1\.01\] {
|
|
4808
|
+
--tw-scale-x: 1.01;
|
|
4809
|
+
--tw-scale-y: 1.01;
|
|
4810
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
4811
|
+
}
|
|
4812
|
+
|
|
4552
4813
|
.transform {
|
|
4553
4814
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
4554
4815
|
}
|
|
@@ -4563,6 +4824,10 @@ input[type=number] {
|
|
|
4563
4824
|
animation: spin 1s linear infinite;
|
|
4564
4825
|
}
|
|
4565
4826
|
|
|
4827
|
+
.cursor-col-resize {
|
|
4828
|
+
cursor: col-resize;
|
|
4829
|
+
}
|
|
4830
|
+
|
|
4566
4831
|
.cursor-default {
|
|
4567
4832
|
cursor: default;
|
|
4568
4833
|
}
|
|
@@ -4571,6 +4836,10 @@ input[type=number] {
|
|
|
4571
4836
|
cursor: grab;
|
|
4572
4837
|
}
|
|
4573
4838
|
|
|
4839
|
+
.cursor-grabbing {
|
|
4840
|
+
cursor: grabbing;
|
|
4841
|
+
}
|
|
4842
|
+
|
|
4574
4843
|
.cursor-not-allowed {
|
|
4575
4844
|
cursor: not-allowed;
|
|
4576
4845
|
}
|
|
@@ -4597,6 +4866,12 @@ input[type=number] {
|
|
|
4597
4866
|
resize: both;
|
|
4598
4867
|
}
|
|
4599
4868
|
|
|
4869
|
+
.appearance-none {
|
|
4870
|
+
-webkit-appearance: none;
|
|
4871
|
+
-moz-appearance: none;
|
|
4872
|
+
appearance: none;
|
|
4873
|
+
}
|
|
4874
|
+
|
|
4600
4875
|
.grid-cols-1 {
|
|
4601
4876
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
4602
4877
|
}
|
|
@@ -4681,6 +4956,10 @@ input[type=number] {
|
|
|
4681
4956
|
align-items: flex-start;
|
|
4682
4957
|
}
|
|
4683
4958
|
|
|
4959
|
+
.items-end {
|
|
4960
|
+
align-items: flex-end;
|
|
4961
|
+
}
|
|
4962
|
+
|
|
4684
4963
|
.items-center {
|
|
4685
4964
|
align-items: center;
|
|
4686
4965
|
}
|
|
@@ -4801,12 +5080,12 @@ input[type=number] {
|
|
|
4801
5080
|
margin-bottom: calc(2rem * var(--tw-space-y-reverse));
|
|
4802
5081
|
}
|
|
4803
5082
|
|
|
4804
|
-
.self-
|
|
4805
|
-
align-self:
|
|
5083
|
+
.self-start {
|
|
5084
|
+
align-self: flex-start;
|
|
4806
5085
|
}
|
|
4807
5086
|
|
|
4808
|
-
.self-
|
|
4809
|
-
align-self:
|
|
5087
|
+
.self-center {
|
|
5088
|
+
align-self: center;
|
|
4810
5089
|
}
|
|
4811
5090
|
|
|
4812
5091
|
.justify-self-center {
|
|
@@ -4841,10 +5120,6 @@ input[type=number] {
|
|
|
4841
5120
|
overflow-y: hidden;
|
|
4842
5121
|
}
|
|
4843
5122
|
|
|
4844
|
-
.overflow-y-scroll {
|
|
4845
|
-
overflow-y: scroll;
|
|
4846
|
-
}
|
|
4847
|
-
|
|
4848
5123
|
.truncate {
|
|
4849
5124
|
overflow: hidden;
|
|
4850
5125
|
text-overflow: ellipsis;
|
|
@@ -5031,6 +5306,10 @@ input[type=number] {
|
|
|
5031
5306
|
border-width: 3px;
|
|
5032
5307
|
}
|
|
5033
5308
|
|
|
5309
|
+
.\!border-r-0 {
|
|
5310
|
+
border-right-width: 0px !important;
|
|
5311
|
+
}
|
|
5312
|
+
|
|
5034
5313
|
.border-b {
|
|
5035
5314
|
border-bottom-width: 1px;
|
|
5036
5315
|
}
|
|
@@ -5318,6 +5597,11 @@ input[type=number] {
|
|
|
5318
5597
|
border-color: color-mix(in srgb, var(--input-error) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5319
5598
|
}
|
|
5320
5599
|
|
|
5600
|
+
.border-modal-line {
|
|
5601
|
+
--tw-border-opacity: 1;
|
|
5602
|
+
border-color: color-mix(in srgb, var(--modal-line) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5603
|
+
}
|
|
5604
|
+
|
|
5321
5605
|
.border-modal-surface {
|
|
5322
5606
|
--tw-border-opacity: 1;
|
|
5323
5607
|
border-color: color-mix(in srgb, var(--modal-surface) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
@@ -5328,11 +5612,6 @@ input[type=number] {
|
|
|
5328
5612
|
border-color: color-mix(in srgb, var(--state-primary-default) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5329
5613
|
}
|
|
5330
5614
|
|
|
5331
|
-
.border-primary-10 {
|
|
5332
|
-
--tw-border-opacity: 1;
|
|
5333
|
-
border-color: color-mix(in srgb, var(--ramps-primary-10) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5334
|
-
}
|
|
5335
|
-
|
|
5336
5615
|
.border-red-500 {
|
|
5337
5616
|
--tw-border-opacity: 1;
|
|
5338
5617
|
border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
|
|
@@ -5348,11 +5627,31 @@ input[type=number] {
|
|
|
5348
5627
|
border-color: color-mix(in srgb, var(--state-disable-outline) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5349
5628
|
}
|
|
5350
5629
|
|
|
5630
|
+
.border-state-primary-stroke {
|
|
5631
|
+
--tw-border-opacity: 1;
|
|
5632
|
+
border-color: color-mix(in srgb, var(--state-primary-stroke) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5633
|
+
}
|
|
5634
|
+
|
|
5351
5635
|
.border-success-stroke {
|
|
5352
5636
|
--tw-border-opacity: 1;
|
|
5353
5637
|
border-color: color-mix(in srgb, var(--state-success-stroke) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5354
5638
|
}
|
|
5355
5639
|
|
|
5640
|
+
.border-table-bg-line {
|
|
5641
|
+
--tw-border-opacity: 1;
|
|
5642
|
+
border-color: color-mix(in srgb, var(--table-bg-line) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5643
|
+
}
|
|
5644
|
+
|
|
5645
|
+
.border-table-c-border {
|
|
5646
|
+
--tw-border-opacity: 1;
|
|
5647
|
+
border-color: color-mix(in srgb, var(--table-c-border) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5648
|
+
}
|
|
5649
|
+
|
|
5650
|
+
.border-table-c-col-line {
|
|
5651
|
+
--tw-border-opacity: 1;
|
|
5652
|
+
border-color: color-mix(in srgb, var(--table-c-col-line) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5653
|
+
}
|
|
5654
|
+
|
|
5356
5655
|
.border-transparent {
|
|
5357
5656
|
border-color: transparent;
|
|
5358
5657
|
}
|
|
@@ -5367,6 +5666,10 @@ input[type=number] {
|
|
|
5367
5666
|
border-color: color-mix(in srgb, var(--state-warning-stroke) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5368
5667
|
}
|
|
5369
5668
|
|
|
5669
|
+
.border-white\/20 {
|
|
5670
|
+
border-color: rgb(255 255 255 / 0.2);
|
|
5671
|
+
}
|
|
5672
|
+
|
|
5370
5673
|
.border-b-\[rgb\(var\(--navbar-border-color\)\)\] {
|
|
5371
5674
|
border-bottom-color: rgb(var(--navbar-border-color));
|
|
5372
5675
|
}
|
|
@@ -5415,6 +5718,16 @@ input[type=number] {
|
|
|
5415
5718
|
border-top-color: color-mix(in srgb, var(--state-secondary-default) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5416
5719
|
}
|
|
5417
5720
|
|
|
5721
|
+
.border-t-table-c-header-line {
|
|
5722
|
+
--tw-border-opacity: 1;
|
|
5723
|
+
border-top-color: color-mix(in srgb, var(--table-c-header-line) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5724
|
+
}
|
|
5725
|
+
|
|
5726
|
+
.border-t-table-c-row-line {
|
|
5727
|
+
--tw-border-opacity: 1;
|
|
5728
|
+
border-top-color: color-mix(in srgb, var(--table-c-row-line) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5729
|
+
}
|
|
5730
|
+
|
|
5418
5731
|
.\!bg-\[var\(--dropdown-menu-hover-bg\)\] {
|
|
5419
5732
|
background-color: var(--dropdown-menu-hover-bg) !important;
|
|
5420
5733
|
}
|
|
@@ -5449,6 +5762,18 @@ input[type=number] {
|
|
|
5449
5762
|
background-color: color-mix(in srgb, var(--action-button-solid-hover-bg) calc(100% * var(--tw-bg-opacity, 1)), transparent) !important;
|
|
5450
5763
|
}
|
|
5451
5764
|
|
|
5765
|
+
.\!bg-info-500\/10 {
|
|
5766
|
+
background-color: color-mix(in srgb, var(--ramps-info-500) calc(100% * 0.1), transparent) !important;
|
|
5767
|
+
}
|
|
5768
|
+
|
|
5769
|
+
.\!bg-success-500\/10 {
|
|
5770
|
+
background-color: color-mix(in srgb, var(--ramps-success-500) calc(100% * 0.1), transparent) !important;
|
|
5771
|
+
}
|
|
5772
|
+
|
|
5773
|
+
.\!bg-white\/5 {
|
|
5774
|
+
background-color: rgb(255 255 255 / 0.05) !important;
|
|
5775
|
+
}
|
|
5776
|
+
|
|
5452
5777
|
.bg-\[rgb\(var\(--base-bg-2\)\)\] {
|
|
5453
5778
|
background-color: rgb(var(--base-bg-2));
|
|
5454
5779
|
}
|
|
@@ -5824,6 +6149,10 @@ input[type=number] {
|
|
|
5824
6149
|
background-color: color-mix(in srgb, var(--ramps-error-500) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
5825
6150
|
}
|
|
5826
6151
|
|
|
6152
|
+
.bg-error-500\/20 {
|
|
6153
|
+
background-color: color-mix(in srgb, var(--ramps-error-500) calc(100% * 0.2), transparent);
|
|
6154
|
+
}
|
|
6155
|
+
|
|
5827
6156
|
.bg-error-600 {
|
|
5828
6157
|
--tw-bg-opacity: 1;
|
|
5829
6158
|
background-color: color-mix(in srgb, var(--ramps-error-600) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
@@ -6183,6 +6512,10 @@ input[type=number] {
|
|
|
6183
6512
|
background-color: color-mix(in srgb, var(--ramps-info-500) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
6184
6513
|
}
|
|
6185
6514
|
|
|
6515
|
+
.bg-info-500\/20 {
|
|
6516
|
+
background-color: color-mix(in srgb, var(--ramps-info-500) calc(100% * 0.2), transparent);
|
|
6517
|
+
}
|
|
6518
|
+
|
|
6186
6519
|
.bg-info-600 {
|
|
6187
6520
|
--tw-bg-opacity: 1;
|
|
6188
6521
|
background-color: color-mix(in srgb, var(--ramps-info-600) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
@@ -6307,6 +6640,20 @@ input[type=number] {
|
|
|
6307
6640
|
background-color: color-mix(in srgb, var(--modal-surface) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
6308
6641
|
}
|
|
6309
6642
|
|
|
6643
|
+
.bg-orange-500 {
|
|
6644
|
+
--tw-bg-opacity: 1;
|
|
6645
|
+
background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
|
|
6646
|
+
}
|
|
6647
|
+
|
|
6648
|
+
.bg-orange-500\/20 {
|
|
6649
|
+
background-color: rgb(249 115 22 / 0.2);
|
|
6650
|
+
}
|
|
6651
|
+
|
|
6652
|
+
.bg-page-bg-main {
|
|
6653
|
+
--tw-bg-opacity: 1;
|
|
6654
|
+
background-color: color-mix(in srgb, var(--page-bg-main) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
6655
|
+
}
|
|
6656
|
+
|
|
6310
6657
|
.bg-pink-100 {
|
|
6311
6658
|
--tw-bg-opacity: 1;
|
|
6312
6659
|
background-color: rgb(252 231 243 / var(--tw-bg-opacity, 1));
|
|
@@ -6656,6 +7003,11 @@ input[type=number] {
|
|
|
6656
7003
|
background-color: color-mix(in srgb, var(--state-disable-solid) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
6657
7004
|
}
|
|
6658
7005
|
|
|
7006
|
+
.bg-state-primary-default {
|
|
7007
|
+
--tw-bg-opacity: 1;
|
|
7008
|
+
background-color: color-mix(in srgb, var(--state-primary-default) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
7009
|
+
}
|
|
7010
|
+
|
|
6659
7011
|
.bg-success {
|
|
6660
7012
|
--tw-bg-opacity: 1;
|
|
6661
7013
|
background-color: color-mix(in srgb, var(--state-success-default) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
@@ -6691,6 +7043,10 @@ input[type=number] {
|
|
|
6691
7043
|
background-color: color-mix(in srgb, var(--ramps-success-500) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
6692
7044
|
}
|
|
6693
7045
|
|
|
7046
|
+
.bg-success-500\/20 {
|
|
7047
|
+
background-color: color-mix(in srgb, var(--ramps-success-500) calc(100% * 0.2), transparent);
|
|
7048
|
+
}
|
|
7049
|
+
|
|
6694
7050
|
.bg-success-600 {
|
|
6695
7051
|
--tw-bg-opacity: 1;
|
|
6696
7052
|
background-color: color-mix(in srgb, var(--ramps-success-600) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
@@ -6751,6 +7107,26 @@ input[type=number] {
|
|
|
6751
7107
|
background-color: color-mix(in srgb, var(--surface) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
6752
7108
|
}
|
|
6753
7109
|
|
|
7110
|
+
.bg-table-bg-a {
|
|
7111
|
+
--tw-bg-opacity: 1;
|
|
7112
|
+
background-color: color-mix(in srgb, var(--table-bg-a) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
7113
|
+
}
|
|
7114
|
+
|
|
7115
|
+
.bg-table-bg-main {
|
|
7116
|
+
--tw-bg-opacity: 1;
|
|
7117
|
+
background-color: color-mix(in srgb, var(--table-bg-main) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
7118
|
+
}
|
|
7119
|
+
|
|
7120
|
+
.bg-table-c-col-line {
|
|
7121
|
+
--tw-bg-opacity: 1;
|
|
7122
|
+
background-color: color-mix(in srgb, var(--table-c-col-line) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
7123
|
+
}
|
|
7124
|
+
|
|
7125
|
+
.bg-table-c-header-bg {
|
|
7126
|
+
--tw-bg-opacity: 1;
|
|
7127
|
+
background-color: color-mix(in srgb, var(--table-c-header-bg) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
7128
|
+
}
|
|
7129
|
+
|
|
6754
7130
|
.bg-tertiary {
|
|
6755
7131
|
--tw-bg-opacity: 1;
|
|
6756
7132
|
background-color: color-mix(in srgb, var(--state-tertiary-default) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
@@ -7000,6 +7376,10 @@ input[type=number] {
|
|
|
7000
7376
|
background-color: color-mix(in srgb, var(--ramps-warning-500) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
7001
7377
|
}
|
|
7002
7378
|
|
|
7379
|
+
.bg-warning-500\/20 {
|
|
7380
|
+
background-color: color-mix(in srgb, var(--ramps-warning-500) calc(100% * 0.2), transparent);
|
|
7381
|
+
}
|
|
7382
|
+
|
|
7003
7383
|
.bg-warning-600 {
|
|
7004
7384
|
--tw-bg-opacity: 1;
|
|
7005
7385
|
background-color: color-mix(in srgb, var(--ramps-warning-600) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
@@ -7055,6 +7435,11 @@ input[type=number] {
|
|
|
7055
7435
|
background-color: color-mix(in srgb, var(--transparent-warning-8) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
7056
7436
|
}
|
|
7057
7437
|
|
|
7438
|
+
.bg-white {
|
|
7439
|
+
--tw-bg-opacity: 1;
|
|
7440
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
|
|
7441
|
+
}
|
|
7442
|
+
|
|
7058
7443
|
.bg-white-transparent-12 {
|
|
7059
7444
|
--tw-bg-opacity: 1;
|
|
7060
7445
|
background-color: color-mix(in srgb, var(--transparent-white-12) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
@@ -7325,6 +7710,16 @@ input[type=number] {
|
|
|
7325
7710
|
stroke: color-mix(in srgb, var(--state-primary-default) calc(100% * 1), transparent);
|
|
7326
7711
|
}
|
|
7327
7712
|
|
|
7713
|
+
.object-cover {
|
|
7714
|
+
-o-object-fit: cover;
|
|
7715
|
+
object-fit: cover;
|
|
7716
|
+
}
|
|
7717
|
+
|
|
7718
|
+
.object-top {
|
|
7719
|
+
-o-object-position: top;
|
|
7720
|
+
object-position: top;
|
|
7721
|
+
}
|
|
7722
|
+
|
|
7328
7723
|
.\!p-0 {
|
|
7329
7724
|
padding: 0px !important;
|
|
7330
7725
|
}
|
|
@@ -7369,11 +7764,21 @@ input[type=number] {
|
|
|
7369
7764
|
padding: 2rem;
|
|
7370
7765
|
}
|
|
7371
7766
|
|
|
7767
|
+
.\!py-2 {
|
|
7768
|
+
padding-top: 0.5rem !important;
|
|
7769
|
+
padding-bottom: 0.5rem !important;
|
|
7770
|
+
}
|
|
7771
|
+
|
|
7372
7772
|
.px-1 {
|
|
7373
7773
|
padding-left: 0.25rem;
|
|
7374
7774
|
padding-right: 0.25rem;
|
|
7375
7775
|
}
|
|
7376
7776
|
|
|
7777
|
+
.px-2 {
|
|
7778
|
+
padding-left: 0.5rem;
|
|
7779
|
+
padding-right: 0.5rem;
|
|
7780
|
+
}
|
|
7781
|
+
|
|
7377
7782
|
.px-3 {
|
|
7378
7783
|
padding-left: 0.75rem;
|
|
7379
7784
|
padding-right: 0.75rem;
|
|
@@ -7454,6 +7859,11 @@ input[type=number] {
|
|
|
7454
7859
|
padding-bottom: 3.5rem;
|
|
7455
7860
|
}
|
|
7456
7861
|
|
|
7862
|
+
.py-16 {
|
|
7863
|
+
padding-top: 4rem;
|
|
7864
|
+
padding-bottom: 4rem;
|
|
7865
|
+
}
|
|
7866
|
+
|
|
7457
7867
|
.py-2 {
|
|
7458
7868
|
padding-top: 0.5rem;
|
|
7459
7869
|
padding-bottom: 0.5rem;
|
|
@@ -7549,6 +7959,10 @@ input[type=number] {
|
|
|
7549
7959
|
padding-bottom: 0.5rem;
|
|
7550
7960
|
}
|
|
7551
7961
|
|
|
7962
|
+
.pb-3 {
|
|
7963
|
+
padding-bottom: 0.75rem;
|
|
7964
|
+
}
|
|
7965
|
+
|
|
7552
7966
|
.pe-\[30px\] {
|
|
7553
7967
|
padding-inline-end: 30px;
|
|
7554
7968
|
}
|
|
@@ -7565,6 +7979,10 @@ input[type=number] {
|
|
|
7565
7979
|
padding-left: 1rem;
|
|
7566
7980
|
}
|
|
7567
7981
|
|
|
7982
|
+
.pl-6 {
|
|
7983
|
+
padding-left: 1.5rem;
|
|
7984
|
+
}
|
|
7985
|
+
|
|
7568
7986
|
.pl-8 {
|
|
7569
7987
|
padding-left: 2rem;
|
|
7570
7988
|
}
|
|
@@ -7573,6 +7991,10 @@ input[type=number] {
|
|
|
7573
7991
|
padding-right: 1rem;
|
|
7574
7992
|
}
|
|
7575
7993
|
|
|
7994
|
+
.pr-7 {
|
|
7995
|
+
padding-right: 1.75rem;
|
|
7996
|
+
}
|
|
7997
|
+
|
|
7576
7998
|
.pr-8 {
|
|
7577
7999
|
padding-right: 2rem;
|
|
7578
8000
|
}
|
|
@@ -7836,6 +8258,10 @@ input[type=number] {
|
|
|
7836
8258
|
text-transform: capitalize;
|
|
7837
8259
|
}
|
|
7838
8260
|
|
|
8261
|
+
.italic {
|
|
8262
|
+
font-style: italic;
|
|
8263
|
+
}
|
|
8264
|
+
|
|
7839
8265
|
.tabular-nums {
|
|
7840
8266
|
--tw-numeric-spacing: tabular-nums;
|
|
7841
8267
|
font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
|
|
@@ -8144,6 +8570,16 @@ input[type=number] {
|
|
|
8144
8570
|
color: color-mix(in srgb, var(--state-error-default) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8145
8571
|
}
|
|
8146
8572
|
|
|
8573
|
+
.text-error-400 {
|
|
8574
|
+
--tw-text-opacity: 1;
|
|
8575
|
+
color: color-mix(in srgb, var(--ramps-error-400) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8576
|
+
}
|
|
8577
|
+
|
|
8578
|
+
.text-error-500 {
|
|
8579
|
+
--tw-text-opacity: 1;
|
|
8580
|
+
color: color-mix(in srgb, var(--ramps-error-500) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8581
|
+
}
|
|
8582
|
+
|
|
8147
8583
|
.text-function-active-icon {
|
|
8148
8584
|
--tw-text-opacity: 1;
|
|
8149
8585
|
color: color-mix(in srgb, var(--function-active-icon) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
@@ -8189,6 +8625,11 @@ input[type=number] {
|
|
|
8189
8625
|
color: color-mix(in srgb, var(--state-info-default) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8190
8626
|
}
|
|
8191
8627
|
|
|
8628
|
+
.text-info-400 {
|
|
8629
|
+
--tw-text-opacity: 1;
|
|
8630
|
+
color: color-mix(in srgb, var(--ramps-info-400) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8631
|
+
}
|
|
8632
|
+
|
|
8192
8633
|
.text-inherit {
|
|
8193
8634
|
color: inherit;
|
|
8194
8635
|
}
|
|
@@ -8213,6 +8654,11 @@ input[type=number] {
|
|
|
8213
8654
|
color: color-mix(in srgb, var(--input-filled-text) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8214
8655
|
}
|
|
8215
8656
|
|
|
8657
|
+
.text-orange-400 {
|
|
8658
|
+
--tw-text-opacity: 1;
|
|
8659
|
+
color: rgb(251 146 60 / var(--tw-text-opacity, 1));
|
|
8660
|
+
}
|
|
8661
|
+
|
|
8216
8662
|
.text-pink-200 {
|
|
8217
8663
|
--tw-text-opacity: 1;
|
|
8218
8664
|
color: rgb(251 207 232 / var(--tw-text-opacity, 1));
|
|
@@ -8253,11 +8699,21 @@ input[type=number] {
|
|
|
8253
8699
|
color: color-mix(in srgb, var(--state-error-default) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8254
8700
|
}
|
|
8255
8701
|
|
|
8702
|
+
.text-state-primary-text-outline {
|
|
8703
|
+
--tw-text-opacity: 1;
|
|
8704
|
+
color: color-mix(in srgb, var(--state-primary-text-outline) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8705
|
+
}
|
|
8706
|
+
|
|
8256
8707
|
.text-state-primary-text-solid {
|
|
8257
8708
|
--tw-text-opacity: 1;
|
|
8258
8709
|
color: color-mix(in srgb, var(--state-primary-text-solid) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8259
8710
|
}
|
|
8260
8711
|
|
|
8712
|
+
.text-state-secondary-text-outline {
|
|
8713
|
+
--tw-text-opacity: 1;
|
|
8714
|
+
color: color-mix(in srgb, var(--state-secondary-text-outline) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8715
|
+
}
|
|
8716
|
+
|
|
8261
8717
|
.text-state-secondary-text-solid {
|
|
8262
8718
|
--tw-text-opacity: 1;
|
|
8263
8719
|
color: color-mix(in srgb, var(--state-secondary-text-solid) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
@@ -8273,6 +8729,11 @@ input[type=number] {
|
|
|
8273
8729
|
color: color-mix(in srgb, var(--state-success-default) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8274
8730
|
}
|
|
8275
8731
|
|
|
8732
|
+
.text-success-400 {
|
|
8733
|
+
--tw-text-opacity: 1;
|
|
8734
|
+
color: color-mix(in srgb, var(--ramps-success-400) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8735
|
+
}
|
|
8736
|
+
|
|
8276
8737
|
.text-tertiary {
|
|
8277
8738
|
--tw-text-opacity: 1;
|
|
8278
8739
|
color: color-mix(in srgb, var(--state-tertiary-default) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
@@ -8283,6 +8744,11 @@ input[type=number] {
|
|
|
8283
8744
|
color: color-mix(in srgb, var(--text-black) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8284
8745
|
}
|
|
8285
8746
|
|
|
8747
|
+
.text-text-contrast-high {
|
|
8748
|
+
--tw-text-opacity: 1;
|
|
8749
|
+
color: color-mix(in srgb, var(--text-contrast-high) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8750
|
+
}
|
|
8751
|
+
|
|
8286
8752
|
.text-text-contrast-low {
|
|
8287
8753
|
--tw-text-opacity: 1;
|
|
8288
8754
|
color: color-mix(in srgb, var(--text-contrast-low) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
@@ -8318,6 +8784,11 @@ input[type=number] {
|
|
|
8318
8784
|
color: color-mix(in srgb, var(--state-warning-default) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8319
8785
|
}
|
|
8320
8786
|
|
|
8787
|
+
.text-warning-400 {
|
|
8788
|
+
--tw-text-opacity: 1;
|
|
8789
|
+
color: color-mix(in srgb, var(--ramps-warning-400) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8790
|
+
}
|
|
8791
|
+
|
|
8321
8792
|
.text-white {
|
|
8322
8793
|
--tw-text-opacity: 1;
|
|
8323
8794
|
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
@@ -8344,6 +8815,10 @@ input[type=number] {
|
|
|
8344
8815
|
opacity: 0;
|
|
8345
8816
|
}
|
|
8346
8817
|
|
|
8818
|
+
.opacity-100 {
|
|
8819
|
+
opacity: 1;
|
|
8820
|
+
}
|
|
8821
|
+
|
|
8347
8822
|
.opacity-60 {
|
|
8348
8823
|
opacity: 0.6;
|
|
8349
8824
|
}
|
|
@@ -8352,12 +8827,22 @@ input[type=number] {
|
|
|
8352
8827
|
opacity: 0.7;
|
|
8353
8828
|
}
|
|
8354
8829
|
|
|
8830
|
+
.opacity-90 {
|
|
8831
|
+
opacity: 0.9;
|
|
8832
|
+
}
|
|
8833
|
+
|
|
8355
8834
|
.shadow {
|
|
8356
8835
|
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
8357
8836
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
8358
8837
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
8359
8838
|
}
|
|
8360
8839
|
|
|
8840
|
+
.shadow-\[0_8px_24px_-4px_rgba\(0\2c 0\2c 0\2c 0\.24\)\] {
|
|
8841
|
+
--tw-shadow: 0 8px 24px -4px rgba(0,0,0,0.24);
|
|
8842
|
+
--tw-shadow-colored: 0 8px 24px -4px var(--tw-shadow-color);
|
|
8843
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
8844
|
+
}
|
|
8845
|
+
|
|
8361
8846
|
.shadow-\[0px_12px_24px_-4px_rgba\(0\2c 0\2c 0\2c 0\.12\)\] {
|
|
8362
8847
|
--tw-shadow: 0px 12px 24px -4px rgba(0,0,0,0.12);
|
|
8363
8848
|
--tw-shadow-colored: 0px 12px 24px -4px var(--tw-shadow-color);
|
|
@@ -8755,80 +9240,143 @@ input[type=number] {
|
|
|
8755
9240
|
|
|
8756
9241
|
/* ------------------------------------------------------------------ */
|
|
8757
9242
|
|
|
8758
|
-
/*
|
|
9243
|
+
/* ui-scrollbar — design-system themed scrollbar */
|
|
9244
|
+
|
|
9245
|
+
/* */
|
|
9246
|
+
|
|
9247
|
+
/* Sizing uses COMPOUND SELECTORS (not CSS variables) because */
|
|
9248
|
+
|
|
9249
|
+
/* -webkit-scrollbar pseudo-elements don't reliably inherit custom */
|
|
9250
|
+
|
|
9251
|
+
/* properties in Chrome. Compound selectors have higher specificity */
|
|
8759
9252
|
|
|
8760
|
-
/*
|
|
9253
|
+
/* and directly override the base width/height. */
|
|
8761
9254
|
|
|
8762
|
-
/*
|
|
9255
|
+
/* */
|
|
8763
9256
|
|
|
8764
|
-
/*
|
|
9257
|
+
/* Usage: */
|
|
9258
|
+
|
|
9259
|
+
/* <div class="ui-scrollbar"> default M+M */
|
|
9260
|
+
|
|
9261
|
+
/* <div class="ui-scrollbar ui-scrollbar-y-s"> M horiz + S vert */
|
|
8765
9262
|
|
|
8766
9263
|
/* ------------------------------------------------------------------ */
|
|
8767
9264
|
|
|
8768
|
-
/*
|
|
9265
|
+
/* Firefox: standard API */
|
|
9266
|
+
|
|
9267
|
+
@supports (-moz-appearance: none) {
|
|
9268
|
+
.ui-scrollbar {
|
|
9269
|
+
scrollbar-width: thin;
|
|
9270
|
+
scrollbar-color: var(--scrollbar-thumb-default-color) transparent;
|
|
9271
|
+
}
|
|
9272
|
+
}
|
|
9273
|
+
|
|
9274
|
+
/* ── Base track: default M on both axes ────────────────────────────── */
|
|
8769
9275
|
|
|
8770
9276
|
.ui-scrollbar::-webkit-scrollbar {
|
|
8771
|
-
|
|
8772
|
-
height: var(--scrollbar-
|
|
9277
|
+
-webkit-appearance: none;
|
|
9278
|
+
height: var(--scrollbar-m-thickness);
|
|
9279
|
+
/* horizontal bar height */
|
|
9280
|
+
width: var(--scrollbar-m-thickness);
|
|
9281
|
+
/* vertical bar width */
|
|
8773
9282
|
background: transparent;
|
|
8774
9283
|
}
|
|
8775
9284
|
|
|
8776
|
-
/* --- Thumb --- */
|
|
8777
|
-
|
|
8778
9285
|
.ui-scrollbar::-webkit-scrollbar-thumb {
|
|
8779
9286
|
border-radius: 12px;
|
|
8780
9287
|
background: var(--scrollbar-thumb-default-color);
|
|
9288
|
+
/* 2px inset from track edges — matches Figma py-[2px] */
|
|
9289
|
+
border: 2px solid transparent;
|
|
9290
|
+
background-clip: padding-box;
|
|
8781
9291
|
}
|
|
8782
9292
|
|
|
8783
9293
|
.ui-scrollbar::-webkit-scrollbar-thumb:hover {
|
|
8784
9294
|
background: var(--scrollbar-thumb-hover-color);
|
|
8785
|
-
cursor: pointer;
|
|
8786
9295
|
}
|
|
8787
9296
|
|
|
8788
|
-
/*
|
|
9297
|
+
/* Track border — M only (Figma: S and XS have no border) */
|
|
8789
9298
|
|
|
8790
9299
|
.ui-scrollbar::-webkit-scrollbar-track:vertical {
|
|
8791
9300
|
border-left: var(--scrollbar-track-border-width) solid var(--scrollbar-track-border-color);
|
|
8792
9301
|
}
|
|
8793
9302
|
|
|
8794
|
-
/* --- Track border (horizontal) --- */
|
|
8795
|
-
|
|
8796
9303
|
.ui-scrollbar::-webkit-scrollbar-track:horizontal {
|
|
8797
9304
|
border-top: var(--scrollbar-track-border-width) solid var(--scrollbar-track-border-color);
|
|
8798
9305
|
}
|
|
8799
9306
|
|
|
9307
|
+
/* S and XS: no track border, no thumb inset (compound selector removes it) */
|
|
9308
|
+
|
|
9309
|
+
.ui-scrollbar.ui-scrollbar-s::-webkit-scrollbar-track,
|
|
9310
|
+
.ui-scrollbar.ui-scrollbar-x-s::-webkit-scrollbar-track:horizontal,
|
|
9311
|
+
.ui-scrollbar.ui-scrollbar-y-s::-webkit-scrollbar-track:vertical,
|
|
9312
|
+
.ui-scrollbar.ui-scrollbar-xs::-webkit-scrollbar-track,
|
|
9313
|
+
.ui-scrollbar.ui-scrollbar-x-xs::-webkit-scrollbar-track:horizontal,
|
|
9314
|
+
.ui-scrollbar.ui-scrollbar-y-xs::-webkit-scrollbar-track:vertical {
|
|
9315
|
+
border: none;
|
|
9316
|
+
}
|
|
9317
|
+
|
|
8800
9318
|
.ui-scrollbar::-webkit-scrollbar-corner {
|
|
8801
9319
|
background: transparent;
|
|
8802
9320
|
}
|
|
8803
9321
|
|
|
8804
|
-
/*
|
|
9322
|
+
/* ── Size overrides — compound selectors (0,0,2,0 > 0,0,1,0)
|
|
9323
|
+
*
|
|
9324
|
+
* IMPORTANT source order: "both axes" MUST come before per-axis rules.
|
|
9325
|
+
* Same specificity → last declared wins. Per-axis (x-s, y-s …) must win
|
|
9326
|
+
* over both-axes (m, s …) so they are placed AFTER both-axes below. */
|
|
8805
9327
|
|
|
8806
|
-
/*
|
|
9328
|
+
/* Both axes — set height AND width together */
|
|
8807
9329
|
|
|
8808
|
-
.ui-scrollbar-m::-webkit-scrollbar
|
|
8809
|
-
width: var(--scrollbar-m-thickness);
|
|
9330
|
+
.ui-scrollbar.ui-scrollbar-m::-webkit-scrollbar {
|
|
8810
9331
|
height: var(--scrollbar-m-thickness);
|
|
9332
|
+
width: var(--scrollbar-m-thickness);
|
|
8811
9333
|
}
|
|
8812
9334
|
|
|
8813
|
-
|
|
8814
|
-
|
|
8815
|
-
.ui-scrollbar-s::-webkit-scrollbar {
|
|
9335
|
+
.ui-scrollbar.ui-scrollbar-s::-webkit-scrollbar {
|
|
9336
|
+
height: var(--scrollbar-s-thickness);
|
|
8816
9337
|
width: var(--scrollbar-s-thickness);
|
|
9338
|
+
}
|
|
9339
|
+
|
|
9340
|
+
.ui-scrollbar.ui-scrollbar-xs::-webkit-scrollbar {
|
|
9341
|
+
height: var(--scrollbar-xs-thickness);
|
|
9342
|
+
width: var(--scrollbar-xs-thickness);
|
|
9343
|
+
}
|
|
9344
|
+
|
|
9345
|
+
/* Per-axis horizontal (height only) — declared after both-axes so they win */
|
|
9346
|
+
|
|
9347
|
+
.ui-scrollbar.ui-scrollbar-x-m::-webkit-scrollbar {
|
|
9348
|
+
height: var(--scrollbar-m-thickness);
|
|
9349
|
+
}
|
|
9350
|
+
|
|
9351
|
+
.ui-scrollbar.ui-scrollbar-x-s::-webkit-scrollbar {
|
|
8817
9352
|
height: var(--scrollbar-s-thickness);
|
|
8818
9353
|
}
|
|
8819
9354
|
|
|
8820
|
-
|
|
9355
|
+
.ui-scrollbar.ui-scrollbar-x-xs::-webkit-scrollbar {
|
|
9356
|
+
height: var(--scrollbar-xs-thickness);
|
|
9357
|
+
}
|
|
9358
|
+
|
|
9359
|
+
/* Per-axis vertical (width only) — declared after both-axes so they win */
|
|
9360
|
+
|
|
9361
|
+
.ui-scrollbar.ui-scrollbar-y-m::-webkit-scrollbar {
|
|
9362
|
+
width: var(--scrollbar-m-thickness);
|
|
9363
|
+
}
|
|
9364
|
+
|
|
9365
|
+
.ui-scrollbar.ui-scrollbar-y-s::-webkit-scrollbar {
|
|
9366
|
+
width: var(--scrollbar-s-thickness);
|
|
9367
|
+
}
|
|
8821
9368
|
|
|
8822
|
-
.ui-scrollbar-xs::-webkit-scrollbar {
|
|
9369
|
+
.ui-scrollbar.ui-scrollbar-y-xs::-webkit-scrollbar {
|
|
8823
9370
|
width: var(--scrollbar-xs-thickness);
|
|
8824
|
-
height: var(--scrollbar-xs-thickness);
|
|
8825
9371
|
}
|
|
8826
9372
|
|
|
8827
|
-
/* XS
|
|
9373
|
+
/* XS: no border inset on thumb (4px track has no room) */
|
|
8828
9374
|
|
|
8829
|
-
.ui-scrollbar-xs::-webkit-scrollbar-
|
|
8830
|
-
.ui-scrollbar-xs::-webkit-scrollbar-
|
|
9375
|
+
.ui-scrollbar.ui-scrollbar-xs::-webkit-scrollbar-thumb,
|
|
9376
|
+
.ui-scrollbar.ui-scrollbar-x-xs::-webkit-scrollbar-thumb:horizontal,
|
|
9377
|
+
.ui-scrollbar.ui-scrollbar-y-xs::-webkit-scrollbar-thumb:vertical {
|
|
8831
9378
|
border: none;
|
|
9379
|
+
background-clip: border-box;
|
|
8832
9380
|
}
|
|
8833
9381
|
|
|
8834
9382
|
.\[filter\:var\(--switch-thumb-filter\)\] {
|
|
@@ -9096,10 +9644,19 @@ input[type=number] {
|
|
|
9096
9644
|
border-right-color: color-mix(in srgb, var(--input-active-stroke) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
9097
9645
|
}
|
|
9098
9646
|
|
|
9647
|
+
.hover\:\!bg-table-c-row-bg:hover {
|
|
9648
|
+
--tw-bg-opacity: 1 !important;
|
|
9649
|
+
background-color: color-mix(in srgb, var(--table-c-row-bg) calc(100% * var(--tw-bg-opacity, 1)), transparent) !important;
|
|
9650
|
+
}
|
|
9651
|
+
|
|
9099
9652
|
.hover\:bg-\[var\(--dropdown-menu-hover-bg\)\]:hover {
|
|
9100
9653
|
background-color: var(--dropdown-menu-hover-bg);
|
|
9101
9654
|
}
|
|
9102
9655
|
|
|
9656
|
+
.hover\:bg-\[var\(--transparent-grey2-8\2c rgba\(145\2c 158\2c 171\2c 0\.08\)\)\]:hover {
|
|
9657
|
+
background-color: var(--transparent-grey2-8,rgba(145,158,171,0.08));
|
|
9658
|
+
}
|
|
9659
|
+
|
|
9103
9660
|
.hover\:bg-action-button-icon-active-hover:hover {
|
|
9104
9661
|
--tw-bg-opacity: 1;
|
|
9105
9662
|
background-color: color-mix(in srgb, var(--action-button-icon-active-hover-bg) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
@@ -9264,9 +9821,26 @@ input[type=number] {
|
|
|
9264
9821
|
background-color: color-mix(in srgb, var(--state-secondary-hover) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
9265
9822
|
}
|
|
9266
9823
|
|
|
9267
|
-
.hover\:bg-
|
|
9824
|
+
.hover\:bg-table-c-hover:hover {
|
|
9268
9825
|
--tw-bg-opacity: 1;
|
|
9269
|
-
background-color: color-mix(in srgb, var(--
|
|
9826
|
+
background-color: color-mix(in srgb, var(--table-c-hover) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
9827
|
+
}
|
|
9828
|
+
|
|
9829
|
+
.hover\:bg-table-c-hover\/35:hover {
|
|
9830
|
+
background-color: color-mix(in srgb, var(--table-c-hover) calc(100% * 0.35), transparent);
|
|
9831
|
+
}
|
|
9832
|
+
|
|
9833
|
+
.hover\:bg-transparent:hover {
|
|
9834
|
+
background-color: transparent;
|
|
9835
|
+
}
|
|
9836
|
+
|
|
9837
|
+
.hover\:bg-transparent-grey2-12:hover {
|
|
9838
|
+
--tw-bg-opacity: 1;
|
|
9839
|
+
background-color: color-mix(in srgb, var(--transparent-grey2-12) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
9840
|
+
}
|
|
9841
|
+
|
|
9842
|
+
.hover\:bg-white\/5:hover {
|
|
9843
|
+
background-color: rgb(255 255 255 / 0.05);
|
|
9270
9844
|
}
|
|
9271
9845
|
|
|
9272
9846
|
.hover\:fill-action-button-icon-active-hover:hover {
|
|
@@ -9538,6 +10112,11 @@ input[type=number] {
|
|
|
9538
10112
|
color: color-mix(in srgb, var(--input-filled-text) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
9539
10113
|
}
|
|
9540
10114
|
|
|
10115
|
+
.hover\:text-text-contrast-high:hover {
|
|
10116
|
+
--tw-text-opacity: 1;
|
|
10117
|
+
color: color-mix(in srgb, var(--text-contrast-high) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
10118
|
+
}
|
|
10119
|
+
|
|
9541
10120
|
.hover\:text-text-g-contrast-high:hover {
|
|
9542
10121
|
--tw-text-opacity: 1;
|
|
9543
10122
|
color: color-mix(in srgb, var(--text-g-contrast-high) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
@@ -10702,6 +11281,14 @@ input[type=number] {
|
|
|
10702
11281
|
opacity: 0.5;
|
|
10703
11282
|
}
|
|
10704
11283
|
|
|
11284
|
+
.group\/col:hover .group-hover\/col\:opacity-100 {
|
|
11285
|
+
opacity: 1;
|
|
11286
|
+
}
|
|
11287
|
+
|
|
11288
|
+
.group\/header:hover .group-hover\/header\:opacity-100 {
|
|
11289
|
+
opacity: 1;
|
|
11290
|
+
}
|
|
11291
|
+
|
|
10705
11292
|
.group:hover .group-hover\:opacity-100 {
|
|
10706
11293
|
opacity: 1;
|
|
10707
11294
|
}
|
|
@@ -11198,11 +11785,6 @@ input[type=number] {
|
|
|
11198
11785
|
background-color: color-mix(in srgb, var(--state-primary-default) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
11199
11786
|
}
|
|
11200
11787
|
|
|
11201
|
-
.data-\[state\=selected\]\:bg-grey-20[data-state="selected"] {
|
|
11202
|
-
--tw-bg-opacity: 1;
|
|
11203
|
-
background-color: color-mix(in srgb, var(--ramps-grey-20) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
11204
|
-
}
|
|
11205
|
-
|
|
11206
11788
|
.data-\[state\=unchecked\]\:bg-\[var\(--switch-thumb-default-color\)\][data-state="unchecked"] {
|
|
11207
11789
|
background-color: var(--switch-thumb-default-color);
|
|
11208
11790
|
}
|
|
@@ -11546,6 +12128,10 @@ input[type=number] {
|
|
|
11546
12128
|
}
|
|
11547
12129
|
|
|
11548
12130
|
@media (min-width: 640px) {
|
|
12131
|
+
.sm\:inline-block {
|
|
12132
|
+
display: inline-block;
|
|
12133
|
+
}
|
|
12134
|
+
|
|
11549
12135
|
.sm\:max-w-\[425px\] {
|
|
11550
12136
|
max-width: 425px;
|
|
11551
12137
|
}
|
|
@@ -11569,12 +12155,49 @@ input[type=number] {
|
|
|
11569
12155
|
}
|
|
11570
12156
|
}
|
|
11571
12157
|
|
|
11572
|
-
.\[\&\:has\(\[role\=checkbox\]\)\]\:w-
|
|
11573
|
-
width:
|
|
12158
|
+
.\[\&\:has\(\[role\=checkbox\]\)\]\:min-w-10:has([role=checkbox]) {
|
|
12159
|
+
min-width: 2.5rem;
|
|
11574
12160
|
}
|
|
11575
12161
|
|
|
11576
|
-
.\[\&\:has\(\[role\=checkbox\]\)\]\:
|
|
11577
|
-
padding-
|
|
12162
|
+
.\[\&\:has\(\[role\=checkbox\]\)\]\:px-3:has([role=checkbox]) {
|
|
12163
|
+
padding-left: 0.75rem;
|
|
12164
|
+
padding-right: 0.75rem;
|
|
12165
|
+
}
|
|
12166
|
+
|
|
12167
|
+
.\[\&\>td\:not\(\:last-child\)\]\:border-r>td:not(:last-child) {
|
|
12168
|
+
border-right-width: 1px;
|
|
12169
|
+
}
|
|
12170
|
+
|
|
12171
|
+
.\[\&\>td\:not\(\:last-child\)\]\:border-r-table-c-col-line>td:not(:last-child) {
|
|
12172
|
+
--tw-border-opacity: 1;
|
|
12173
|
+
border-right-color: color-mix(in srgb, var(--table-c-col-line) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
12174
|
+
}
|
|
12175
|
+
|
|
12176
|
+
.\[\&\>td\]\:border-b>td {
|
|
12177
|
+
border-bottom-width: 1px;
|
|
12178
|
+
}
|
|
12179
|
+
|
|
12180
|
+
.\[\&\>td\]\:border-b-table-c-row-line>td {
|
|
12181
|
+
--tw-border-opacity: 1;
|
|
12182
|
+
border-bottom-color: color-mix(in srgb, var(--table-c-row-line) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
12183
|
+
}
|
|
12184
|
+
|
|
12185
|
+
.\[\&\>th\:not\(\:last-child\)\]\:border-r>th:not(:last-child) {
|
|
12186
|
+
border-right-width: 1px;
|
|
12187
|
+
}
|
|
12188
|
+
|
|
12189
|
+
.\[\&\>th\:not\(\:last-child\)\]\:border-r-table-c-col-line>th:not(:last-child) {
|
|
12190
|
+
--tw-border-opacity: 1;
|
|
12191
|
+
border-right-color: color-mix(in srgb, var(--table-c-col-line) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
12192
|
+
}
|
|
12193
|
+
|
|
12194
|
+
.\[\&\>th\]\:border-b>th {
|
|
12195
|
+
border-bottom-width: 1px;
|
|
12196
|
+
}
|
|
12197
|
+
|
|
12198
|
+
.\[\&\>th\]\:border-b-table-c-row-line>th {
|
|
12199
|
+
--tw-border-opacity: 1;
|
|
12200
|
+
border-bottom-color: color-mix(in srgb, var(--table-c-row-line) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
11578
12201
|
}
|
|
11579
12202
|
|
|
11580
12203
|
.\[\&\>tr\]\:last\:border-b-0:last-child>tr {
|
|
@@ -11711,10 +12334,53 @@ input[type=number] {
|
|
|
11711
12334
|
color: color-mix(in srgb, var(--input-disable-stroke) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
11712
12335
|
}
|
|
11713
12336
|
|
|
11714
|
-
.\[\&_tr\:
|
|
11715
|
-
|
|
12337
|
+
.\[\&_tr\:hover\]\:\!bg-table-c-hover tr:hover {
|
|
12338
|
+
--tw-bg-opacity: 1 !important;
|
|
12339
|
+
background-color: color-mix(in srgb, var(--table-c-hover) calc(100% * var(--tw-bg-opacity, 1)), transparent) !important;
|
|
12340
|
+
}
|
|
12341
|
+
|
|
12342
|
+
.\[\&_tr\:last-child\>td\]\:border-b-0 tr:last-child>td {
|
|
12343
|
+
border-bottom-width: 0px;
|
|
11716
12344
|
}
|
|
11717
12345
|
|
|
11718
|
-
.\[\&_tr\]\:border-b tr {
|
|
12346
|
+
.\[\&_tr\:last-child\>th\]\:border-b-0 tr:last-child>th {
|
|
12347
|
+
border-bottom-width: 0px;
|
|
12348
|
+
}
|
|
12349
|
+
|
|
12350
|
+
.\[\&_tr\:nth-child\(even\)\]\:bg-table-c-row-bg-even tr:nth-child(even) {
|
|
12351
|
+
--tw-bg-opacity: 1;
|
|
12352
|
+
background-color: color-mix(in srgb, var(--table-c-row-bg-even) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
12353
|
+
}
|
|
12354
|
+
|
|
12355
|
+
.\[\&_tr\:nth-child\(odd\)\]\:bg-table-c-row-bg tr:nth-child(odd) {
|
|
12356
|
+
--tw-bg-opacity: 1;
|
|
12357
|
+
background-color: color-mix(in srgb, var(--table-c-row-bg) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
12358
|
+
}
|
|
12359
|
+
|
|
12360
|
+
.\[\&_tr\>td\]\:border-b-0 tr>td {
|
|
12361
|
+
border-bottom-width: 0px;
|
|
12362
|
+
}
|
|
12363
|
+
|
|
12364
|
+
.\[\&_tr\>th\]\:border-b tr>th {
|
|
11719
12365
|
border-bottom-width: 1px;
|
|
11720
12366
|
}
|
|
12367
|
+
|
|
12368
|
+
.\[\&_tr\>th\]\:border-b-table-c-header-line tr>th {
|
|
12369
|
+
--tw-border-opacity: 1;
|
|
12370
|
+
border-bottom-color: color-mix(in srgb, var(--table-c-header-line) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
12371
|
+
}
|
|
12372
|
+
|
|
12373
|
+
.\[\&_tr\[data-highlighted\=true\]\]\:\!bg-table-c-selected tr[data-highlighted=true] {
|
|
12374
|
+
--tw-bg-opacity: 1 !important;
|
|
12375
|
+
background-color: color-mix(in srgb, var(--table-c-selected) calc(100% * var(--tw-bg-opacity, 1)), transparent) !important;
|
|
12376
|
+
}
|
|
12377
|
+
|
|
12378
|
+
.\[\&_tr\[data-state\=selected\]\]\:\!bg-table-c-selected tr[data-state=selected] {
|
|
12379
|
+
--tw-bg-opacity: 1 !important;
|
|
12380
|
+
background-color: color-mix(in srgb, var(--table-c-selected) calc(100% * var(--tw-bg-opacity, 1)), transparent) !important;
|
|
12381
|
+
}
|
|
12382
|
+
|
|
12383
|
+
.\[\&_tr\]\:bg-table-c-row-bg tr {
|
|
12384
|
+
--tw-bg-opacity: 1;
|
|
12385
|
+
background-color: color-mix(in srgb, var(--table-c-row-bg) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
12386
|
+
}
|