mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-06 06:48:21 +00:00
* Fix: Rest API UI Alignment * Update submodule reference * Update frontend submodule ref * update submodule ref * Update frontend submodule ref
45 lines
1.1 KiB
CSS
45 lines
1.1 KiB
CSS
/* Specific styling for workflow modal */
|
|
.workflow-rest-api {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
/* Ensure method and URL fields have full width in workflow node */
|
|
.workflow-rest-api .me-2 {
|
|
width: 100% !important;
|
|
margin-bottom: 16px; /* Increased spacing to avoid label overlap */
|
|
}
|
|
|
|
/* Ensure URL label doesn't overlap with Method dropdown */
|
|
.workflow-rest-api .field .font-weight-medium {
|
|
margin-bottom: 4px;
|
|
display: block;
|
|
padding-top: 4px; /* Add space above URL label */
|
|
}
|
|
|
|
/* Fix the method dropdown width and height for workflow */
|
|
.workflow-rest-api .me-2 {
|
|
width: 150px !important; /* Wider to accommodate "DELETE" and other long options */
|
|
height: auto !important;
|
|
min-height: 32px;
|
|
}
|
|
|
|
/* Fix Add more button to fit text properly */
|
|
.add-params-btn {
|
|
width: 100px !important;
|
|
padding: 4px 8px;
|
|
}
|
|
|
|
.add-params-btn p {
|
|
display: flex;
|
|
align-items: center;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
/* Button fix for workflow */
|
|
.workflow-rest-api ~ .query-pane-restapi-tabs .add-params-btn {
|
|
width: auto !important;
|
|
min-width: 100px;
|
|
}
|