@syscore/ui-library 1.7.7 → 1.7.8
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/client/components/ui/input.tsx +1 -1
- package/client/global.css +8 -8
- package/dist/index.cjs.js +1 -1
- package/dist/index.es.js +1 -1
- package/package.json +1 -1
package/client/global.css
CHANGED
|
@@ -1410,24 +1410,24 @@ body {
|
|
|
1410
1410
|
color: hsl(var(--muted-foreground));
|
|
1411
1411
|
}
|
|
1412
1412
|
|
|
1413
|
-
.input {
|
|
1413
|
+
.well-input {
|
|
1414
1414
|
flex: 1;
|
|
1415
1415
|
width: 100%;
|
|
1416
1416
|
background-color: transparent;
|
|
1417
1417
|
outline: none;
|
|
1418
1418
|
}
|
|
1419
1419
|
|
|
1420
|
-
.input::placeholder {
|
|
1420
|
+
.well-input ::placeholder {
|
|
1421
1421
|
color: var(--color-gray-500, #71747d);
|
|
1422
1422
|
}
|
|
1423
1423
|
|
|
1424
|
-
.input[type="file"] {
|
|
1424
|
+
.well-input [type="file"] {
|
|
1425
1425
|
padding: 0;
|
|
1426
1426
|
font-style: italic;
|
|
1427
1427
|
color: hsl(var(--muted-foreground) / 0.7);
|
|
1428
1428
|
}
|
|
1429
1429
|
|
|
1430
|
-
.input[type="file"]::file-selector-button {
|
|
1430
|
+
.well-input [type="file"]::file-selector-button {
|
|
1431
1431
|
margin-right: 0.75rem;
|
|
1432
1432
|
height: 100%;
|
|
1433
1433
|
border: 0;
|
|
@@ -1442,10 +1442,10 @@ body {
|
|
|
1442
1442
|
color: var(--color-gray-800, #282a31);
|
|
1443
1443
|
}
|
|
1444
1444
|
|
|
1445
|
-
.input[type="search"]::-webkit-search-cancel-button,
|
|
1446
|
-
.input[type="search"]::-webkit-search-decoration,
|
|
1447
|
-
.input[type="search"]::-webkit-search-results-button,
|
|
1448
|
-
.input[type="search"]::-webkit-search-results-decoration {
|
|
1445
|
+
.well-input [type="search"]::-webkit-search-cancel-button,
|
|
1446
|
+
.well-input [type="search"]::-webkit-search-decoration,
|
|
1447
|
+
.well-input [type="search"]::-webkit-search-results-button,
|
|
1448
|
+
.well-input [type="search"]::-webkit-search-results-decoration {
|
|
1449
1449
|
appearance: none;
|
|
1450
1450
|
}
|
|
1451
1451
|
|