Skip to content

Commit

Permalink
Merge branch 'master' into production
Browse files Browse the repository at this point in the history
  • Loading branch information
RuntimeTerror10 committed Jun 5, 2024
2 parents 47227a8 + 58d7555 commit bd021b0
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 18 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
.rq-content-list-table-container {
background-color: var(--requestly-color-background);
margin: 16px 16px;
width: 100%;
max-width: 1920px;

.rq-content-list-table {
background-color: inherit;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,10 @@
}
}
}

.mocks-table-container {
width: 100%;
display: flex;
justify-content: center;
padding: 0 1rem;
}
Original file line number Diff line number Diff line change
Expand Up @@ -168,13 +168,3 @@
tr.rq-content-list-table-row.ant-table-row:hover .group-name-container .add-rule-btn {
display: flex;
}

.rq-rules-table
.rq-content-list-table-container
.rules-list-table.rq-content-list-table
tbody
tr.ant-table-row-level-1
td
.rule-name-container {
padding-left: 14px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,4 @@
display: flex;
justify-content: center;
padding: 0 1rem;

.rq-content-list-table-container {
width: 100%;
max-width: 1200px;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ export const SharedListViewerList: React.FC<Props> = ({ records, recordsMap, isL
const enhancedRecords = enhanceRecords(records, recordsMap);
const contentTableAdaptedRecords = recordsToContentTableDataAdapter(enhancedRecords);
setContentListTableData(contentTableAdaptedRecords);
}, [records, recordsMap, setContentListTableData, enhanceRecords, recordsToContentTableDataAdapter]);
}, [records, recordsMap, setContentListTableData]);

return (
<>
<div className="shared-list-viewer-table-container">
<ContentListTable
columns={columns}
data={contentListTableData}
Expand All @@ -61,6 +61,6 @@ export const SharedListViewerList: React.FC<Props> = ({ records, recordsMap, isL
}}
/>
)}
</>
</div>
);
};
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
.shared-list-viewer-table-container {
width: 100%;
display: flex;
justify-content: center;
padding: 0 1rem;
}

.shared-list-viewer-record-name {
text-overflow: ellipsis;
overflow: hidden;
Expand Down Expand Up @@ -33,4 +40,11 @@
opacity: 1;
}
}

.rq-content-list-table-row.ant-table-row-level-0 {
.ant-table-cell-with-append {
display: flex;
gap: 8px;
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
.sharedlists-table-container {
width: 100%;
display: flex;
justify-content: center;
padding: 0 1rem;

.sharedlist-name {
color: var(--link-color);
cursor: pointer;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
.rq-templates-table {
width: 100%;
display: flex;
justify-content: center;
padding: 0 1rem;

.template-name {
color: var(--link-color);
cursor: pointer;
Expand Down

0 comments on commit bd021b0

Please sign in to comment.