Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove class data-files-btn #1029

Merged
merged 8 commits into from
Jan 9, 2025
wesleyboar marked this conversation as resolved.
Show resolved Hide resolved
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 data-files-btn"
className="float-right"
disabled={disabled}
onClick={onClick}
>
Expand Down
wesleyboar marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ const ProjectRoleSelector = ({ projectId, username }) => {
{data.role !== selectedRole && !isFetching && (
<Button
type="primary"
className="data-files-btn"
onClick={() =>
setProjectRole({ oldRole: data.role, newRole: selectedRole })
}
Expand Down
wesleyboar marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ 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,14 +1,5 @@
@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;
}
wesleyboar marked this conversation as resolved.
Show resolved Hide resolved

.data-files-btn-cancel {
border-radius: 0;
}
wesleyboar marked this conversation as resolved.
Show resolved Hide resolved

#add-button-wrapper {
padding-left: var(--horizontal-buffer);
Expand Down
Loading