@solidstarters/solid-core-ui 1.1.49 → 1.1.50
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/resources/globals.css +66 -0
- package/package.json +1 -1
- package/src/resources/globals.css +66 -0
|
@@ -2221,6 +2221,7 @@ li.header-li-px {
|
|
|
2221
2221
|
justify-content: center;
|
|
2222
2222
|
} */
|
|
2223
2223
|
|
|
2224
|
+
|
|
2224
2225
|
.auth-container {
|
|
2225
2226
|
min-width: 525px;
|
|
2226
2227
|
padding: 54px;
|
|
@@ -2446,6 +2447,71 @@ li.header-li-px {
|
|
|
2446
2447
|
border: none !important;
|
|
2447
2448
|
}
|
|
2448
2449
|
|
|
2450
|
+
.solid-global-search-element {
|
|
2451
|
+
border: 1px solid #d1d5db;
|
|
2452
|
+
border-radius: 8px;
|
|
2453
|
+
display: flex;
|
|
2454
|
+
align-items: center;
|
|
2455
|
+
padding-left: 3px;
|
|
2456
|
+
padding-right: 0;
|
|
2457
|
+
padding-top: 3px;
|
|
2458
|
+
padding-bottom: 3px;
|
|
2459
|
+
overflow: hidden;
|
|
2460
|
+
height: 32px;
|
|
2461
|
+
}
|
|
2462
|
+
|
|
2463
|
+
.custom-filter-button {
|
|
2464
|
+
border-right: none;
|
|
2465
|
+
border-top: none;
|
|
2466
|
+
border-bottom: none;
|
|
2467
|
+
position: absolute;
|
|
2468
|
+
right: 0;
|
|
2469
|
+
top: 50%;
|
|
2470
|
+
transform: translateY(-50%);
|
|
2471
|
+
border-left: 1px solid #d1d5db;
|
|
2472
|
+
border-radius: 0;
|
|
2473
|
+
height: 35.5px;
|
|
2474
|
+
}
|
|
2475
|
+
|
|
2476
|
+
.solid-global-search-element ul {
|
|
2477
|
+
display: flex;
|
|
2478
|
+
align-items: center;
|
|
2479
|
+
gap: 8px;
|
|
2480
|
+
margin: 0;
|
|
2481
|
+
list-style-type: none;
|
|
2482
|
+
padding: 0;
|
|
2483
|
+
}
|
|
2484
|
+
|
|
2485
|
+
.custom-filter-chip-type {
|
|
2486
|
+
display: flex;
|
|
2487
|
+
padding: 0.25rem 0.5rem !important;
|
|
2488
|
+
color: var(--primary-color) !important;
|
|
2489
|
+
font-size: 0.875rem !important;
|
|
2490
|
+
border-radius: 0.375rem !important;
|
|
2491
|
+
background: #FBF5FF !important;
|
|
2492
|
+
height: 100%;
|
|
2493
|
+
}
|
|
2494
|
+
|
|
2495
|
+
.search-filter-chip-type {
|
|
2496
|
+
display: flex;
|
|
2497
|
+
font-size: 0.875rem !important;
|
|
2498
|
+
background: #FBF5FF;
|
|
2499
|
+
border-radius: 0.375rem;
|
|
2500
|
+
padding: 0.417rem 0.5rem !important;
|
|
2501
|
+
gap: 8px;
|
|
2502
|
+
}
|
|
2503
|
+
|
|
2504
|
+
.solid-global-search-element li {}
|
|
2505
|
+
|
|
2506
|
+
.solid-global-search-element input {
|
|
2507
|
+
padding-top: 0;
|
|
2508
|
+
padding-left: 3;
|
|
2509
|
+
padding-bottom: 0;
|
|
2510
|
+
padding-right: 40px;
|
|
2511
|
+
border: none;
|
|
2512
|
+
max-width: 160px !important;
|
|
2513
|
+
}
|
|
2514
|
+
|
|
2449
2515
|
.solid-global-search-filter .p-dialog-content {
|
|
2450
2516
|
padding: 0;
|
|
2451
2517
|
border-radius: 0.25rem;
|
package/package.json
CHANGED
|
@@ -2221,6 +2221,7 @@ li.header-li-px {
|
|
|
2221
2221
|
justify-content: center;
|
|
2222
2222
|
} */
|
|
2223
2223
|
|
|
2224
|
+
|
|
2224
2225
|
.auth-container {
|
|
2225
2226
|
min-width: 525px;
|
|
2226
2227
|
padding: 54px;
|
|
@@ -2446,6 +2447,71 @@ li.header-li-px {
|
|
|
2446
2447
|
border: none !important;
|
|
2447
2448
|
}
|
|
2448
2449
|
|
|
2450
|
+
.solid-global-search-element {
|
|
2451
|
+
border: 1px solid #d1d5db;
|
|
2452
|
+
border-radius: 8px;
|
|
2453
|
+
display: flex;
|
|
2454
|
+
align-items: center;
|
|
2455
|
+
padding-left: 3px;
|
|
2456
|
+
padding-right: 0;
|
|
2457
|
+
padding-top: 3px;
|
|
2458
|
+
padding-bottom: 3px;
|
|
2459
|
+
overflow: hidden;
|
|
2460
|
+
height: 32px;
|
|
2461
|
+
}
|
|
2462
|
+
|
|
2463
|
+
.custom-filter-button {
|
|
2464
|
+
border-right: none;
|
|
2465
|
+
border-top: none;
|
|
2466
|
+
border-bottom: none;
|
|
2467
|
+
position: absolute;
|
|
2468
|
+
right: 0;
|
|
2469
|
+
top: 50%;
|
|
2470
|
+
transform: translateY(-50%);
|
|
2471
|
+
border-left: 1px solid #d1d5db;
|
|
2472
|
+
border-radius: 0;
|
|
2473
|
+
height: 35.5px;
|
|
2474
|
+
}
|
|
2475
|
+
|
|
2476
|
+
.solid-global-search-element ul {
|
|
2477
|
+
display: flex;
|
|
2478
|
+
align-items: center;
|
|
2479
|
+
gap: 8px;
|
|
2480
|
+
margin: 0;
|
|
2481
|
+
list-style-type: none;
|
|
2482
|
+
padding: 0;
|
|
2483
|
+
}
|
|
2484
|
+
|
|
2485
|
+
.custom-filter-chip-type {
|
|
2486
|
+
display: flex;
|
|
2487
|
+
padding: 0.25rem 0.5rem !important;
|
|
2488
|
+
color: var(--primary-color) !important;
|
|
2489
|
+
font-size: 0.875rem !important;
|
|
2490
|
+
border-radius: 0.375rem !important;
|
|
2491
|
+
background: #FBF5FF !important;
|
|
2492
|
+
height: 100%;
|
|
2493
|
+
}
|
|
2494
|
+
|
|
2495
|
+
.search-filter-chip-type {
|
|
2496
|
+
display: flex;
|
|
2497
|
+
font-size: 0.875rem !important;
|
|
2498
|
+
background: #FBF5FF;
|
|
2499
|
+
border-radius: 0.375rem;
|
|
2500
|
+
padding: 0.417rem 0.5rem !important;
|
|
2501
|
+
gap: 8px;
|
|
2502
|
+
}
|
|
2503
|
+
|
|
2504
|
+
.solid-global-search-element li {}
|
|
2505
|
+
|
|
2506
|
+
.solid-global-search-element input {
|
|
2507
|
+
padding-top: 0;
|
|
2508
|
+
padding-left: 3;
|
|
2509
|
+
padding-bottom: 0;
|
|
2510
|
+
padding-right: 40px;
|
|
2511
|
+
border: none;
|
|
2512
|
+
max-width: 160px !important;
|
|
2513
|
+
}
|
|
2514
|
+
|
|
2449
2515
|
.solid-global-search-filter .p-dialog-content {
|
|
2450
2516
|
padding: 0;
|
|
2451
2517
|
border-radius: 0.25rem;
|