diff --git a/editors/demo/src/Editoria/theme/theme.js b/editors/demo/src/Editoria/theme/theme.js index f16d1741e39c645f3daaea3ff558ec0a2d6150fc..934cd27fa2a359da64c219de3a7462bbd528ec02 100644 --- a/editors/demo/src/Editoria/theme/theme.js +++ b/editors/demo/src/Editoria/theme/theme.js @@ -22,7 +22,6 @@ const cokoTheme = { colorWarning: '#ffc107', colorBackgroundToolBar: '#fff', colorSelection: '#C5D7FE', - colorBackgroundButton: '#0042C7', /* Text variables */ // fonts diff --git a/editors/demo/src/HHMI/theme/theme.js b/editors/demo/src/HHMI/theme/theme.js index 3ba885af8cfc67d047f854242531bae6885f266d..fa69883d628f18d035d9e5a6cefd67d55170e13e 100644 --- a/editors/demo/src/HHMI/theme/theme.js +++ b/editors/demo/src/HHMI/theme/theme.js @@ -22,7 +22,6 @@ const cokoTheme = { colorWarning: '#ffc107', colorBackgroundToolBar: '#fff', colorSelection: '#C5D7FE', - colorBackgroundButton: '#0042C7', /* Text variables */ // fonts diff --git a/editors/demo/src/NCBI/theme/theme.js b/editors/demo/src/NCBI/theme/theme.js index 3ba885af8cfc67d047f854242531bae6885f266d..fa69883d628f18d035d9e5a6cefd67d55170e13e 100644 --- a/editors/demo/src/NCBI/theme/theme.js +++ b/editors/demo/src/NCBI/theme/theme.js @@ -22,7 +22,6 @@ const cokoTheme = { colorWarning: '#ffc107', colorBackgroundToolBar: '#fff', colorSelection: '#C5D7FE', - colorBackgroundButton: '#0042C7', /* Text variables */ // fonts diff --git a/editors/demo/src/OEN/theme/theme.js b/editors/demo/src/OEN/theme/theme.js index 3ba885af8cfc67d047f854242531bae6885f266d..fa69883d628f18d035d9e5a6cefd67d55170e13e 100644 --- a/editors/demo/src/OEN/theme/theme.js +++ b/editors/demo/src/OEN/theme/theme.js @@ -22,7 +22,6 @@ const cokoTheme = { colorWarning: '#ffc107', colorBackgroundToolBar: '#fff', colorSelection: '#C5D7FE', - colorBackgroundButton: '#0042C7', /* Text variables */ // fonts diff --git a/wax-prosemirror-services/src/FindAndReplaceService/components/CheckBox.js b/wax-prosemirror-services/src/FindAndReplaceService/components/CheckBox.js index 644f7ff1e530cf512bd45c16d2f3c89d83074066..dc73345bf99c4e12d00ecb21f5784cd17f424c2f 100644 --- a/wax-prosemirror-services/src/FindAndReplaceService/components/CheckBox.js +++ b/wax-prosemirror-services/src/FindAndReplaceService/components/CheckBox.js @@ -37,7 +37,7 @@ const CheckBoxLabel = styled.label` input:checked ~ span::after { background-color: transparent; - border: solid ${th('colorBackgroundButton')}; + border: solid ${th('colorPrimary')}; border-radius: 0; border-width: 0 2px 2px 0; height: 12px; @@ -66,7 +66,7 @@ const CheckboxCustom = styled.span` -o-transition: all 0.3s ease-out; &:after { - border: solid ${th('colorBackgroundButton')}; + border: solid ${th('colorPrimary')}; border-radius: 5px; border-width: 0 3px 3px 0; content: ''; diff --git a/wax-prosemirror-services/src/FindAndReplaceService/components/ExpandedFindAndReplaceComponent.js b/wax-prosemirror-services/src/FindAndReplaceService/components/ExpandedFindAndReplaceComponent.js index 036b75013ad31e45767284dc6da37f1eff0cd128..9f21d3c788841304b0cbad96bf398e9dc57daf71 100644 --- a/wax-prosemirror-services/src/FindAndReplaceService/components/ExpandedFindAndReplaceComponent.js +++ b/wax-prosemirror-services/src/FindAndReplaceService/components/ExpandedFindAndReplaceComponent.js @@ -97,8 +97,8 @@ const ControlContainer = styled.div` `; const ButtonReplace = styled.button` - background: ${th('colorBackgroundButton')}; - border: 1px solid ${th('colorBackgroundButton')}; + background: ${th('colorPrimary')}; + border: 1px solid ${th('colorPrimary')}; color: white; cursor: pointer; height: 42px; @@ -108,8 +108,8 @@ const ButtonReplace = styled.button` const ButtonReplaceAll = styled.button` background: white; - border: 1px solid ${th('colorBackgroundButton')}; - color: ${th('colorBackgroundButton')}; + border: 1px solid ${th('colorPrimary')}; + color: ${th('colorPrimary')}; cursor: pointer; height: 42px; margin-right: 10px;