UI Improvements 0.11.1 (#5770)

*  UI Improvements 0.11.1

* Fix spacing between text and select box
This commit is contained in:
Sachin Chaurasiya 2022-06-30 12:52:56 +05:30 committed by GitHub
parent 17bfa5f2d2
commit 42ed776353
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 5 deletions

View File

@ -20,8 +20,8 @@
} }
.ingestion-rounder { .ingestion-rounder {
display: block; display: block;
width: 18px; width: 20px;
height: 18px; height: 20px;
border: 3px solid #d9ceee; border: 3px solid #d9ceee;
background: white; background: white;
border-radius: 50%; border-radius: 50%;
@ -38,7 +38,7 @@
.ingestion-rounder.completed::after { .ingestion-rounder.completed::after {
content: '\2713'; content: '\2713';
display: block; display: block;
margin-top: -5px; margin-top: -4px;
font-weight: 900; font-weight: 900;
color: #7147e8; color: #7147e8;
} }

View File

@ -655,7 +655,12 @@ const TaskDetailPage = () => {
<ColumnDetail column={columnObject} /> <ColumnDetail column={columnObject} />
<div className="tw-flex" data-testid="task-assignees"> <div className="tw-flex" data-testid="task-assignees">
<span className="tw-text-grey-muted ">Assignees:</span> <span
className={classNames('tw-text-grey-muted', {
'tw-self-center tw-mr-2': editAssignee,
})}>
Assignees:
</span>
{editAssignee ? ( {editAssignee ? (
<Fragment> <Fragment>
<Assignees <Assignees

View File

@ -45,7 +45,7 @@ export const getFieldThreadElement = (
return !isEmpty(threadValue) ? ( return !isEmpty(threadValue) ? (
<button <button
className="link-text tw-self-start tw-w-8 tw-h-8 tw-flex-none tw-mx-1" className="link-text tw-self-start tw-w-8 tw-h-8 tw-flex-none tw-mx-1 tw-opacity-0 group-hover:tw-opacity-100"
data-testid="field-thread" data-testid="field-thread"
onClick={(e) => { onClick={(e) => {
e.preventDefault(); e.preventDefault();