@djb25/digit-ui-css 1.0.78 → 1.0.79

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@djb25/digit-ui-css",
3
- "version": "1.0.78",
3
+ "version": "1.0.79",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.css",
6
6
  "author": "satyam",
@@ -13,6 +13,25 @@
13
13
  gap: 8px;
14
14
  }
15
15
 
16
+ .clear-selected-btn {
17
+ height: 48px;
18
+ background: transparent;
19
+ border: none;
20
+ color: #1f5fa8;
21
+ font-size: 14px;
22
+ font-weight: 600;
23
+ cursor: pointer;
24
+ text-decoration: underline;
25
+ display: inline-flex;
26
+ align-items: center;
27
+ padding: 0 4px;
28
+ width: fit-content;
29
+
30
+ &:hover {
31
+ color: #0b2e5b;
32
+ }
33
+ }
34
+
16
35
  .form-control {
17
36
  height: 48px;
18
37
  width: 100%;
@@ -149,3 +149,25 @@
149
149
  }
150
150
  }
151
151
  }
152
+
153
+ /* WT Collapsible Sidebar Panel */
154
+ .wt-sidebar-panel {
155
+ flex-shrink: 0;
156
+ transition: width 0.25s ease, min-width 0.25s ease;
157
+ overflow: hidden;
158
+ display: flex;
159
+ flex-direction: column;
160
+ gap: 8px;
161
+
162
+ button:focus {
163
+ outline: none;
164
+ box-shadow: 0 0 0 2px rgba(11, 37, 89, 0.4);
165
+ }
166
+ }
167
+
168
+ /* Ensure the table content area can shrink in flexbox */
169
+ .inbox-container > .employee-form-content,
170
+ .inbox-container > div:last-child {
171
+ min-width: 0;
172
+ overflow: visible;
173
+ }
@@ -218,9 +218,10 @@
218
218
 
219
219
  .summary-cards-container {
220
220
  display: flex !important;
221
- gap: 12px;
221
+ gap: 10px;
222
222
  flex-wrap: wrap;
223
- width: "100%";
223
+ width: 100%;
224
+ min-width: 0;
224
225
  }
225
226
 
226
227
  .hover-button {