-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/cplp 3120/user bulk upload (#214)
- Loading branch information
1 parent
e716022
commit 7e7f814
Showing
15 changed files
with
766 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FirstName,LastName,Email | ||
Clark1,Kent1,[email protected] | ||
Clark2,Kent2,[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
141 changes: 141 additions & 0 deletions
141
src/components/overlays/AddMultipleUser/AddMultipleUser.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
.mb-20 { | ||
margin-bottom: 20px !important; | ||
} | ||
|
||
.addMultipleUsers { | ||
text-align: center !important; | ||
margin: 0 auto; | ||
|
||
.number { | ||
border: 1px solid #0f71cb; | ||
color: #0f71cb; | ||
border-radius: 50%; | ||
display: inline-block; | ||
width: 20px; | ||
height: 20px; | ||
line-height: 20px; | ||
text-align: center; | ||
font-size: 15px; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.secondStep { | ||
margin: 30px; | ||
|
||
.linkText { | ||
width: 100%; | ||
display: inline-block; | ||
} | ||
|
||
.editIcon { | ||
color: #0f71cb; | ||
cursor: pointer; | ||
} | ||
} | ||
} | ||
|
||
.uploadedFileMain { | ||
.fileDetailsSection { | ||
display: flex; | ||
|
||
.documentMain { | ||
display: flex; | ||
width: 50%; | ||
|
||
.documentIcon { | ||
color: #0f71cb; | ||
background-color: #dbe9f7; | ||
height: 50px; | ||
width: 50px; | ||
border-radius: 5px; | ||
|
||
.icon { | ||
margin: 14px; | ||
} | ||
.number { | ||
text-align: center; | ||
line-height: 50px; | ||
} | ||
} | ||
|
||
.documentName { | ||
margin: 10px 20px; | ||
} | ||
} | ||
} | ||
|
||
.roleDescLink { | ||
display: flex; | ||
font-size: 14px; | ||
text-decoration: none; | ||
} | ||
|
||
.rolesSection { | ||
display: grid; | ||
grid-template-columns: repeat(2, 1fr); | ||
} | ||
} | ||
|
||
.successSection { | ||
.uploadedDetailsSection { | ||
display: flex; | ||
|
||
.userDetailsMain { | ||
display: flex; | ||
width: 50%; | ||
|
||
.userSuccess { | ||
color: #5bc785; | ||
background-color: #f0f5d5; | ||
height: 50px; | ||
width: 50px; | ||
border-radius: 5px; | ||
} | ||
|
||
.userError { | ||
color: #e62722; | ||
background-color: #fee7e2; | ||
height: 50px; | ||
width: 50px; | ||
border-radius: 5px; | ||
} | ||
|
||
.number { | ||
text-align: center; | ||
line-height: 50px; | ||
} | ||
|
||
.detailLabel { | ||
margin: 10px 20px; | ||
} | ||
} | ||
} | ||
|
||
.errorUsersLabel { | ||
color: #da241e; | ||
margin-left: 10px; | ||
} | ||
|
||
table { | ||
max-height: 225px; | ||
overflow: auto; | ||
display: block; | ||
|
||
tbody { | ||
display: table; | ||
width: 100%; | ||
} | ||
} | ||
|
||
/* scrollbar width */ | ||
::-webkit-scrollbar { | ||
width: 5px; | ||
height: 10px; | ||
} | ||
|
||
/* scrollbar Handle */ | ||
::-webkit-scrollbar-thumb { | ||
background: #4d73d5; | ||
border-radius: 10px; | ||
} | ||
} |
Oops, something went wrong.