mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Fixes for hover colours
This commit is contained in:
parent
406165252c
commit
6b707ae2ca
3 changed files with 6 additions and 6 deletions
|
|
@ -11,9 +11,10 @@ export class HeaderCheckboxIcon extends React.Component<IconProps> {
|
|||
<SpanBox
|
||||
css={{
|
||||
display: 'flex',
|
||||
'--inner-color': 'white',
|
||||
'--inner-color': 'var(--colors-thHeaderIconInner)',
|
||||
'--ring-color': 'var(--colors-thHeaderIconRing)',
|
||||
'&:hover': {
|
||||
'--inner-color': 'white',
|
||||
'--ring-fill': '#007AFF',
|
||||
'--ring-color': '#007AFF',
|
||||
},
|
||||
|
|
|
|||
|
|
@ -11,9 +11,10 @@ export class HeaderToggleGridIcon extends React.Component<IconProps> {
|
|||
<SpanBox
|
||||
css={{
|
||||
display: 'flex',
|
||||
'--inner-color': 'white',
|
||||
'--inner-color': 'var(--colors-thHeaderIconInner)',
|
||||
'--ring-color': 'var(--colors-thHeaderIconRing)',
|
||||
'&:hover': {
|
||||
'--inner-color': 'white',
|
||||
'--ring-fill': '#007AFF',
|
||||
'--ring-color': '#007AFF',
|
||||
},
|
||||
|
|
|
|||
|
|
@ -7,16 +7,14 @@ import React from 'react'
|
|||
|
||||
export class HeaderToggleListIcon extends React.Component<IconProps> {
|
||||
render() {
|
||||
const size = (this.props.size || 26).toString()
|
||||
const color = (this.props.color || '#2A2A2A').toString()
|
||||
|
||||
return (
|
||||
<SpanBox
|
||||
css={{
|
||||
display: 'flex',
|
||||
'--inner-color': 'white',
|
||||
'--inner-color': 'var(--colors-thHeaderIconInner)',
|
||||
'--ring-color': 'var(--colors-thHeaderIconRing)',
|
||||
'&:hover': {
|
||||
'--inner-color': 'white',
|
||||
'--ring-fill': '#007AFF',
|
||||
'--ring-color': '#007AFF',
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue