juxscript 1.1.171 → 1.1.172
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/lib/styles/shadcn.css +18 -0
- package/package.json +1 -1
package/lib/styles/shadcn.css
CHANGED
|
@@ -1163,6 +1163,7 @@ button.jux-button:active,
|
|
|
1163
1163
|
display: flex;
|
|
1164
1164
|
align-items: center;
|
|
1165
1165
|
width: 100%;
|
|
1166
|
+
margin-bottom: 0.75rem; /* Add spacing below filter */
|
|
1166
1167
|
}
|
|
1167
1168
|
|
|
1168
1169
|
.jux-dataframe-filter-icon {
|
|
@@ -1174,10 +1175,27 @@ button.jux-button:active,
|
|
|
1174
1175
|
pointer-events: none;
|
|
1175
1176
|
display: flex;
|
|
1176
1177
|
align-items: center;
|
|
1178
|
+
z-index: 1;
|
|
1177
1179
|
}
|
|
1178
1180
|
|
|
1179
1181
|
.jux-dataframe-filter-input {
|
|
1180
1182
|
padding-left: 2.25rem !important;
|
|
1183
|
+
/* ✅ Remove aggressive black outline, use subtle ring instead */
|
|
1184
|
+
outline: none !important;
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1187
|
+
/* ✅ Fix focus state to match shadcn aesthetic */
|
|
1188
|
+
.jux-dataframe-filter-input:focus {
|
|
1189
|
+
border-color: #18181b !important;
|
|
1190
|
+
box-shadow: 0 0 0 1px #18181b !important;
|
|
1191
|
+
outline: none !important;
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
/* ✅ Update dark mode filter focus */
|
|
1195
|
+
.dark .jux-dataframe-filter-input:focus {
|
|
1196
|
+
border-color: #fafafa !important;
|
|
1197
|
+
box-shadow: 0 0 0 1px #fafafa !important;
|
|
1198
|
+
outline: none !important;
|
|
1181
1199
|
}
|
|
1182
1200
|
|
|
1183
1201
|
/* ═══════════════════════════════════════════════════════════════════
|