Skip to content

Commit

Permalink
Revert "chore: remove class data-files-btn"
Browse files Browse the repository at this point in the history
This reverts commit 1b644ed.
  • Loading branch information
wesleyboar committed Dec 3, 2024
1 parent a678c6f commit d6f820b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const DataFilesModalButtonCell = ({
<span>
<Button
type="primary"
className="float-right"
className="float-right data-files-btn"
disabled={disabled}
onClick={onClick}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ const ProjectRoleSelector = ({ projectId, username }) => {
{data.role !== selectedRole && !isFetching && (
<Button
type="primary"
className="data-files-btn"
onClick={() =>
setProjectRole({ oldRole: data.role, newRole: selectedRole })
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ const DataFilesAddButton = ({ readOnly }) => {
<DropdownToggle
color="primary"
id="data-files-add"
className="data-files-btn"
>
+ Add
</DropdownToggle>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
@import '../../../styles/components/dropdown-menu.css';

.data-files-btn {
background-color: var(--global-color-accent--normal);
border-color: var(--global-color-accent--normal);
border-radius: 0;
}

.data-files-btn-cancel {
border-radius: 0;
}

#data-files-add {
width: 100%;
Expand Down

0 comments on commit d6f820b

Please sign in to comment.