Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Figma: People Page Violates The Figma Style Guide #3367

Closed
Closed
Show file tree
Hide file tree
Changes from 41 commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
997e7cb
gg
abhassen44 Dec 30, 2024
c873b7f
hh
abhassen44 Dec 30, 2024
4ba5d8a
Merge branch 'develop-postgres' of https://github.com/PalisadoesFound…
abhassen44 Dec 30, 2024
59dfb45
Merge branch 'develop-postgres' into feat/css
abhassen44 Dec 30, 2024
c28c3d8
refreshed
abhassen44 Dec 30, 2024
a377c16
gg
abhassen44 Jan 14, 2025
e0f3c6c
test
abhassen44 Jan 14, 2025
3a4eb6b
resolving-conflict
abhassen44 Jan 14, 2025
7959fbb
resolving-conflict
abhassen44 Jan 14, 2025
c597c38
resolving-design
abhassen44 Jan 14, 2025
73d0d71
resolving-design
abhassen44 Jan 14, 2025
5ad1953
css
abhassen44 Jan 14, 2025
762b6a4
css
abhassen44 Jan 14, 2025
ba82b69
css
abhassen44 Jan 14, 2025
d7ad796
css
abhassen44 Jan 14, 2025
e5c8b87
css
abhassen44 Jan 14, 2025
ef42c3a
css
abhassen44 Jan 14, 2025
2e2828b
code-rabit-reconfigaring
abhassen44 Jan 14, 2025
0a7f31e
code-rabit-reconfigaring
abhassen44 Jan 14, 2025
929ea91
code-rabit-reconfigaring
abhassen44 Jan 16, 2025
d437249
test
abhassen44 Jan 16, 2025
39a0658
test
abhassen44 Jan 16, 2025
a3cf918
test
abhassen44 Jan 16, 2025
5ce3410
test
abhassen44 Jan 16, 2025
ef2fa18
test
abhassen44 Jan 16, 2025
542195b
test
abhassen44 Jan 16, 2025
19f9288
setting
abhassen44 Jan 18, 2025
6295d17
about
abhassen44 Jan 19, 2025
a077c6c
about
abhassen44 Jan 19, 2025
bb7b6d5
Merge branch 'feat/css' into develop-postgres
abhassen44 Jan 19, 2025
285f738
refactor
abhassen44 Jan 19, 2025
fd6d9de
refactor
abhassen44 Jan 19, 2025
8ac942d
ref
abhassen44 Jan 20, 2025
ec2f700
Merge branch 'develop-postgres' of https://github.com/PalisadoesFound…
abhassen44 Jan 20, 2025
af3b3e6
ref2
abhassen44 Jan 20, 2025
0db1b07
Update src/assets/css/app.css
abhassen44 Jan 20, 2025
1375c83
Update src/style/app.module.css
abhassen44 Jan 20, 2025
17f0922
Update src/screens/OrganizationPeople/AddMember.tsx
abhassen44 Jan 20, 2025
5f24959
Update pre-commit
abhassen44 Jan 20, 2025
3168cfd
ref3
abhassen44 Jan 20, 2025
b6b5be7
Update pre-commit
abhassen44 Jan 20, 2025
0cc5fc6
ref4
abhassen44 Jan 21, 2025
4fbf767
Merge branch 'ref/css2' of https://github.com/abhassen44/talawa-admin…
abhassen44 Jan 21, 2025
eabfd4c
ref4
abhassen44 Jan 21, 2025
c5acd11
Update pre-commit
abhassen44 Jan 21, 2025
02b76b0
Merge branch 'develop-postgres' into ref/css2
abhassen44 Jan 21, 2025
2c5a9e4
ref4
abhassen44 Jan 21, 2025
6487d16
ref4
abhassen44 Jan 21, 2025
fd2d713
Update pre-commit
abhassen44 Jan 21, 2025
0da1df0
ref4
abhassen44 Jan 21, 2025
160abc6
Merge branch 'ref/css2' of https://github.com/abhassen44/talawa-admin…
abhassen44 Jan 21, 2025
76560e6
ref4
abhassen44 Jan 21, 2025
7d4f064
Update pre-commit
abhassen44 Jan 21, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions public/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -315,8 +315,8 @@
"confirmPassword": "confirmPassword",
"create": "create",
"cancel": "cancel",
"user": "user",
"profile": "profile"
"user": "User",
"profile": "Profile"
},
"organizationTags": {
"title": "Organization Tags",
Expand Down
71 changes: 36 additions & 35 deletions src/assets/css/app.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components/CheckIn/TableRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export const TableRow = ({
inputs.push({ name: data.name.trim() });
const pdf = await generate({ template: tagTemplate, inputs });
// istanbul ignore next
const blob = new Blob([pdf.buffer], { type: 'application/pdf' });
const blob = new Blob([pdf], { type: 'application/pdf' });
// istanbul ignore next
const url = URL.createObjectURL(blob);
// istanbul ignore next
Expand Down
10 changes: 5 additions & 5 deletions src/components/CollapsibleDropdown/CollapsibleDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,21 +43,21 @@ const collapsibleDropdown = ({
<>
<Button
variant={showDropdown ? 'success' : ''}
className={showDropdown ? 'text-white' : 'text-secondary'}
className={showDropdown ? 'text-black' : 'text-secondary'}
onClick={(): void => setShowDropdown(!showDropdown)}
aria-expanded={showDropdown}
data-testid="collapsible-dropdown"
>
<div className={styles.iconWrapper}>
<IconComponent
name={name}
fill={showDropdown ? 'var(--bs-white)' : 'var(--bs-secondary)'}
fill={showDropdown ? 'var(--bs-black)' : 'var(--bs-secondary)'}
/>
</div>
{tCommon(name)}
<i
className={`ms-auto fa
${showDropdown ? 'var(--bs-white)' : 'var(--bs-secondary)'}
${showDropdown ? 'var(--bs-black)' : 'var(--bs-secondary)'}
${showDropdown ? 'fa-chevron-up' : 'fa-chevron-down'}
`}
/>
Expand All @@ -74,7 +74,7 @@ const collapsibleDropdown = ({
variant={isActive === true ? 'success' : 'light'}
size="sm"
className={`${styles.collapseBtn} ${
isActive === true ? 'text-white' : 'text-secondary'
isActive === true ? 'text-black' : 'text-secondary'
}`}
onClick={(): void => {
navigate(url);
Expand All @@ -88,7 +88,7 @@ const collapsibleDropdown = ({
<div className="ms-auto">
<i
className={`fa me-2 fa-chevron-right ${
isActive === true ? 'text-white' : 'text-secondary'
isActive === true ? 'text-black' : 'text-secondary'
}`}
/>
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/components/LeftDrawer/LeftDrawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,15 @@ const leftDrawer = ({
<Button
variant={isActive === true ? 'success' : ''}
className={`${
isActive === true ? 'text-white' : 'text-secondary'
isActive === true ? 'text-black' : 'text-secondary'
}`}
data-testid="rolesBtn"
>
<div className={styles.iconWrapper}>
<RolesIcon
fill={`${
isActive === true
? 'var(--bs-white)'
? 'var(--bs-black)'
: 'var(--bs-secondary)'
}`}
abhassen44 marked this conversation as resolved.
Show resolved Hide resolved
/>
Expand All @@ -118,7 +118,7 @@ const leftDrawer = ({
<Button
variant={isActive === true ? 'success' : ''}
className={`${
isActive === true ? 'text-white' : 'text-secondary'
isActive === true ? 'text-black' : 'text-secondary'
}`}
data-testid="communityProfileBtn"
>
Expand Down
Loading
Loading