Enhance PrinterQueue Component with CSS Styling for Vertical Steps
- Added a new CSS class for the PrinterQueue component to adjust the minimum height of the last step item in vertical step layouts. - Updated the PrinterQueue component to include the new class, improving visual consistency and layout management in the dashboard.
This commit is contained in:
parent
a8932f1e66
commit
2fcab27cd4
@ -3350,3 +3350,9 @@ body.objectKanbanColumnResizing * {
|
|||||||
stroke: currentColor;
|
stroke: currentColor;
|
||||||
stroke-width: 12px;
|
stroke-width: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.printerQueue.ant-steps.ant-steps-vertical
|
||||||
|
> .ant-steps-item:last-child
|
||||||
|
.ant-steps-item-content {
|
||||||
|
min-height: 0;
|
||||||
|
}
|
||||||
|
|||||||
@ -49,6 +49,7 @@ const PrinterQueue = ({ queue, currentSubJob }) => {
|
|||||||
<Steps
|
<Steps
|
||||||
current={currentIndex}
|
current={currentIndex}
|
||||||
direction='vertical'
|
direction='vertical'
|
||||||
|
className='printerQueue'
|
||||||
size='small'
|
size='small'
|
||||||
items={items.map((item) => ({
|
items={items.map((item) => ({
|
||||||
title: <ObjectDisplay object={item} objectType='subJob' showHyperlink />
|
title: <ObjectDisplay object={item} objectType='subJob' showHyperlink />
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user