@bigbinary/neeto-team-members-frontend 2.2.4 → 2.2.7

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/main.css DELETED
@@ -1,350 +0,0 @@
1
- :root {
2
- --ntm-roles-table-default-scroll: 15px;
3
- }
4
-
5
- .ntm-dropdown__item {
6
- background-color: transparent !important;
7
- padding: 0 !important;
8
- }
9
-
10
- .ntm-dropdown__button {
11
- border-radius: 0 !important;
12
- font-weight: 400;
13
- min-height: 34px;
14
- min-width: 150px;
15
- text-align: left;
16
- width: 100%;
17
- }
18
-
19
- .ntm-scrollbar__inner {
20
- width: 100%;
21
- height: 200px;
22
- }
23
- .ntm-scrollbar__outer {
24
- position: "absolute";
25
- top: 0px;
26
- left: 0px;
27
- width: 200px;
28
- height: 150px;
29
- overflow: "hidden";
30
- visibility: "hidden";
31
- }
32
-
33
- .ntm-empty-state {
34
- align-items: center;
35
- display: flex;
36
- height: 100%;
37
- justify-content: center;
38
- width: 100%;
39
- }
40
- .ntm-empty-state__image {
41
- display: flex;
42
- justify-content: center;
43
- align-items: center;
44
- margin-bottom: 2rem;
45
- }
46
- .ntm-empty-state__title--with-action-block {
47
- margin-bottom: 1rem;
48
- }
49
- .ntm-empty-state__action-block {
50
- display: flex;
51
- justify-content: center;
52
- }
53
-
54
- .ntm-members {
55
- overflow: auto;
56
- width: 100%;
57
- background-color: #ffffff;
58
- }
59
- .ntm-members-wrapper {
60
- display: flex;
61
- }
62
- .ntm-members-page-loader {
63
- width: 100%;
64
- height: 100vh;
65
- }
66
- .ntm-members__table-wrapper {
67
- height: calc(100vh - 205px);
68
- width: 100%;
69
- }
70
- .ntm-members-table__column {
71
- display: flex;
72
- align-items: center;
73
- gap: 0.5rem;
74
- }
75
- .ntm-members-modal__header {
76
- margin-bottom: 0.5rem;
77
- }
78
- .ntm-members-modal__body > * + * {
79
- margin-top: 1rem;
80
- }
81
- .ntm-members-modal__footer {
82
- display: flex;
83
- gap: 0.5rem;
84
- }
85
-
86
- .ntm-roles-header {
87
- border-bottom: 1px solid #d8dcde;
88
- }
89
-
90
- .ntm-roles-table__wrapper {
91
- width: 100%;
92
- height: calc(100vh - 80px);
93
- display: flex;
94
- background-color: #ffffff;
95
- }
96
- .ntm-roles-table__wrapper .ntm-roles-table__sidebar {
97
- width: 396px;
98
- min-width: 396px;
99
- border-right: thin solid #d8dcde;
100
- }
101
- .ntm-roles-table__wrapper .ntm-roles-table__sidebar .ntm-roles-table-sidebar__search {
102
- padding: 24px 24px 16px;
103
- height: 72px;
104
- }
105
- .ntm-roles-table__wrapper .ntm-roles-table__sidebar .ntm-roles-table-sidebar__list {
106
- height: calc(
107
- 100vh - 80px - 72px -
108
- var(--ntm-roles-table-default-scroll)
109
- );
110
- overflow-y: auto;
111
- padding-left: 24px;
112
- }
113
- .ntm-roles-table__wrapper .ntm-roles-table__sidebar .ntm-roles-table-sidebar__list .ntm-roles-table-sidebar__list-item {
114
- display: flex;
115
- justify-content: space-between;
116
- align-items: center;
117
- padding: 12px 8px;
118
- min-height: 48px;
119
- }
120
- .ntm-roles-table__wrapper .ntm-roles-table__sidebar .ntm-roles-table-sidebar__list .ntm-roles-table-sidebar__list-item.ntm-roles-table-sidebar__list-item--highlighted {
121
- background-color: #eaf3fc;
122
- padding: 12px 8px;
123
- }
124
- .ntm-roles-table__wrapper .ntm-roles-table__sidebar .ntm-roles-table-sidebar__list .ntm-roles-table-sidebar__list-item:not(.ntm-roles-table-sidebar__list-item--highlighted) {
125
- border-bottom: thin solid #d8dcde;
126
- }
127
- .ntm-roles-table__wrapper .ntm-roles-table__columns {
128
- width: calc(
129
- 100vw - 64px - 396px - 24px
130
- );
131
- overflow: hidden;
132
- }
133
- .ntm-roles-table__wrapper .ntm-roles-table__columns .ntm-roles-table__cell {
134
- width: 100%;
135
- min-width: 200px;
136
- min-height: 48px;
137
- padding: 12px 8px;
138
- display: flex;
139
- justify-content: center;
140
- align-items: center;
141
- border-right: thin solid #d8dcde;
142
- }
143
- .ntm-roles-table__wrapper .ntm-roles-table__columns .ntm-roles-table-cell__checkbox-wrapper {
144
- position: absolute;
145
- height: 1rem;
146
- width: 1rem;
147
- margin: auto;
148
- z-index: 10;
149
- }
150
- .ntm-roles-table__wrapper .ntm-roles-table__columns .ntm-roles-table-cell__checkbox {
151
- z-index: 10;
152
- }
153
- .ntm-roles-table__wrapper .ntm-roles-table__columns .ntm-roles-table__header {
154
- display: flex;
155
- align-items: center;
156
- overflow-x: auto;
157
- }
158
- .ntm-roles-table__wrapper .ntm-roles-table__columns .ntm-roles-table__header .ntm-roles-table__cell {
159
- height: 72px;
160
- padding-left: 24px;
161
- }
162
- .ntm-roles-table__wrapper .ntm-roles-table__columns .ntm-roles-table__header .ntm-roles-table-header-cell__container {
163
- display: flex;
164
- justify-content: space-between;
165
- align-items: center;
166
- width: 100%;
167
- gap: 1rem;
168
- overflow: hidden;
169
- }
170
- .ntm-roles-table__wrapper .ntm-roles-table__columns .ntm-roles-table__header .ntm-roles-table-header__role-name {
171
- overflow: hidden;
172
- text-overflow: ellipsis;
173
- white-space: nowrap;
174
- }
175
- .ntm-roles-table__wrapper .ntm-roles-table__columns .ntm-roles-table__rows {
176
- width: 100%;
177
- height: calc(
178
- 100vh - 80px - 72px -
179
- var(--ntm-roles-table-default-scroll)
180
- );
181
- overflow-y: auto;
182
- scrollbar-width: none;
183
- }
184
- .ntm-roles-table__wrapper .ntm-roles-table__columns .ntm-roles-table__rows::-webkit-scrollbar {
185
- width: 0px;
186
- height: 0px;
187
- }
188
- .ntm-roles-table__wrapper .ntm-roles-table__columns .ntm-roles-table__rows::-webkit-scrollbar-thumb {
189
- background: #d8dcde;
190
- border-radius: 50px;
191
- }
192
- .ntm-roles-table__wrapper .ntm-roles-table__columns .ntm-roles-table__rows::-webkit-scrollbar-thumb:hover {
193
- background: #939ea4;
194
- border-radius: 50px;
195
- }
196
- .ntm-roles-table__wrapper .ntm-roles-table__columns .ntm-roles-table__rows::-webkit-scrollbar-track {
197
- background: #d8dcde;
198
- }
199
- .ntm-roles-table__wrapper .ntm-roles-table__columns .ntm-roles-table__rows .ntm-roles-table__row {
200
- display: flex;
201
- align-items: center;
202
- }
203
- .ntm-roles-table__wrapper .ntm-roles-table__columns .ntm-roles-table__rows .ntm-roles-table__row .ntm-roles-table__cell {
204
- overflow: hidden;
205
- position: relative;
206
- }
207
- .ntm-roles-table__wrapper .ntm-roles-table__columns .ntm-roles-table__rows .ntm-roles-table__row .ntm-roles-table__cell p {
208
- opacity: 0;
209
- width: 340px;
210
- min-width: 340px;
211
- }
212
- .ntm-roles-table__wrapper .ntm-roles-table__columns .ntm-roles-table__rows .ntm-roles-table__row.ntm-roles-table__row--highlighted .ntm-roles-table__cell {
213
- background-color: #eaf3fc;
214
- }
215
- .ntm-roles-table__wrapper .ntm-roles-table__columns .ntm-roles-table__rows .ntm-roles-table__row:not(.ntm-roles-table__row--highlighted) .ntm-roles-table__cell {
216
- border-bottom: thin solid #d8dcde;
217
- }
218
-
219
- .ntm-roles-table-sidebar__drop-down-button {
220
- color: #68737d;
221
- cursor: pointer;
222
- }
223
-
224
- .ntm-roles-modal__body > * + * {
225
- margin-top: 1rem;
226
- }
227
- .ntm-roles-modal__footer {
228
- display: flex;
229
- gap: 0.5rem;
230
- }
231
-
232
- .ntm-roles-pane__body {
233
- width: 100%;
234
- margin-bottom: 1.5rem;
235
- }
236
- .ntm-roles-pane__body-wrapper > * + * {
237
- margin-top: 1rem;
238
- }
239
- .ntm-roles-pane__body > * + * {
240
- margin-top: 1.5rem;
241
- }
242
- .ntm-roles-pane__footer {
243
- display: flex;
244
- gap: 0.5rem;
245
- }
246
-
247
- .ntm-roles-permission > * + * {
248
- margin: 0.5rem;
249
- }
250
- .ntm-roles-permission__heading {
251
- color: #87929d;
252
- text-transform: uppercase;
253
- }
254
- .ntm-roles-permission__card {
255
- background-color: white;
256
- box-shadow: 0px 3px 12px -1px rgba(28, 52, 84, 0.12), 0px 2px 4px -1px rgba(28, 55, 90, 0.08);
257
- border-radius: 0.125rem;
258
- border-width: 1px;
259
- border-color: #d8dcde;
260
- cursor: pointer;
261
- display: flex;
262
- gap: 0.75rem;
263
- padding: 1rem 0.75rem;
264
- }
265
- .ntm-roles-permission__card--description {
266
- flex-grow: 1;
267
- }
268
- .ntm-roles-permission__card--checkbox {
269
- padding: 0 0.5rem;
270
- }
271
-
272
- .ntm-invitations__wrapper .ntm-invitations__header {
273
- height: 28px;
274
- }
275
- .ntm-invitations__wrapper .ntm-invitations__body {
276
- display: flex;
277
- flex-direction: column;
278
- }
279
- .ntm-invitations__wrapper .ntm-invitations__body > * {
280
- margin-bottom: 8px;
281
- }
282
- .ntm-invitations__wrapper .ntm-invitations__body-header {
283
- display: flex;
284
- align-items: center;
285
- justify-content: space-between;
286
- }
287
- .ntm-invitations__wrapper .ntm-invitations__body-header div {
288
- display: flex;
289
- align-items: center;
290
- }
291
- .ntm-invitations__wrapper .ntm-invitations__body-header div p {
292
- margin-right: 8px;
293
- }
294
- .ntm-invitations__wrapper .ntm-invitations__body .ntm-invitations__dnd {
295
- color: #49545c;
296
- background: #f8f9f9;
297
- padding: 20px 40px;
298
- border: 1px dashed;
299
- border-radius: 6px;
300
- cursor: pointer;
301
- counter-reset: dnd-counter;
302
- }
303
- .ntm-invitations__wrapper .ntm-invitations__body .ntm-invitations__dnd h3 {
304
- margin-bottom: 8px;
305
- text-align: center !important;
306
- }
307
- .ntm-invitations__wrapper .ntm-invitations__body .ntm-invitations__dnd p::before {
308
- counter-increment: dnd-counter;
309
- content: counter(dnd-counter) ". ";
310
- }
311
- .ntm-invitations__wrapper .ntm-invitations__body .ntm-invitations__submit-btn {
312
- align-self: end !important;
313
- margin-top: 16px;
314
- }
315
- .ntm-invitations__wrapper .ntm-invitations__footer {
316
- background: #f8f9f9;
317
- margin-top: 24px;
318
- }
319
- .ntm-invitations__wrapper .ntm-invitations__footer .ntm-invitations__invite-link {
320
- display: flex;
321
- align-items: center;
322
- justify-content: space-between;
323
- }
324
- .ntm-invitations__wrapper .ntm-invitations__footer .ntm-invitations__invite-link-instructions {
325
- display: flex;
326
- flex-direction: column;
327
- width: 50%;
328
- }
329
- .ntm-invitations__wrapper .ntm-invitations__footer .ntm-invitations__invite-link-instructions h4 {
330
- margin-bottom: 8px;
331
- }
332
- .ntm-invitations__wrapper .ntm-invitations__footer .ntm-invitations__invite-link-btns {
333
- display: flex;
334
- }
335
- .ntm-invitations__wrapper .ntm-invitations__footer .ntm-invitations__invite-link-btns > button:first-child {
336
- margin-right: 8px;
337
- }
338
- .ntm-invitations__wrapper .ntm-invitations__footer .ntm-invitations__table {
339
- max-height: 192px;
340
- }
341
- .ntm-invitations__wrapper .ntm-invitations__footer .ntm-invitations__table-filename {
342
- display: flex;
343
- align-items: center;
344
- }
345
- .ntm-invitations__wrapper .ntm-invitations__footer .ntm-invitations__table-filename svg {
346
- margin-right: 4px;
347
- }
348
- .ntm-invitations__wrapper .ntm-invitations__footer .ntm-invitations__table-status {
349
- text-transform: capitalize;
350
- }