Skip to content

Commit 284ef65

Browse files
authored
Merge branch 'main' into bugs/WP-774
2 parents 13ea1dd + 8582dfa commit 284ef65

File tree

4 files changed

+2
-17
lines changed

4 files changed

+2
-17
lines changed

client/src/components/DataFiles/DataFilesModals/DataFilesModalTables/DataFilesModalListingTable.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ const DataFilesModalButtonCell = ({
120120
<span>
121121
<Button
122122
type="primary"
123-
className="float-right data-files-btn"
123+
className="float-right"
124124
disabled={disabled}
125125
onClick={onClick}
126126
>

client/src/components/DataFiles/DataFilesProjectMembers/_cells/ProjectRoleSelector.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ const ProjectRoleSelector = ({ projectId, username }) => {
7575
{data.role !== selectedRole && !isFetching && (
7676
<Button
7777
type="primary"
78-
className="data-files-btn"
7978
onClick={() =>
8079
setProjectRole({ oldRole: data.role, newRole: selectedRole })
8180
}

client/src/components/DataFiles/DataFilesSidebar/DataFilesSidebar.jsx

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,7 @@ const DataFilesAddButton = ({ readOnly }) => {
6969
return (
7070
<>
7171
<Dropdown isOpen={dropdownOpen} toggle={toggleDropdown}>
72-
<DropdownToggle
73-
color="primary"
74-
id="data-files-add"
75-
className="data-files-btn"
76-
>
72+
<DropdownToggle color="primary" id="data-files-add">
7773
+ Add
7874
</DropdownToggle>
7975
<DropdownMenu>

client/src/components/DataFiles/DataFilesSidebar/DataFilesSidebar.scss

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
@import '../../../styles/components/dropdown-menu.css';
22

3-
.data-files-btn {
4-
background-color: var(--global-color-accent--normal);
5-
border-color: var(--global-color-accent--normal);
6-
border-radius: 0;
7-
}
8-
9-
.data-files-btn-cancel {
10-
border-radius: 0;
11-
}
12-
133
#data-files-add {
144
width: 100%;
155
}

0 commit comments

Comments
 (0)