Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.

Commit

Permalink
Fix selection colors of copy code and update fab question icon (#772)
Browse files Browse the repository at this point in the history
* Fix selection colors of copy code and copy input 
* Update fab question icon
  • Loading branch information
tjbo committed Jan 16, 2020
1 parent 133dac9 commit b2846ef
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@helpscout/hsds-react",
"version": "2.77.7",
"version": "2.81.0-0",
"private": false,
"main": "dist/index.js",
"module": "dist/index.es.js",
Expand Down
6 changes: 3 additions & 3 deletions src/components/CopyCode/styles/CopyCode.css.js
Expand Up @@ -4,7 +4,7 @@ import { getColor } from '../../../styles/utilities/color'

export const config = {
borderColor: getColor('border'),
borderColorFocus: getColor('blue.400'),
borderColorFocus: getColor('blue.500'),
boxShadow: '0 0 0 0 transparent',
boxShadowFocus: `0 0 0 1px ${getColor('blue.400')}`,
fontFamily:
Expand Down Expand Up @@ -67,11 +67,11 @@ export const SyntaxHighlight = styled('div')`
div::-moz-selection,
span::-moz-selection {
background: #daf1ff;
background: ${getColor('blue.200')};
}
div::selection,
span::selection {
background: #daf1ff;
background: ${getColor('blue.200')};
}
.token.parameter {
Expand Down
4 changes: 2 additions & 2 deletions src/components/CopyInput/styles/CopyInput.css.js
Expand Up @@ -3,11 +3,11 @@ import { getColor } from '../../../styles/utilities/color'
import Input from '../../Input'

export const CopyInputUI = styled(Input)`
::-moz-selection {
input::-moz-selection {
background: ${getColor('blue.200')};
}
::selection {
input::selection {
background: ${getColor('blue.200')};
}
`
2 changes: 1 addition & 1 deletion src/icons/fab-question.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/utilities/pkg.ts
@@ -1,3 +1,3 @@
export default {
version: '2.77.7',
version: '2.81.0-0',
}

0 comments on commit b2846ef

Please sign in to comment.