-
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
base: develop
Are you sure you want to change the base?
Changes from 7 commits
96602a6
8f34209
c790c99
045a8d6
d615a30
2088552
90f78e4
a30aebe
f89f1a8
de52c89
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -91,6 +91,16 @@ | |
color: #aeaeae; | ||
} | ||
|
||
.cardPurposeAndStatusFont { | ||
font-size: 1.1rem; | ||
color: #555; | ||
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. Can we use a predefined color from 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. All the colors that I used are not present in variables.css. I have taken them from my site. |
||
} | ||
.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: #041187; | ||
Saitharun279 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
padding: 0.5rem; | ||
height: 2.5rem; | ||
width: 10rem; | ||
transition: 250ms ease-in-out; | ||
} | ||
|
||
.taskStatusUpdate:hover { | ||
background-color: #041187; | ||
Saitharun279 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
color: #ffffff; | ||
} | ||
|
||
.taskTagLevelWrapper { | ||
display: flex; | ||
padding-top: 0.5rem; | ||
|
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.
setEditedTaskDetails
after the API call is successful preventing any inconsistent states?setTimeout
from thefinally
block?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.
Will update in next commit.
But not sure about removing setTimeout, will check and update that as well.
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.
Done