@djb25/digit-ui-css 1.0.75 → 1.0.76
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/index.css +1 -1
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/EkycAssign.scss +1 -1
- package/src/components/actionbar.scss +3 -7
- package/src/components/buttons.scss +5 -0
- package/src/components/multiSelectDropdown.scss +21 -0
- package/src/pages/employee/inbox.scss +12 -1
package/package.json
CHANGED
|
@@ -10,14 +10,14 @@
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.menu-wrap {
|
|
13
|
-
@apply absolute bg-white text-left mb-xs z-30 cursor-pointer;
|
|
13
|
+
@apply absolute bg-white text-left mb-xs z-30 cursor-pointer rounded-md;
|
|
14
14
|
bottom: 45px;
|
|
15
15
|
box-shadow: rgba(0, 0, 0, 0.14) 0 8px 10px 1px, rgba(0, 0, 0, 0.12) 0 3px 14px 2px, rgba(0, 0, 0, 0.2) 0 5px 5px -3px;
|
|
16
16
|
width: calc(100% - 16px);
|
|
17
17
|
right: 8px;
|
|
18
18
|
|
|
19
19
|
div {
|
|
20
|
-
@apply
|
|
20
|
+
@apply p-sm text-body-l rounded-xl text-text-primary;
|
|
21
21
|
|
|
22
22
|
&:hover {
|
|
23
23
|
@apply bg-grey-mid w-full;
|
|
@@ -57,10 +57,6 @@
|
|
|
57
57
|
margin-bottom: 30px;
|
|
58
58
|
@apply fixed bottom-0 bg-white py-sm pr-lg text-right;
|
|
59
59
|
|
|
60
|
-
div {
|
|
61
|
-
width: calc(100% - 16px);
|
|
62
|
-
}
|
|
63
|
-
|
|
64
60
|
.menu-wrap {
|
|
65
61
|
bottom: 45px;
|
|
66
62
|
top: unset;
|
|
@@ -70,7 +66,7 @@
|
|
|
70
66
|
right: 24px;
|
|
71
67
|
|
|
72
68
|
div {
|
|
73
|
-
@apply
|
|
69
|
+
@apply text-body-l text-text-primary;
|
|
74
70
|
|
|
75
71
|
&:hover {
|
|
76
72
|
@apply bg-grey-mid w-full;
|
|
@@ -88,3 +88,24 @@
|
|
|
88
88
|
}
|
|
89
89
|
}
|
|
90
90
|
}
|
|
91
|
+
|
|
92
|
+
.selected-zones {
|
|
93
|
+
display: flex;
|
|
94
|
+
flex-wrap: wrap;
|
|
95
|
+
gap: 8px;
|
|
96
|
+
margin-top: 12px;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.selected-zone-chip {
|
|
100
|
+
display: inline-flex;
|
|
101
|
+
align-items: center;
|
|
102
|
+
padding: 6px 12px;
|
|
103
|
+
background: #eef6ff;
|
|
104
|
+
color: #0b5ed7;
|
|
105
|
+
border: 1px solid #cfe2ff;
|
|
106
|
+
border-radius: 16px;
|
|
107
|
+
font-size: 13px;
|
|
108
|
+
font-weight: 500;
|
|
109
|
+
line-height: 1;
|
|
110
|
+
white-space: nowrap;
|
|
111
|
+
}
|
|
@@ -256,7 +256,7 @@
|
|
|
256
256
|
transition: all 0.2s ease;
|
|
257
257
|
|
|
258
258
|
&:hover {
|
|
259
|
-
background-color: #
|
|
259
|
+
background-color: #00497e;
|
|
260
260
|
color: #5d6774;
|
|
261
261
|
}
|
|
262
262
|
|
|
@@ -265,6 +265,17 @@
|
|
|
265
265
|
}
|
|
266
266
|
}
|
|
267
267
|
|
|
268
|
+
.popup-module-action-bar {
|
|
269
|
+
.generic-button {
|
|
270
|
+
&:hover {
|
|
271
|
+
color: #fff !important;
|
|
272
|
+
h2 {
|
|
273
|
+
color: #fff !important;
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
|
|
268
279
|
.clear-search,
|
|
269
280
|
.clear-search .link-label {
|
|
270
281
|
@apply border-focus text-focus;
|