@rovula/ui 0.1.28 → 0.1.30
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 +522 -67
- package/dist/cjs/bundle.js +589 -589
- package/dist/cjs/bundle.js.map +1 -1
- 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 +294 -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/DataTable/DataTable.editing.js +385 -0
- package/dist/components/DataTable/DataTable.editing.types.js +1 -0
- package/dist/components/DataTable/DataTable.js +993 -50
- package/dist/components/DataTable/DataTable.stories.js +1137 -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 +522 -67
- package/dist/esm/bundle.js +1545 -1545
- package/dist/esm/bundle.js.map +1 -1
- 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 +294 -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 +775 -96
- package/package.json +14 -2
- 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 +2310 -31
- package/src/components/DataTable/DataTable.test.tsx +696 -0
- package/src/components/DataTable/DataTable.tsx +2275 -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 +306 -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,30 @@ 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
|
+
|
|
4357
|
+
.h-\[28px\] {
|
|
4358
|
+
height: 28px;
|
|
4359
|
+
}
|
|
4360
|
+
|
|
4216
4361
|
.h-\[2px\] {
|
|
4217
4362
|
height: 2px;
|
|
4218
4363
|
}
|
|
4219
4364
|
|
|
4365
|
+
.h-\[320px\] {
|
|
4366
|
+
height: 320px;
|
|
4367
|
+
}
|
|
4368
|
+
|
|
4220
4369
|
.h-\[32px\] {
|
|
4221
4370
|
height: 32px;
|
|
4222
4371
|
}
|
|
@@ -4229,18 +4378,50 @@ input[type=number] {
|
|
|
4229
4378
|
height: 40px;
|
|
4230
4379
|
}
|
|
4231
4380
|
|
|
4381
|
+
.h-\[42px\] {
|
|
4382
|
+
height: 42px;
|
|
4383
|
+
}
|
|
4384
|
+
|
|
4385
|
+
.h-\[44px\] {
|
|
4386
|
+
height: 44px;
|
|
4387
|
+
}
|
|
4388
|
+
|
|
4232
4389
|
.h-\[48px\] {
|
|
4233
4390
|
height: 48px;
|
|
4234
4391
|
}
|
|
4235
4392
|
|
|
4393
|
+
.h-\[50px\] {
|
|
4394
|
+
height: 50px;
|
|
4395
|
+
}
|
|
4396
|
+
|
|
4236
4397
|
.h-\[54px\] {
|
|
4237
4398
|
height: 54px;
|
|
4238
4399
|
}
|
|
4239
4400
|
|
|
4401
|
+
.h-\[56px\] {
|
|
4402
|
+
height: 56px;
|
|
4403
|
+
}
|
|
4404
|
+
|
|
4240
4405
|
.h-\[64px\] {
|
|
4241
4406
|
height: 64px;
|
|
4242
4407
|
}
|
|
4243
4408
|
|
|
4409
|
+
.h-\[min\(380px\2c 50vh\)\] {
|
|
4410
|
+
height: min(380px,50vh);
|
|
4411
|
+
}
|
|
4412
|
+
|
|
4413
|
+
.h-\[min\(420px\2c 55vh\)\] {
|
|
4414
|
+
height: min(420px,55vh);
|
|
4415
|
+
}
|
|
4416
|
+
|
|
4417
|
+
.h-\[min\(480px\2c 70vh\)\] {
|
|
4418
|
+
height: min(480px,70vh);
|
|
4419
|
+
}
|
|
4420
|
+
|
|
4421
|
+
.h-\[min\(520px\2c 70vh\)\] {
|
|
4422
|
+
height: min(520px,70vh);
|
|
4423
|
+
}
|
|
4424
|
+
|
|
4244
4425
|
.h-\[var\(--footer-height\)\] {
|
|
4245
4426
|
height: var(--footer-height);
|
|
4246
4427
|
}
|
|
@@ -4253,6 +4434,10 @@ input[type=number] {
|
|
|
4253
4434
|
height: var(--navbar-height);
|
|
4254
4435
|
}
|
|
4255
4436
|
|
|
4437
|
+
.h-auto {
|
|
4438
|
+
height: auto;
|
|
4439
|
+
}
|
|
4440
|
+
|
|
4256
4441
|
.h-fit {
|
|
4257
4442
|
height: -moz-fit-content;
|
|
4258
4443
|
height: fit-content;
|
|
@@ -4270,6 +4455,10 @@ input[type=number] {
|
|
|
4270
4455
|
height: 100vh;
|
|
4271
4456
|
}
|
|
4272
4457
|
|
|
4458
|
+
.\!max-h-60 {
|
|
4459
|
+
max-height: 15rem !important;
|
|
4460
|
+
}
|
|
4461
|
+
|
|
4273
4462
|
.max-h-60 {
|
|
4274
4463
|
max-height: 15rem;
|
|
4275
4464
|
}
|
|
@@ -4294,6 +4483,10 @@ input[type=number] {
|
|
|
4294
4483
|
max-height: 80vh;
|
|
4295
4484
|
}
|
|
4296
4485
|
|
|
4486
|
+
.max-h-\[min\(520px\2c 70vh\)\] {
|
|
4487
|
+
max-height: min(520px,70vh);
|
|
4488
|
+
}
|
|
4489
|
+
|
|
4297
4490
|
.max-h-screen {
|
|
4298
4491
|
max-height: 100vh;
|
|
4299
4492
|
}
|
|
@@ -4314,10 +4507,26 @@ input[type=number] {
|
|
|
4314
4507
|
min-height: 18px;
|
|
4315
4508
|
}
|
|
4316
4509
|
|
|
4510
|
+
.min-h-\[200px\] {
|
|
4511
|
+
min-height: 200px;
|
|
4512
|
+
}
|
|
4513
|
+
|
|
4514
|
+
.min-h-\[32px\] {
|
|
4515
|
+
min-height: 32px;
|
|
4516
|
+
}
|
|
4517
|
+
|
|
4317
4518
|
.min-h-screen {
|
|
4318
4519
|
min-height: 100vh;
|
|
4319
4520
|
}
|
|
4320
4521
|
|
|
4522
|
+
.w-0\.5 {
|
|
4523
|
+
width: 0.125rem;
|
|
4524
|
+
}
|
|
4525
|
+
|
|
4526
|
+
.w-1\.5 {
|
|
4527
|
+
width: 0.375rem;
|
|
4528
|
+
}
|
|
4529
|
+
|
|
4321
4530
|
.w-1\/2 {
|
|
4322
4531
|
width: 50%;
|
|
4323
4532
|
}
|
|
@@ -4366,8 +4575,8 @@ input[type=number] {
|
|
|
4366
4575
|
width: 20rem;
|
|
4367
4576
|
}
|
|
4368
4577
|
|
|
4369
|
-
.w-\[
|
|
4370
|
-
width:
|
|
4578
|
+
.w-\[120px\] {
|
|
4579
|
+
width: 120px;
|
|
4371
4580
|
}
|
|
4372
4581
|
|
|
4373
4582
|
.w-\[140px\] {
|
|
@@ -4410,10 +4619,18 @@ input[type=number] {
|
|
|
4410
4619
|
width: 420px;
|
|
4411
4620
|
}
|
|
4412
4621
|
|
|
4622
|
+
.w-\[460px\] {
|
|
4623
|
+
width: 460px;
|
|
4624
|
+
}
|
|
4625
|
+
|
|
4413
4626
|
.w-\[46px\] {
|
|
4414
4627
|
width: 46px;
|
|
4415
4628
|
}
|
|
4416
4629
|
|
|
4630
|
+
.w-\[480px\] {
|
|
4631
|
+
width: 480px;
|
|
4632
|
+
}
|
|
4633
|
+
|
|
4417
4634
|
.w-\[48px\] {
|
|
4418
4635
|
width: 48px;
|
|
4419
4636
|
}
|
|
@@ -4426,14 +4643,26 @@ input[type=number] {
|
|
|
4426
4643
|
width: 520px;
|
|
4427
4644
|
}
|
|
4428
4645
|
|
|
4646
|
+
.w-\[5px\] {
|
|
4647
|
+
width: 5px;
|
|
4648
|
+
}
|
|
4649
|
+
|
|
4429
4650
|
.w-\[64px\] {
|
|
4430
4651
|
width: 64px;
|
|
4431
4652
|
}
|
|
4432
4653
|
|
|
4654
|
+
.w-\[72px\] {
|
|
4655
|
+
width: 72px;
|
|
4656
|
+
}
|
|
4657
|
+
|
|
4433
4658
|
.w-\[calc\(100\%-32px\)\] {
|
|
4434
4659
|
width: calc(100% - 32px);
|
|
4435
4660
|
}
|
|
4436
4661
|
|
|
4662
|
+
.w-\[var\(--input-width\)\] {
|
|
4663
|
+
width: var(--input-width);
|
|
4664
|
+
}
|
|
4665
|
+
|
|
4437
4666
|
.w-auto {
|
|
4438
4667
|
width: auto;
|
|
4439
4668
|
}
|
|
@@ -4447,6 +4676,14 @@ input[type=number] {
|
|
|
4447
4676
|
width: 100%;
|
|
4448
4677
|
}
|
|
4449
4678
|
|
|
4679
|
+
.w-px {
|
|
4680
|
+
width: 1px;
|
|
4681
|
+
}
|
|
4682
|
+
|
|
4683
|
+
.min-w-0 {
|
|
4684
|
+
min-width: 0px;
|
|
4685
|
+
}
|
|
4686
|
+
|
|
4450
4687
|
.min-w-72 {
|
|
4451
4688
|
min-width: 18rem;
|
|
4452
4689
|
}
|
|
@@ -4459,11 +4696,27 @@ input[type=number] {
|
|
|
4459
4696
|
min-width: 154px;
|
|
4460
4697
|
}
|
|
4461
4698
|
|
|
4699
|
+
.min-w-\[220px\] {
|
|
4700
|
+
min-width: 220px;
|
|
4701
|
+
}
|
|
4702
|
+
|
|
4703
|
+
.min-w-\[240px\] {
|
|
4704
|
+
min-width: 240px;
|
|
4705
|
+
}
|
|
4706
|
+
|
|
4707
|
+
.min-w-\[800px\] {
|
|
4708
|
+
min-width: 800px;
|
|
4709
|
+
}
|
|
4710
|
+
|
|
4462
4711
|
.min-w-fit {
|
|
4463
4712
|
min-width: -moz-fit-content;
|
|
4464
4713
|
min-width: fit-content;
|
|
4465
4714
|
}
|
|
4466
4715
|
|
|
4716
|
+
.min-w-full {
|
|
4717
|
+
min-width: 100%;
|
|
4718
|
+
}
|
|
4719
|
+
|
|
4467
4720
|
.max-w-2xl {
|
|
4468
4721
|
max-width: 42rem;
|
|
4469
4722
|
}
|
|
@@ -4476,6 +4729,10 @@ input[type=number] {
|
|
|
4476
4729
|
max-width: 56rem;
|
|
4477
4730
|
}
|
|
4478
4731
|
|
|
4732
|
+
.max-w-7xl {
|
|
4733
|
+
max-width: 80rem;
|
|
4734
|
+
}
|
|
4735
|
+
|
|
4479
4736
|
.max-w-\[300px\] {
|
|
4480
4737
|
max-width: 300px;
|
|
4481
4738
|
}
|
|
@@ -4516,12 +4773,22 @@ input[type=number] {
|
|
|
4516
4773
|
flex-grow: 1;
|
|
4517
4774
|
}
|
|
4518
4775
|
|
|
4776
|
+
.table-fixed {
|
|
4777
|
+
table-layout: fixed;
|
|
4778
|
+
}
|
|
4779
|
+
|
|
4519
4780
|
.caption-bottom {
|
|
4520
4781
|
caption-side: bottom;
|
|
4521
4782
|
}
|
|
4522
4783
|
|
|
4523
|
-
.border-
|
|
4524
|
-
border-collapse:
|
|
4784
|
+
.border-separate {
|
|
4785
|
+
border-collapse: separate;
|
|
4786
|
+
}
|
|
4787
|
+
|
|
4788
|
+
.border-spacing-0 {
|
|
4789
|
+
--tw-border-spacing-x: 0px;
|
|
4790
|
+
--tw-border-spacing-y: 0px;
|
|
4791
|
+
border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
|
|
4525
4792
|
}
|
|
4526
4793
|
|
|
4527
4794
|
.-translate-x-1\/2 {
|
|
@@ -4549,6 +4816,12 @@ input[type=number] {
|
|
|
4549
4816
|
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
4817
|
}
|
|
4551
4818
|
|
|
4819
|
+
.scale-\[1\.01\] {
|
|
4820
|
+
--tw-scale-x: 1.01;
|
|
4821
|
+
--tw-scale-y: 1.01;
|
|
4822
|
+
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));
|
|
4823
|
+
}
|
|
4824
|
+
|
|
4552
4825
|
.transform {
|
|
4553
4826
|
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
4827
|
}
|
|
@@ -4563,6 +4836,10 @@ input[type=number] {
|
|
|
4563
4836
|
animation: spin 1s linear infinite;
|
|
4564
4837
|
}
|
|
4565
4838
|
|
|
4839
|
+
.cursor-col-resize {
|
|
4840
|
+
cursor: col-resize;
|
|
4841
|
+
}
|
|
4842
|
+
|
|
4566
4843
|
.cursor-default {
|
|
4567
4844
|
cursor: default;
|
|
4568
4845
|
}
|
|
@@ -4571,6 +4848,10 @@ input[type=number] {
|
|
|
4571
4848
|
cursor: grab;
|
|
4572
4849
|
}
|
|
4573
4850
|
|
|
4851
|
+
.cursor-grabbing {
|
|
4852
|
+
cursor: grabbing;
|
|
4853
|
+
}
|
|
4854
|
+
|
|
4574
4855
|
.cursor-not-allowed {
|
|
4575
4856
|
cursor: not-allowed;
|
|
4576
4857
|
}
|
|
@@ -4597,6 +4878,12 @@ input[type=number] {
|
|
|
4597
4878
|
resize: both;
|
|
4598
4879
|
}
|
|
4599
4880
|
|
|
4881
|
+
.appearance-none {
|
|
4882
|
+
-webkit-appearance: none;
|
|
4883
|
+
-moz-appearance: none;
|
|
4884
|
+
appearance: none;
|
|
4885
|
+
}
|
|
4886
|
+
|
|
4600
4887
|
.grid-cols-1 {
|
|
4601
4888
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
4602
4889
|
}
|
|
@@ -4681,6 +4968,10 @@ input[type=number] {
|
|
|
4681
4968
|
align-items: flex-start;
|
|
4682
4969
|
}
|
|
4683
4970
|
|
|
4971
|
+
.items-end {
|
|
4972
|
+
align-items: flex-end;
|
|
4973
|
+
}
|
|
4974
|
+
|
|
4684
4975
|
.items-center {
|
|
4685
4976
|
align-items: center;
|
|
4686
4977
|
}
|
|
@@ -4801,12 +5092,12 @@ input[type=number] {
|
|
|
4801
5092
|
margin-bottom: calc(2rem * var(--tw-space-y-reverse));
|
|
4802
5093
|
}
|
|
4803
5094
|
|
|
4804
|
-
.self-
|
|
4805
|
-
align-self:
|
|
5095
|
+
.self-start {
|
|
5096
|
+
align-self: flex-start;
|
|
4806
5097
|
}
|
|
4807
5098
|
|
|
4808
|
-
.self-
|
|
4809
|
-
align-self:
|
|
5099
|
+
.self-center {
|
|
5100
|
+
align-self: center;
|
|
4810
5101
|
}
|
|
4811
5102
|
|
|
4812
5103
|
.justify-self-center {
|
|
@@ -4841,10 +5132,6 @@ input[type=number] {
|
|
|
4841
5132
|
overflow-y: hidden;
|
|
4842
5133
|
}
|
|
4843
5134
|
|
|
4844
|
-
.overflow-y-scroll {
|
|
4845
|
-
overflow-y: scroll;
|
|
4846
|
-
}
|
|
4847
|
-
|
|
4848
5135
|
.truncate {
|
|
4849
5136
|
overflow: hidden;
|
|
4850
5137
|
text-overflow: ellipsis;
|
|
@@ -4859,6 +5146,10 @@ input[type=number] {
|
|
|
4859
5146
|
white-space: nowrap;
|
|
4860
5147
|
}
|
|
4861
5148
|
|
|
5149
|
+
.whitespace-pre {
|
|
5150
|
+
white-space: pre;
|
|
5151
|
+
}
|
|
5152
|
+
|
|
4862
5153
|
.whitespace-pre-line {
|
|
4863
5154
|
white-space: pre-line;
|
|
4864
5155
|
}
|
|
@@ -5031,6 +5322,10 @@ input[type=number] {
|
|
|
5031
5322
|
border-width: 3px;
|
|
5032
5323
|
}
|
|
5033
5324
|
|
|
5325
|
+
.\!border-r-0 {
|
|
5326
|
+
border-right-width: 0px !important;
|
|
5327
|
+
}
|
|
5328
|
+
|
|
5034
5329
|
.border-b {
|
|
5035
5330
|
border-bottom-width: 1px;
|
|
5036
5331
|
}
|
|
@@ -5318,6 +5613,11 @@ input[type=number] {
|
|
|
5318
5613
|
border-color: color-mix(in srgb, var(--input-error) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5319
5614
|
}
|
|
5320
5615
|
|
|
5616
|
+
.border-modal-line {
|
|
5617
|
+
--tw-border-opacity: 1;
|
|
5618
|
+
border-color: color-mix(in srgb, var(--modal-line) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5619
|
+
}
|
|
5620
|
+
|
|
5321
5621
|
.border-modal-surface {
|
|
5322
5622
|
--tw-border-opacity: 1;
|
|
5323
5623
|
border-color: color-mix(in srgb, var(--modal-surface) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
@@ -5328,11 +5628,6 @@ input[type=number] {
|
|
|
5328
5628
|
border-color: color-mix(in srgb, var(--state-primary-default) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5329
5629
|
}
|
|
5330
5630
|
|
|
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
5631
|
.border-red-500 {
|
|
5337
5632
|
--tw-border-opacity: 1;
|
|
5338
5633
|
border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
|
|
@@ -5348,11 +5643,31 @@ input[type=number] {
|
|
|
5348
5643
|
border-color: color-mix(in srgb, var(--state-disable-outline) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5349
5644
|
}
|
|
5350
5645
|
|
|
5646
|
+
.border-state-primary-stroke {
|
|
5647
|
+
--tw-border-opacity: 1;
|
|
5648
|
+
border-color: color-mix(in srgb, var(--state-primary-stroke) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5649
|
+
}
|
|
5650
|
+
|
|
5351
5651
|
.border-success-stroke {
|
|
5352
5652
|
--tw-border-opacity: 1;
|
|
5353
5653
|
border-color: color-mix(in srgb, var(--state-success-stroke) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5354
5654
|
}
|
|
5355
5655
|
|
|
5656
|
+
.border-table-bg-line {
|
|
5657
|
+
--tw-border-opacity: 1;
|
|
5658
|
+
border-color: color-mix(in srgb, var(--table-bg-line) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5659
|
+
}
|
|
5660
|
+
|
|
5661
|
+
.border-table-c-border {
|
|
5662
|
+
--tw-border-opacity: 1;
|
|
5663
|
+
border-color: color-mix(in srgb, var(--table-c-border) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5664
|
+
}
|
|
5665
|
+
|
|
5666
|
+
.border-table-c-col-line {
|
|
5667
|
+
--tw-border-opacity: 1;
|
|
5668
|
+
border-color: color-mix(in srgb, var(--table-c-col-line) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5669
|
+
}
|
|
5670
|
+
|
|
5356
5671
|
.border-transparent {
|
|
5357
5672
|
border-color: transparent;
|
|
5358
5673
|
}
|
|
@@ -5367,6 +5682,10 @@ input[type=number] {
|
|
|
5367
5682
|
border-color: color-mix(in srgb, var(--state-warning-stroke) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5368
5683
|
}
|
|
5369
5684
|
|
|
5685
|
+
.border-white\/20 {
|
|
5686
|
+
border-color: rgb(255 255 255 / 0.2);
|
|
5687
|
+
}
|
|
5688
|
+
|
|
5370
5689
|
.border-b-\[rgb\(var\(--navbar-border-color\)\)\] {
|
|
5371
5690
|
border-bottom-color: rgb(var(--navbar-border-color));
|
|
5372
5691
|
}
|
|
@@ -5415,6 +5734,16 @@ input[type=number] {
|
|
|
5415
5734
|
border-top-color: color-mix(in srgb, var(--state-secondary-default) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5416
5735
|
}
|
|
5417
5736
|
|
|
5737
|
+
.border-t-table-c-header-line {
|
|
5738
|
+
--tw-border-opacity: 1;
|
|
5739
|
+
border-top-color: color-mix(in srgb, var(--table-c-header-line) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5740
|
+
}
|
|
5741
|
+
|
|
5742
|
+
.border-t-table-c-row-line {
|
|
5743
|
+
--tw-border-opacity: 1;
|
|
5744
|
+
border-top-color: color-mix(in srgb, var(--table-c-row-line) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
5745
|
+
}
|
|
5746
|
+
|
|
5418
5747
|
.\!bg-\[var\(--dropdown-menu-hover-bg\)\] {
|
|
5419
5748
|
background-color: var(--dropdown-menu-hover-bg) !important;
|
|
5420
5749
|
}
|
|
@@ -5449,6 +5778,18 @@ input[type=number] {
|
|
|
5449
5778
|
background-color: color-mix(in srgb, var(--action-button-solid-hover-bg) calc(100% * var(--tw-bg-opacity, 1)), transparent) !important;
|
|
5450
5779
|
}
|
|
5451
5780
|
|
|
5781
|
+
.\!bg-info-500\/10 {
|
|
5782
|
+
background-color: color-mix(in srgb, var(--ramps-info-500) calc(100% * 0.1), transparent) !important;
|
|
5783
|
+
}
|
|
5784
|
+
|
|
5785
|
+
.\!bg-success-500\/10 {
|
|
5786
|
+
background-color: color-mix(in srgb, var(--ramps-success-500) calc(100% * 0.1), transparent) !important;
|
|
5787
|
+
}
|
|
5788
|
+
|
|
5789
|
+
.\!bg-white\/5 {
|
|
5790
|
+
background-color: rgb(255 255 255 / 0.05) !important;
|
|
5791
|
+
}
|
|
5792
|
+
|
|
5452
5793
|
.bg-\[rgb\(var\(--base-bg-2\)\)\] {
|
|
5453
5794
|
background-color: rgb(var(--base-bg-2));
|
|
5454
5795
|
}
|
|
@@ -5824,6 +6165,10 @@ input[type=number] {
|
|
|
5824
6165
|
background-color: color-mix(in srgb, var(--ramps-error-500) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
5825
6166
|
}
|
|
5826
6167
|
|
|
6168
|
+
.bg-error-500\/20 {
|
|
6169
|
+
background-color: color-mix(in srgb, var(--ramps-error-500) calc(100% * 0.2), transparent);
|
|
6170
|
+
}
|
|
6171
|
+
|
|
5827
6172
|
.bg-error-600 {
|
|
5828
6173
|
--tw-bg-opacity: 1;
|
|
5829
6174
|
background-color: color-mix(in srgb, var(--ramps-error-600) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
@@ -6183,6 +6528,10 @@ input[type=number] {
|
|
|
6183
6528
|
background-color: color-mix(in srgb, var(--ramps-info-500) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
6184
6529
|
}
|
|
6185
6530
|
|
|
6531
|
+
.bg-info-500\/20 {
|
|
6532
|
+
background-color: color-mix(in srgb, var(--ramps-info-500) calc(100% * 0.2), transparent);
|
|
6533
|
+
}
|
|
6534
|
+
|
|
6186
6535
|
.bg-info-600 {
|
|
6187
6536
|
--tw-bg-opacity: 1;
|
|
6188
6537
|
background-color: color-mix(in srgb, var(--ramps-info-600) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
@@ -6307,6 +6656,20 @@ input[type=number] {
|
|
|
6307
6656
|
background-color: color-mix(in srgb, var(--modal-surface) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
6308
6657
|
}
|
|
6309
6658
|
|
|
6659
|
+
.bg-orange-500 {
|
|
6660
|
+
--tw-bg-opacity: 1;
|
|
6661
|
+
background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
|
|
6662
|
+
}
|
|
6663
|
+
|
|
6664
|
+
.bg-orange-500\/20 {
|
|
6665
|
+
background-color: rgb(249 115 22 / 0.2);
|
|
6666
|
+
}
|
|
6667
|
+
|
|
6668
|
+
.bg-page-bg-main {
|
|
6669
|
+
--tw-bg-opacity: 1;
|
|
6670
|
+
background-color: color-mix(in srgb, var(--page-bg-main) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
6671
|
+
}
|
|
6672
|
+
|
|
6310
6673
|
.bg-pink-100 {
|
|
6311
6674
|
--tw-bg-opacity: 1;
|
|
6312
6675
|
background-color: rgb(252 231 243 / var(--tw-bg-opacity, 1));
|
|
@@ -6656,6 +7019,11 @@ input[type=number] {
|
|
|
6656
7019
|
background-color: color-mix(in srgb, var(--state-disable-solid) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
6657
7020
|
}
|
|
6658
7021
|
|
|
7022
|
+
.bg-state-primary-default {
|
|
7023
|
+
--tw-bg-opacity: 1;
|
|
7024
|
+
background-color: color-mix(in srgb, var(--state-primary-default) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
7025
|
+
}
|
|
7026
|
+
|
|
6659
7027
|
.bg-success {
|
|
6660
7028
|
--tw-bg-opacity: 1;
|
|
6661
7029
|
background-color: color-mix(in srgb, var(--state-success-default) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
@@ -6691,6 +7059,10 @@ input[type=number] {
|
|
|
6691
7059
|
background-color: color-mix(in srgb, var(--ramps-success-500) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
6692
7060
|
}
|
|
6693
7061
|
|
|
7062
|
+
.bg-success-500\/20 {
|
|
7063
|
+
background-color: color-mix(in srgb, var(--ramps-success-500) calc(100% * 0.2), transparent);
|
|
7064
|
+
}
|
|
7065
|
+
|
|
6694
7066
|
.bg-success-600 {
|
|
6695
7067
|
--tw-bg-opacity: 1;
|
|
6696
7068
|
background-color: color-mix(in srgb, var(--ramps-success-600) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
@@ -6751,6 +7123,26 @@ input[type=number] {
|
|
|
6751
7123
|
background-color: color-mix(in srgb, var(--surface) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
6752
7124
|
}
|
|
6753
7125
|
|
|
7126
|
+
.bg-table-bg-a {
|
|
7127
|
+
--tw-bg-opacity: 1;
|
|
7128
|
+
background-color: color-mix(in srgb, var(--table-bg-a) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
7129
|
+
}
|
|
7130
|
+
|
|
7131
|
+
.bg-table-bg-main {
|
|
7132
|
+
--tw-bg-opacity: 1;
|
|
7133
|
+
background-color: color-mix(in srgb, var(--table-bg-main) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
7134
|
+
}
|
|
7135
|
+
|
|
7136
|
+
.bg-table-c-col-line {
|
|
7137
|
+
--tw-bg-opacity: 1;
|
|
7138
|
+
background-color: color-mix(in srgb, var(--table-c-col-line) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
7139
|
+
}
|
|
7140
|
+
|
|
7141
|
+
.bg-table-c-header-bg {
|
|
7142
|
+
--tw-bg-opacity: 1;
|
|
7143
|
+
background-color: color-mix(in srgb, var(--table-c-header-bg) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
7144
|
+
}
|
|
7145
|
+
|
|
6754
7146
|
.bg-tertiary {
|
|
6755
7147
|
--tw-bg-opacity: 1;
|
|
6756
7148
|
background-color: color-mix(in srgb, var(--state-tertiary-default) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
@@ -7000,6 +7392,10 @@ input[type=number] {
|
|
|
7000
7392
|
background-color: color-mix(in srgb, var(--ramps-warning-500) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
7001
7393
|
}
|
|
7002
7394
|
|
|
7395
|
+
.bg-warning-500\/20 {
|
|
7396
|
+
background-color: color-mix(in srgb, var(--ramps-warning-500) calc(100% * 0.2), transparent);
|
|
7397
|
+
}
|
|
7398
|
+
|
|
7003
7399
|
.bg-warning-600 {
|
|
7004
7400
|
--tw-bg-opacity: 1;
|
|
7005
7401
|
background-color: color-mix(in srgb, var(--ramps-warning-600) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
@@ -7384,11 +7780,21 @@ input[type=number] {
|
|
|
7384
7780
|
padding: 2rem;
|
|
7385
7781
|
}
|
|
7386
7782
|
|
|
7783
|
+
.\!py-2 {
|
|
7784
|
+
padding-top: 0.5rem !important;
|
|
7785
|
+
padding-bottom: 0.5rem !important;
|
|
7786
|
+
}
|
|
7787
|
+
|
|
7387
7788
|
.px-1 {
|
|
7388
7789
|
padding-left: 0.25rem;
|
|
7389
7790
|
padding-right: 0.25rem;
|
|
7390
7791
|
}
|
|
7391
7792
|
|
|
7793
|
+
.px-2 {
|
|
7794
|
+
padding-left: 0.5rem;
|
|
7795
|
+
padding-right: 0.5rem;
|
|
7796
|
+
}
|
|
7797
|
+
|
|
7392
7798
|
.px-3 {
|
|
7393
7799
|
padding-left: 0.75rem;
|
|
7394
7800
|
padding-right: 0.75rem;
|
|
@@ -7469,6 +7875,11 @@ input[type=number] {
|
|
|
7469
7875
|
padding-bottom: 3.5rem;
|
|
7470
7876
|
}
|
|
7471
7877
|
|
|
7878
|
+
.py-16 {
|
|
7879
|
+
padding-top: 4rem;
|
|
7880
|
+
padding-bottom: 4rem;
|
|
7881
|
+
}
|
|
7882
|
+
|
|
7472
7883
|
.py-2 {
|
|
7473
7884
|
padding-top: 0.5rem;
|
|
7474
7885
|
padding-bottom: 0.5rem;
|
|
@@ -7564,6 +7975,10 @@ input[type=number] {
|
|
|
7564
7975
|
padding-bottom: 0.5rem;
|
|
7565
7976
|
}
|
|
7566
7977
|
|
|
7978
|
+
.pb-3 {
|
|
7979
|
+
padding-bottom: 0.75rem;
|
|
7980
|
+
}
|
|
7981
|
+
|
|
7567
7982
|
.pe-\[30px\] {
|
|
7568
7983
|
padding-inline-end: 30px;
|
|
7569
7984
|
}
|
|
@@ -7580,6 +7995,10 @@ input[type=number] {
|
|
|
7580
7995
|
padding-left: 1rem;
|
|
7581
7996
|
}
|
|
7582
7997
|
|
|
7998
|
+
.pl-6 {
|
|
7999
|
+
padding-left: 1.5rem;
|
|
8000
|
+
}
|
|
8001
|
+
|
|
7583
8002
|
.pl-8 {
|
|
7584
8003
|
padding-left: 2rem;
|
|
7585
8004
|
}
|
|
@@ -7588,6 +8007,10 @@ input[type=number] {
|
|
|
7588
8007
|
padding-right: 1rem;
|
|
7589
8008
|
}
|
|
7590
8009
|
|
|
8010
|
+
.pr-7 {
|
|
8011
|
+
padding-right: 1.75rem;
|
|
8012
|
+
}
|
|
8013
|
+
|
|
7591
8014
|
.pr-8 {
|
|
7592
8015
|
padding-right: 2rem;
|
|
7593
8016
|
}
|
|
@@ -7851,11 +8274,23 @@ input[type=number] {
|
|
|
7851
8274
|
text-transform: capitalize;
|
|
7852
8275
|
}
|
|
7853
8276
|
|
|
8277
|
+
.italic {
|
|
8278
|
+
font-style: italic;
|
|
8279
|
+
}
|
|
8280
|
+
|
|
7854
8281
|
.tabular-nums {
|
|
7855
8282
|
--tw-numeric-spacing: tabular-nums;
|
|
7856
8283
|
font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
|
|
7857
8284
|
}
|
|
7858
8285
|
|
|
8286
|
+
.leading-\[18px\] {
|
|
8287
|
+
line-height: 18px;
|
|
8288
|
+
}
|
|
8289
|
+
|
|
8290
|
+
.leading-\[20px\] {
|
|
8291
|
+
line-height: 20px;
|
|
8292
|
+
}
|
|
8293
|
+
|
|
7859
8294
|
.leading-\[3rem\] {
|
|
7860
8295
|
line-height: 3rem;
|
|
7861
8296
|
}
|
|
@@ -8159,6 +8594,16 @@ input[type=number] {
|
|
|
8159
8594
|
color: color-mix(in srgb, var(--state-error-default) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8160
8595
|
}
|
|
8161
8596
|
|
|
8597
|
+
.text-error-400 {
|
|
8598
|
+
--tw-text-opacity: 1;
|
|
8599
|
+
color: color-mix(in srgb, var(--ramps-error-400) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8600
|
+
}
|
|
8601
|
+
|
|
8602
|
+
.text-error-500 {
|
|
8603
|
+
--tw-text-opacity: 1;
|
|
8604
|
+
color: color-mix(in srgb, var(--ramps-error-500) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8605
|
+
}
|
|
8606
|
+
|
|
8162
8607
|
.text-function-active-icon {
|
|
8163
8608
|
--tw-text-opacity: 1;
|
|
8164
8609
|
color: color-mix(in srgb, var(--function-active-icon) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
@@ -8204,6 +8649,11 @@ input[type=number] {
|
|
|
8204
8649
|
color: color-mix(in srgb, var(--state-info-default) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8205
8650
|
}
|
|
8206
8651
|
|
|
8652
|
+
.text-info-400 {
|
|
8653
|
+
--tw-text-opacity: 1;
|
|
8654
|
+
color: color-mix(in srgb, var(--ramps-info-400) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8655
|
+
}
|
|
8656
|
+
|
|
8207
8657
|
.text-inherit {
|
|
8208
8658
|
color: inherit;
|
|
8209
8659
|
}
|
|
@@ -8228,6 +8678,11 @@ input[type=number] {
|
|
|
8228
8678
|
color: color-mix(in srgb, var(--input-filled-text) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8229
8679
|
}
|
|
8230
8680
|
|
|
8681
|
+
.text-orange-400 {
|
|
8682
|
+
--tw-text-opacity: 1;
|
|
8683
|
+
color: rgb(251 146 60 / var(--tw-text-opacity, 1));
|
|
8684
|
+
}
|
|
8685
|
+
|
|
8231
8686
|
.text-pink-200 {
|
|
8232
8687
|
--tw-text-opacity: 1;
|
|
8233
8688
|
color: rgb(251 207 232 / var(--tw-text-opacity, 1));
|
|
@@ -8268,11 +8723,21 @@ input[type=number] {
|
|
|
8268
8723
|
color: color-mix(in srgb, var(--state-error-default) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8269
8724
|
}
|
|
8270
8725
|
|
|
8726
|
+
.text-state-primary-text-outline {
|
|
8727
|
+
--tw-text-opacity: 1;
|
|
8728
|
+
color: color-mix(in srgb, var(--state-primary-text-outline) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8729
|
+
}
|
|
8730
|
+
|
|
8271
8731
|
.text-state-primary-text-solid {
|
|
8272
8732
|
--tw-text-opacity: 1;
|
|
8273
8733
|
color: color-mix(in srgb, var(--state-primary-text-solid) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8274
8734
|
}
|
|
8275
8735
|
|
|
8736
|
+
.text-state-secondary-text-outline {
|
|
8737
|
+
--tw-text-opacity: 1;
|
|
8738
|
+
color: color-mix(in srgb, var(--state-secondary-text-outline) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8739
|
+
}
|
|
8740
|
+
|
|
8276
8741
|
.text-state-secondary-text-solid {
|
|
8277
8742
|
--tw-text-opacity: 1;
|
|
8278
8743
|
color: color-mix(in srgb, var(--state-secondary-text-solid) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
@@ -8288,6 +8753,11 @@ input[type=number] {
|
|
|
8288
8753
|
color: color-mix(in srgb, var(--state-success-default) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8289
8754
|
}
|
|
8290
8755
|
|
|
8756
|
+
.text-success-400 {
|
|
8757
|
+
--tw-text-opacity: 1;
|
|
8758
|
+
color: color-mix(in srgb, var(--ramps-success-400) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8759
|
+
}
|
|
8760
|
+
|
|
8291
8761
|
.text-tertiary {
|
|
8292
8762
|
--tw-text-opacity: 1;
|
|
8293
8763
|
color: color-mix(in srgb, var(--state-tertiary-default) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
@@ -8298,6 +8768,11 @@ input[type=number] {
|
|
|
8298
8768
|
color: color-mix(in srgb, var(--text-black) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8299
8769
|
}
|
|
8300
8770
|
|
|
8771
|
+
.text-text-contrast-high {
|
|
8772
|
+
--tw-text-opacity: 1;
|
|
8773
|
+
color: color-mix(in srgb, var(--text-contrast-high) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8774
|
+
}
|
|
8775
|
+
|
|
8301
8776
|
.text-text-contrast-low {
|
|
8302
8777
|
--tw-text-opacity: 1;
|
|
8303
8778
|
color: color-mix(in srgb, var(--text-contrast-low) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
@@ -8333,6 +8808,11 @@ input[type=number] {
|
|
|
8333
8808
|
color: color-mix(in srgb, var(--state-warning-default) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8334
8809
|
}
|
|
8335
8810
|
|
|
8811
|
+
.text-warning-400 {
|
|
8812
|
+
--tw-text-opacity: 1;
|
|
8813
|
+
color: color-mix(in srgb, var(--ramps-warning-400) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
8814
|
+
}
|
|
8815
|
+
|
|
8336
8816
|
.text-white {
|
|
8337
8817
|
--tw-text-opacity: 1;
|
|
8338
8818
|
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
@@ -8359,6 +8839,10 @@ input[type=number] {
|
|
|
8359
8839
|
opacity: 0;
|
|
8360
8840
|
}
|
|
8361
8841
|
|
|
8842
|
+
.opacity-100 {
|
|
8843
|
+
opacity: 1;
|
|
8844
|
+
}
|
|
8845
|
+
|
|
8362
8846
|
.opacity-60 {
|
|
8363
8847
|
opacity: 0.6;
|
|
8364
8848
|
}
|
|
@@ -8367,12 +8851,22 @@ input[type=number] {
|
|
|
8367
8851
|
opacity: 0.7;
|
|
8368
8852
|
}
|
|
8369
8853
|
|
|
8854
|
+
.opacity-90 {
|
|
8855
|
+
opacity: 0.9;
|
|
8856
|
+
}
|
|
8857
|
+
|
|
8370
8858
|
.shadow {
|
|
8371
8859
|
--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
|
|
8372
8860
|
--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
|
|
8373
8861
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
8374
8862
|
}
|
|
8375
8863
|
|
|
8864
|
+
.shadow-\[0_8px_24px_-4px_rgba\(0\2c 0\2c 0\2c 0\.24\)\] {
|
|
8865
|
+
--tw-shadow: 0 8px 24px -4px rgba(0,0,0,0.24);
|
|
8866
|
+
--tw-shadow-colored: 0 8px 24px -4px var(--tw-shadow-color);
|
|
8867
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
8868
|
+
}
|
|
8869
|
+
|
|
8376
8870
|
.shadow-\[0px_12px_24px_-4px_rgba\(0\2c 0\2c 0\2c 0\.12\)\] {
|
|
8377
8871
|
--tw-shadow: 0px 12px 24px -4px rgba(0,0,0,0.12);
|
|
8378
8872
|
--tw-shadow-colored: 0px 12px 24px -4px var(--tw-shadow-color);
|
|
@@ -8770,80 +9264,143 @@ input[type=number] {
|
|
|
8770
9264
|
|
|
8771
9265
|
/* ------------------------------------------------------------------ */
|
|
8772
9266
|
|
|
8773
|
-
/*
|
|
9267
|
+
/* ui-scrollbar — design-system themed scrollbar */
|
|
9268
|
+
|
|
9269
|
+
/* */
|
|
9270
|
+
|
|
9271
|
+
/* Sizing uses COMPOUND SELECTORS (not CSS variables) because */
|
|
9272
|
+
|
|
9273
|
+
/* -webkit-scrollbar pseudo-elements don't reliably inherit custom */
|
|
9274
|
+
|
|
9275
|
+
/* properties in Chrome. Compound selectors have higher specificity */
|
|
8774
9276
|
|
|
8775
|
-
/*
|
|
9277
|
+
/* and directly override the base width/height. */
|
|
8776
9278
|
|
|
8777
|
-
/*
|
|
9279
|
+
/* */
|
|
8778
9280
|
|
|
8779
|
-
/*
|
|
9281
|
+
/* Usage: */
|
|
9282
|
+
|
|
9283
|
+
/* <div class="ui-scrollbar"> default M+M */
|
|
9284
|
+
|
|
9285
|
+
/* <div class="ui-scrollbar ui-scrollbar-y-s"> M horiz + S vert */
|
|
8780
9286
|
|
|
8781
9287
|
/* ------------------------------------------------------------------ */
|
|
8782
9288
|
|
|
8783
|
-
/*
|
|
9289
|
+
/* Firefox: standard API */
|
|
9290
|
+
|
|
9291
|
+
@supports (-moz-appearance: none) {
|
|
9292
|
+
.ui-scrollbar {
|
|
9293
|
+
scrollbar-width: thin;
|
|
9294
|
+
scrollbar-color: var(--scrollbar-thumb-default-color) transparent;
|
|
9295
|
+
}
|
|
9296
|
+
}
|
|
9297
|
+
|
|
9298
|
+
/* ── Base track: default M on both axes ────────────────────────────── */
|
|
8784
9299
|
|
|
8785
9300
|
.ui-scrollbar::-webkit-scrollbar {
|
|
8786
|
-
|
|
8787
|
-
height: var(--scrollbar-
|
|
9301
|
+
-webkit-appearance: none;
|
|
9302
|
+
height: var(--scrollbar-m-thickness);
|
|
9303
|
+
/* horizontal bar height */
|
|
9304
|
+
width: var(--scrollbar-m-thickness);
|
|
9305
|
+
/* vertical bar width */
|
|
8788
9306
|
background: transparent;
|
|
8789
9307
|
}
|
|
8790
9308
|
|
|
8791
|
-
/* --- Thumb --- */
|
|
8792
|
-
|
|
8793
9309
|
.ui-scrollbar::-webkit-scrollbar-thumb {
|
|
8794
9310
|
border-radius: 12px;
|
|
8795
9311
|
background: var(--scrollbar-thumb-default-color);
|
|
9312
|
+
/* 2px inset from track edges — matches Figma py-[2px] */
|
|
9313
|
+
border: 2px solid transparent;
|
|
9314
|
+
background-clip: padding-box;
|
|
8796
9315
|
}
|
|
8797
9316
|
|
|
8798
9317
|
.ui-scrollbar::-webkit-scrollbar-thumb:hover {
|
|
8799
9318
|
background: var(--scrollbar-thumb-hover-color);
|
|
8800
|
-
cursor: pointer;
|
|
8801
9319
|
}
|
|
8802
9320
|
|
|
8803
|
-
/*
|
|
9321
|
+
/* Track border — M only (Figma: S and XS have no border) */
|
|
8804
9322
|
|
|
8805
9323
|
.ui-scrollbar::-webkit-scrollbar-track:vertical {
|
|
8806
9324
|
border-left: var(--scrollbar-track-border-width) solid var(--scrollbar-track-border-color);
|
|
8807
9325
|
}
|
|
8808
9326
|
|
|
8809
|
-
/* --- Track border (horizontal) --- */
|
|
8810
|
-
|
|
8811
9327
|
.ui-scrollbar::-webkit-scrollbar-track:horizontal {
|
|
8812
9328
|
border-top: var(--scrollbar-track-border-width) solid var(--scrollbar-track-border-color);
|
|
8813
9329
|
}
|
|
8814
9330
|
|
|
9331
|
+
/* S and XS: no track border, no thumb inset (compound selector removes it) */
|
|
9332
|
+
|
|
9333
|
+
.ui-scrollbar.ui-scrollbar-s::-webkit-scrollbar-track,
|
|
9334
|
+
.ui-scrollbar.ui-scrollbar-x-s::-webkit-scrollbar-track:horizontal,
|
|
9335
|
+
.ui-scrollbar.ui-scrollbar-y-s::-webkit-scrollbar-track:vertical,
|
|
9336
|
+
.ui-scrollbar.ui-scrollbar-xs::-webkit-scrollbar-track,
|
|
9337
|
+
.ui-scrollbar.ui-scrollbar-x-xs::-webkit-scrollbar-track:horizontal,
|
|
9338
|
+
.ui-scrollbar.ui-scrollbar-y-xs::-webkit-scrollbar-track:vertical {
|
|
9339
|
+
border: none;
|
|
9340
|
+
}
|
|
9341
|
+
|
|
8815
9342
|
.ui-scrollbar::-webkit-scrollbar-corner {
|
|
8816
9343
|
background: transparent;
|
|
8817
9344
|
}
|
|
8818
9345
|
|
|
8819
|
-
/*
|
|
9346
|
+
/* ── Size overrides — compound selectors (0,0,2,0 > 0,0,1,0)
|
|
9347
|
+
*
|
|
9348
|
+
* IMPORTANT source order: "both axes" MUST come before per-axis rules.
|
|
9349
|
+
* Same specificity → last declared wins. Per-axis (x-s, y-s …) must win
|
|
9350
|
+
* over both-axes (m, s …) so they are placed AFTER both-axes below. */
|
|
8820
9351
|
|
|
8821
|
-
/*
|
|
9352
|
+
/* Both axes — set height AND width together */
|
|
8822
9353
|
|
|
8823
|
-
.ui-scrollbar-m::-webkit-scrollbar
|
|
8824
|
-
width: var(--scrollbar-m-thickness);
|
|
9354
|
+
.ui-scrollbar.ui-scrollbar-m::-webkit-scrollbar {
|
|
8825
9355
|
height: var(--scrollbar-m-thickness);
|
|
9356
|
+
width: var(--scrollbar-m-thickness);
|
|
8826
9357
|
}
|
|
8827
9358
|
|
|
8828
|
-
|
|
8829
|
-
|
|
8830
|
-
.ui-scrollbar-s::-webkit-scrollbar {
|
|
9359
|
+
.ui-scrollbar.ui-scrollbar-s::-webkit-scrollbar {
|
|
9360
|
+
height: var(--scrollbar-s-thickness);
|
|
8831
9361
|
width: var(--scrollbar-s-thickness);
|
|
9362
|
+
}
|
|
9363
|
+
|
|
9364
|
+
.ui-scrollbar.ui-scrollbar-xs::-webkit-scrollbar {
|
|
9365
|
+
height: var(--scrollbar-xs-thickness);
|
|
9366
|
+
width: var(--scrollbar-xs-thickness);
|
|
9367
|
+
}
|
|
9368
|
+
|
|
9369
|
+
/* Per-axis horizontal (height only) — declared after both-axes so they win */
|
|
9370
|
+
|
|
9371
|
+
.ui-scrollbar.ui-scrollbar-x-m::-webkit-scrollbar {
|
|
9372
|
+
height: var(--scrollbar-m-thickness);
|
|
9373
|
+
}
|
|
9374
|
+
|
|
9375
|
+
.ui-scrollbar.ui-scrollbar-x-s::-webkit-scrollbar {
|
|
8832
9376
|
height: var(--scrollbar-s-thickness);
|
|
8833
9377
|
}
|
|
8834
9378
|
|
|
8835
|
-
|
|
9379
|
+
.ui-scrollbar.ui-scrollbar-x-xs::-webkit-scrollbar {
|
|
9380
|
+
height: var(--scrollbar-xs-thickness);
|
|
9381
|
+
}
|
|
9382
|
+
|
|
9383
|
+
/* Per-axis vertical (width only) — declared after both-axes so they win */
|
|
9384
|
+
|
|
9385
|
+
.ui-scrollbar.ui-scrollbar-y-m::-webkit-scrollbar {
|
|
9386
|
+
width: var(--scrollbar-m-thickness);
|
|
9387
|
+
}
|
|
9388
|
+
|
|
9389
|
+
.ui-scrollbar.ui-scrollbar-y-s::-webkit-scrollbar {
|
|
9390
|
+
width: var(--scrollbar-s-thickness);
|
|
9391
|
+
}
|
|
8836
9392
|
|
|
8837
|
-
.ui-scrollbar-xs::-webkit-scrollbar {
|
|
9393
|
+
.ui-scrollbar.ui-scrollbar-y-xs::-webkit-scrollbar {
|
|
8838
9394
|
width: var(--scrollbar-xs-thickness);
|
|
8839
|
-
height: var(--scrollbar-xs-thickness);
|
|
8840
9395
|
}
|
|
8841
9396
|
|
|
8842
|
-
/* XS
|
|
9397
|
+
/* XS: no border inset on thumb (4px track has no room) */
|
|
8843
9398
|
|
|
8844
|
-
.ui-scrollbar-xs::-webkit-scrollbar-
|
|
8845
|
-
.ui-scrollbar-xs::-webkit-scrollbar-
|
|
9399
|
+
.ui-scrollbar.ui-scrollbar-xs::-webkit-scrollbar-thumb,
|
|
9400
|
+
.ui-scrollbar.ui-scrollbar-x-xs::-webkit-scrollbar-thumb:horizontal,
|
|
9401
|
+
.ui-scrollbar.ui-scrollbar-y-xs::-webkit-scrollbar-thumb:vertical {
|
|
8846
9402
|
border: none;
|
|
9403
|
+
background-clip: border-box;
|
|
8847
9404
|
}
|
|
8848
9405
|
|
|
8849
9406
|
.\[filter\:var\(--switch-thumb-filter\)\] {
|
|
@@ -9111,10 +9668,19 @@ input[type=number] {
|
|
|
9111
9668
|
border-right-color: color-mix(in srgb, var(--input-active-stroke) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
9112
9669
|
}
|
|
9113
9670
|
|
|
9671
|
+
.hover\:\!bg-table-c-row-bg:hover {
|
|
9672
|
+
--tw-bg-opacity: 1 !important;
|
|
9673
|
+
background-color: color-mix(in srgb, var(--table-c-row-bg) calc(100% * var(--tw-bg-opacity, 1)), transparent) !important;
|
|
9674
|
+
}
|
|
9675
|
+
|
|
9114
9676
|
.hover\:bg-\[var\(--dropdown-menu-hover-bg\)\]:hover {
|
|
9115
9677
|
background-color: var(--dropdown-menu-hover-bg);
|
|
9116
9678
|
}
|
|
9117
9679
|
|
|
9680
|
+
.hover\:bg-\[var\(--transparent-grey2-8\2c rgba\(145\2c 158\2c 171\2c 0\.08\)\)\]:hover {
|
|
9681
|
+
background-color: var(--transparent-grey2-8,rgba(145,158,171,0.08));
|
|
9682
|
+
}
|
|
9683
|
+
|
|
9118
9684
|
.hover\:bg-action-button-icon-active-hover:hover {
|
|
9119
9685
|
--tw-bg-opacity: 1;
|
|
9120
9686
|
background-color: color-mix(in srgb, var(--action-button-icon-active-hover-bg) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
@@ -9279,9 +9845,26 @@ input[type=number] {
|
|
|
9279
9845
|
background-color: color-mix(in srgb, var(--state-secondary-hover) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
9280
9846
|
}
|
|
9281
9847
|
|
|
9282
|
-
.hover\:bg-
|
|
9848
|
+
.hover\:bg-table-c-hover:hover {
|
|
9283
9849
|
--tw-bg-opacity: 1;
|
|
9284
|
-
background-color: color-mix(in srgb, var(--
|
|
9850
|
+
background-color: color-mix(in srgb, var(--table-c-hover) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
9851
|
+
}
|
|
9852
|
+
|
|
9853
|
+
.hover\:bg-table-c-hover\/35:hover {
|
|
9854
|
+
background-color: color-mix(in srgb, var(--table-c-hover) calc(100% * 0.35), transparent);
|
|
9855
|
+
}
|
|
9856
|
+
|
|
9857
|
+
.hover\:bg-transparent:hover {
|
|
9858
|
+
background-color: transparent;
|
|
9859
|
+
}
|
|
9860
|
+
|
|
9861
|
+
.hover\:bg-transparent-grey2-12:hover {
|
|
9862
|
+
--tw-bg-opacity: 1;
|
|
9863
|
+
background-color: color-mix(in srgb, var(--transparent-grey2-12) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
9864
|
+
}
|
|
9865
|
+
|
|
9866
|
+
.hover\:bg-white\/5:hover {
|
|
9867
|
+
background-color: rgb(255 255 255 / 0.05);
|
|
9285
9868
|
}
|
|
9286
9869
|
|
|
9287
9870
|
.hover\:fill-action-button-icon-active-hover:hover {
|
|
@@ -9553,6 +10136,11 @@ input[type=number] {
|
|
|
9553
10136
|
color: color-mix(in srgb, var(--input-filled-text) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
9554
10137
|
}
|
|
9555
10138
|
|
|
10139
|
+
.hover\:text-text-contrast-high:hover {
|
|
10140
|
+
--tw-text-opacity: 1;
|
|
10141
|
+
color: color-mix(in srgb, var(--text-contrast-high) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
10142
|
+
}
|
|
10143
|
+
|
|
9556
10144
|
.hover\:text-text-g-contrast-high:hover {
|
|
9557
10145
|
--tw-text-opacity: 1;
|
|
9558
10146
|
color: color-mix(in srgb, var(--text-g-contrast-high) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
@@ -10717,6 +11305,14 @@ input[type=number] {
|
|
|
10717
11305
|
opacity: 0.5;
|
|
10718
11306
|
}
|
|
10719
11307
|
|
|
11308
|
+
.group\/col:hover .group-hover\/col\:opacity-100 {
|
|
11309
|
+
opacity: 1;
|
|
11310
|
+
}
|
|
11311
|
+
|
|
11312
|
+
.group\/header:hover .group-hover\/header\:opacity-100 {
|
|
11313
|
+
opacity: 1;
|
|
11314
|
+
}
|
|
11315
|
+
|
|
10720
11316
|
.group:hover .group-hover\:opacity-100 {
|
|
10721
11317
|
opacity: 1;
|
|
10722
11318
|
}
|
|
@@ -11213,11 +11809,6 @@ input[type=number] {
|
|
|
11213
11809
|
background-color: color-mix(in srgb, var(--state-primary-default) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
11214
11810
|
}
|
|
11215
11811
|
|
|
11216
|
-
.data-\[state\=selected\]\:bg-grey-20[data-state="selected"] {
|
|
11217
|
-
--tw-bg-opacity: 1;
|
|
11218
|
-
background-color: color-mix(in srgb, var(--ramps-grey-20) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
11219
|
-
}
|
|
11220
|
-
|
|
11221
11812
|
.data-\[state\=unchecked\]\:bg-\[var\(--switch-thumb-default-color\)\][data-state="unchecked"] {
|
|
11222
11813
|
background-color: var(--switch-thumb-default-color);
|
|
11223
11814
|
}
|
|
@@ -11561,6 +12152,10 @@ input[type=number] {
|
|
|
11561
12152
|
}
|
|
11562
12153
|
|
|
11563
12154
|
@media (min-width: 640px) {
|
|
12155
|
+
.sm\:inline-block {
|
|
12156
|
+
display: inline-block;
|
|
12157
|
+
}
|
|
12158
|
+
|
|
11564
12159
|
.sm\:max-w-\[425px\] {
|
|
11565
12160
|
max-width: 425px;
|
|
11566
12161
|
}
|
|
@@ -11584,12 +12179,49 @@ input[type=number] {
|
|
|
11584
12179
|
}
|
|
11585
12180
|
}
|
|
11586
12181
|
|
|
11587
|
-
.\[\&\:has\(\[role\=checkbox\]\)\]\:w-
|
|
11588
|
-
width:
|
|
12182
|
+
.\[\&\:has\(\[role\=checkbox\]\)\]\:min-w-10:has([role=checkbox]) {
|
|
12183
|
+
min-width: 2.5rem;
|
|
11589
12184
|
}
|
|
11590
12185
|
|
|
11591
|
-
.\[\&\:has\(\[role\=checkbox\]\)\]\:
|
|
11592
|
-
padding-
|
|
12186
|
+
.\[\&\:has\(\[role\=checkbox\]\)\]\:px-3:has([role=checkbox]) {
|
|
12187
|
+
padding-left: 0.75rem;
|
|
12188
|
+
padding-right: 0.75rem;
|
|
12189
|
+
}
|
|
12190
|
+
|
|
12191
|
+
.\[\&\>td\:not\(\:last-child\)\]\:border-r>td:not(:last-child) {
|
|
12192
|
+
border-right-width: 1px;
|
|
12193
|
+
}
|
|
12194
|
+
|
|
12195
|
+
.\[\&\>td\:not\(\:last-child\)\]\:border-r-table-c-col-line>td:not(:last-child) {
|
|
12196
|
+
--tw-border-opacity: 1;
|
|
12197
|
+
border-right-color: color-mix(in srgb, var(--table-c-col-line) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
12198
|
+
}
|
|
12199
|
+
|
|
12200
|
+
.\[\&\>td\]\:border-b>td {
|
|
12201
|
+
border-bottom-width: 1px;
|
|
12202
|
+
}
|
|
12203
|
+
|
|
12204
|
+
.\[\&\>td\]\:border-b-table-c-row-line>td {
|
|
12205
|
+
--tw-border-opacity: 1;
|
|
12206
|
+
border-bottom-color: color-mix(in srgb, var(--table-c-row-line) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
12207
|
+
}
|
|
12208
|
+
|
|
12209
|
+
.\[\&\>th\:not\(\:last-child\)\]\:border-r>th:not(:last-child) {
|
|
12210
|
+
border-right-width: 1px;
|
|
12211
|
+
}
|
|
12212
|
+
|
|
12213
|
+
.\[\&\>th\:not\(\:last-child\)\]\:border-r-table-c-col-line>th:not(:last-child) {
|
|
12214
|
+
--tw-border-opacity: 1;
|
|
12215
|
+
border-right-color: color-mix(in srgb, var(--table-c-col-line) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
12216
|
+
}
|
|
12217
|
+
|
|
12218
|
+
.\[\&\>th\]\:border-b>th {
|
|
12219
|
+
border-bottom-width: 1px;
|
|
12220
|
+
}
|
|
12221
|
+
|
|
12222
|
+
.\[\&\>th\]\:border-b-table-c-row-line>th {
|
|
12223
|
+
--tw-border-opacity: 1;
|
|
12224
|
+
border-bottom-color: color-mix(in srgb, var(--table-c-row-line) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
11593
12225
|
}
|
|
11594
12226
|
|
|
11595
12227
|
.\[\&\>tr\]\:last\:border-b-0:last-child>tr {
|
|
@@ -11726,10 +12358,57 @@ input[type=number] {
|
|
|
11726
12358
|
color: color-mix(in srgb, var(--input-disable-stroke) calc(100% * var(--tw-text-opacity, 1)), transparent);
|
|
11727
12359
|
}
|
|
11728
12360
|
|
|
11729
|
-
.\[\&_tr\:
|
|
11730
|
-
|
|
12361
|
+
.\[\&_tr\:hover\]\:\!bg-table-c-hover tr:hover {
|
|
12362
|
+
--tw-bg-opacity: 1 !important;
|
|
12363
|
+
background-color: color-mix(in srgb, var(--table-c-hover) calc(100% * var(--tw-bg-opacity, 1)), transparent) !important;
|
|
12364
|
+
}
|
|
12365
|
+
|
|
12366
|
+
.\[\&_tr\:last-child\>td\]\:border-b-0 tr:last-child>td {
|
|
12367
|
+
border-bottom-width: 0px;
|
|
12368
|
+
}
|
|
12369
|
+
|
|
12370
|
+
.\[\&_tr\:last-child\>th\]\:border-b-0 tr:last-child>th {
|
|
12371
|
+
border-bottom-width: 0px;
|
|
11731
12372
|
}
|
|
11732
12373
|
|
|
11733
|
-
.\[\&_tr\]\:
|
|
12374
|
+
.\[\&_tr\:nth-child\(even\)\]\:bg-table-c-row-bg-even tr:nth-child(even) {
|
|
12375
|
+
--tw-bg-opacity: 1;
|
|
12376
|
+
background-color: color-mix(in srgb, var(--table-c-row-bg-even) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
12377
|
+
}
|
|
12378
|
+
|
|
12379
|
+
.\[\&_tr\:nth-child\(odd\)\]\:bg-table-c-row-bg tr:nth-child(odd) {
|
|
12380
|
+
--tw-bg-opacity: 1;
|
|
12381
|
+
background-color: color-mix(in srgb, var(--table-c-row-bg) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
12382
|
+
}
|
|
12383
|
+
|
|
12384
|
+
.\[\&_tr\>td\]\:border-b-0 tr>td {
|
|
12385
|
+
border-bottom-width: 0px;
|
|
12386
|
+
}
|
|
12387
|
+
|
|
12388
|
+
.\[\&_tr\>th\]\:box-border tr>th {
|
|
12389
|
+
box-sizing: border-box;
|
|
12390
|
+
}
|
|
12391
|
+
|
|
12392
|
+
.\[\&_tr\>th\]\:border-b tr>th {
|
|
11734
12393
|
border-bottom-width: 1px;
|
|
11735
12394
|
}
|
|
12395
|
+
|
|
12396
|
+
.\[\&_tr\>th\]\:border-b-table-c-header-line tr>th {
|
|
12397
|
+
--tw-border-opacity: 1;
|
|
12398
|
+
border-bottom-color: color-mix(in srgb, var(--table-c-header-line) calc(100% * var(--tw-border-opacity, 1)), transparent);
|
|
12399
|
+
}
|
|
12400
|
+
|
|
12401
|
+
.\[\&_tr\[data-highlighted\=true\]\]\:\!bg-table-c-selected tr[data-highlighted=true] {
|
|
12402
|
+
--tw-bg-opacity: 1 !important;
|
|
12403
|
+
background-color: color-mix(in srgb, var(--table-c-selected) calc(100% * var(--tw-bg-opacity, 1)), transparent) !important;
|
|
12404
|
+
}
|
|
12405
|
+
|
|
12406
|
+
.\[\&_tr\[data-state\=selected\]\]\:\!bg-table-c-selected tr[data-state=selected] {
|
|
12407
|
+
--tw-bg-opacity: 1 !important;
|
|
12408
|
+
background-color: color-mix(in srgb, var(--table-c-selected) calc(100% * var(--tw-bg-opacity, 1)), transparent) !important;
|
|
12409
|
+
}
|
|
12410
|
+
|
|
12411
|
+
.\[\&_tr\]\:bg-table-c-row-bg tr {
|
|
12412
|
+
--tw-bg-opacity: 1;
|
|
12413
|
+
background-color: color-mix(in srgb, var(--table-c-row-bg) calc(100% * var(--tw-bg-opacity, 1)), transparent);
|
|
12414
|
+
}
|