Skip to content

Commit

Permalink
Merge pull request #1046 from ForceManager/feature/more-rebranding-fixes
Browse files Browse the repository at this point in the history
Feature/more rebranding fixes
  • Loading branch information
dbalas authored Feb 6, 2025
2 parents 49d5a2f + 8b5decb commit 8abb6f5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hoi-poi-ui",
"version": "2.0.5",
"version": "2.0.6",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/forms/DatePicker/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ function DatePicker({
postComponent={
!isReadOnly && (
<div className={classes.calendarIcon} onClick={onClick}>
<Icon name="calendar" />
<Icon name="calendar" color="currentColor" />
</div>
)
}
Expand Down
5 changes: 2 additions & 3 deletions src/components/forms/DatePicker/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@ export default (theme) => ({
},
calendarIcon: {
cursor: 'pointer',
color: theme.colors.grey[500],
'&:hover': {
'& svg path': {
fill: theme.colors.grey[700],
},
color: theme.colors.grey[700],
},
},
todayContainer: {
Expand Down
2 changes: 1 addition & 1 deletion src/components/forms/Input/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export default (theme) => {
focused: {
'& $inputComponents': {
backgroundColor: theme.colors.primary.white,
border: `1px solid ${theme.colors.actionMajor[500]}`,
border: `1px solid ${theme.colors.actionMinor[500]}`,
},
},
isFullWidth: {
Expand Down
4 changes: 2 additions & 2 deletions src/components/typography/Link/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ export default (theme) => ({
display: 'inline-block',
cursor: 'pointer !important',
padding: 0,
color: theme.colors.actionMajor[500],
color: theme.colors.actionMinor[500],
transition: 'color .1s ease-in-out',
border: 'none',
outline: 'none',
background: theme.colors.transparent,
textDecoration: 'none',
'&:hover': {
color: theme.colors.actionMajor[600],
color: theme.colors.actionMinor[600],
},
'& *': {
cursor: 'pointer',
Expand Down

0 comments on commit 8abb6f5

Please sign in to comment.