generated from Real-Dev-Squad/website-template
-
Notifications
You must be signed in to change notification settings - Fork 165
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
feat(1263): Add purpose & status to task card, based on task card in website-my #1319
Open
Saitharun279
wants to merge
10
commits into
Real-Dev-Squad:develop
Choose a base branch
from
Saitharun279:feature/issue#1263-purpose_status
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+269
−27
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
96602a6
feat: #1263 Added code changes for purpose field in task card
Saitharun279 8f34209
feat: Real-Dev-Squad#1263 | Added status field in Task Card
Saitharun279 c790c99
feat | issue#1263 prettier-fix
Saitharun279 045a8d6
feat | issue#1263 Added feature flag
Saitharun279 d615a30
Merge branch 'develop' into feature/issue#1263-purpose_status
Saitharun279 2088552
Merge branch 'develop' into feature/issue#1263-purpose_status
Saitharun279 90f78e4
feat:issue#1263 | Added unit tests
Saitharun279 a30aebe
feat/#1263 | Used existing css variables
Saitharun279 f89f1a8
feat/#1263 | Removed percentage check and renamed variable
Saitharun279 de52c89
feat:#1262 | Modifed task status update to use try catch and toast me…
Saitharun279 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
|
@@ -91,6 +91,16 @@ | |
color: #aeaeae; | ||
} | ||
|
||
.cardPurposeAndStatusFont { | ||
font-size: 1.1rem; | ||
color: #555; | ||
} | ||
.cardPurposeText { | ||
padding: 8px; | ||
color: #aeaeae; | ||
font-size: 1rem; | ||
} | ||
|
||
.cardStatusFont { | ||
font-size: 1.3rem; | ||
font-weight: 500; | ||
|
@@ -247,10 +257,37 @@ | |
justify-content: space-between; | ||
} | ||
|
||
.taskStatusDateAndPurposeContainer { | ||
display: grid; | ||
align-items: baseline; | ||
grid-template-columns: 2fr 3fr; | ||
gap: 2rem; | ||
grid-auto-flow: column; | ||
margin-bottom: 1rem; | ||
} | ||
|
||
.taskStatusEditMode { | ||
margin-top: 0.8rem; | ||
} | ||
|
||
.taskStatusUpdate { | ||
border: 1px solid #000000b3; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Didn't find any existing css variables for this one. |
||
border-radius: 4px; | ||
font-size: inherit; | ||
font-weight: bolder; | ||
background-color: transparent; | ||
color: $theme-primary-alt; | ||
padding: 0.5rem; | ||
height: 2.5rem; | ||
width: 10rem; | ||
transition: 250ms ease-in-out; | ||
} | ||
|
||
.taskStatusUpdate:hover { | ||
background-color: $theme-primary-alt; | ||
color: #ffffff; | ||
} | ||
|
||
.taskTagLevelWrapper { | ||
display: flex; | ||
padding-top: 0.5rem; | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we use a predefined color from
variables.scss
here?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All the colors that I used are not present in variables.css. I have taken them from my site.
should i add them in variables.scss ?