-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(procedures): implemented gdpr form
ref:MANAGER-15317 Signed-off-by: Omar ALKABOUSS MOUSSANA <[email protected]>
- Loading branch information
Omar ALKABOUSS MOUSSANA
committed
Oct 16, 2024
1 parent
4598d61
commit b258ba2
Showing
11 changed files
with
144 additions
and
260 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
83 changes: 0 additions & 83 deletions
83
packages/manager/apps/procedures/src/components/Select/Select.component.tsx
This file was deleted.
Oops, something went wrong.
62 changes: 0 additions & 62 deletions
62
packages/manager/apps/procedures/src/components/TextArea/TextArea.component.tsx
This file was deleted.
Oops, something went wrong.
67 changes: 0 additions & 67 deletions
67
packages/manager/apps/procedures/src/components/TextInput/TextInput.component.tsx
This file was deleted.
Oops, something went wrong.
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
26 changes: 26 additions & 0 deletions
26
packages/manager/apps/procedures/src/pages/rgdp/rgdpForm/RGDPForm.style.css
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,26 @@ | ||
/* TODO: | ||
It is not clean to apply CSS for ODS components. It was added because Tailwind CSS overrides the border of ODS inputs. | ||
The best solution is to configure Tailwind CSS with this option: corePlugins: { | ||
preflight: false, | ||
}, | ||
However, | ||
some components on the MFA page are not in ODS. Consider converting these components to ODS in the future. | ||
*/ | ||
|
||
osds-input[size='md'] { | ||
border-width: var(--ods-size-input-md-border-width); | ||
} | ||
|
||
osds-input[color='primary'] { | ||
border-color: var(--ods-color-primary-200); | ||
} | ||
|
||
osds-input[color='error'] { | ||
border-color: var(--ods-color-error-500); | ||
} | ||
|
||
.ods-error { | ||
border-color: var(--ods-color-error-500) !important; | ||
} |
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
Oops, something went wrong.