mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-23 16:38:17 +00:00
✨ UI Improvements 0.11.1 (#5770)
* ✨ UI Improvements 0.11.1
* Fix spacing between text and select box
This commit is contained in:
parent
17bfa5f2d2
commit
42ed776353
@ -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;
|
||||||
}
|
}
|
||||||
|
@ -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
|
||||||
|
@ -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();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user